diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | config.h | 10 |
2 files changed, 7 insertions, 6 deletions
@@ -9563,7 +9563,7 @@ Video Disk Recorder Revision History - Fixed convertCharacterTable() in case iconv_open() fails (thanks to Helmut Binder). - Official release. -2021-01-02: Version 2.4.7 +2021-04-21: Version 2.4.7 - Fixed strreplace() to handle NULL strings (reported by Jürgen Schneider). - Somewhere down the road the 'x' bit of Doxyfile.filter got lost, so the @@ -9573,3 +9573,4 @@ Video Disk Recorder Revision History - Fixed handling $(PKG_CONFIG) in newplugin (thanks to Winfried Köhler). - Fixed initializing the cChannel::schedule pointer after reading EPG data with PUTE (reported by Manuel Reimer). +- Official release. @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 4.21 2020/12/22 17:23:51 kls Exp $ + * $Id: config.h 4.21.1.1 2021/04/21 13:51:28 kls Exp $ */ #ifndef __CONFIG_H @@ -22,13 +22,13 @@ // VDR's own version number: -#define VDRVERSION "2.4.6" -#define VDRVERSNUM 20406 // Version * 10000 + Major * 100 + Minor +#define VDRVERSION "2.4.7" +#define VDRVERSNUM 20407 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: -#define APIVERSION "2.4.6" -#define APIVERSNUM 20406 // Version * 10000 + Major * 100 + Minor +#define APIVERSION "2.4.7" +#define APIVERSNUM 20407 // Version * 10000 + Major * 100 + Minor // When loading plugins, VDR searches them by their APIVERSION, which // may be smaller than VDRVERSION in case there have been no changes to |