diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2020-06-10 14:00:36 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2020-06-10 14:00:36 +0200 |
commit | 709055980e6f6ed76399cdba032eb5094ec117f5 (patch) | |
tree | a2bc90b9d85163efd5cda5272862734c3c0c2193 /config.h | |
parent | 576e21f2fdd4f7e65dcfa650961e2d40c7503e19 (diff) | |
download | vdr-709055980e6f6ed76399cdba032eb5094ec117f5.tar.gz vdr-709055980e6f6ed76399cdba032eb5094ec117f5.tar.bz2 |
Fixed the size of cChannel::dtypes[]
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 4.17 2020/05/18 16:47:29 kls Exp $ + * $Id: config.h 4.18 2020/06/10 14:00:36 kls Exp $ */ #ifndef __CONFIG_H @@ -22,13 +22,13 @@ // VDR's own version number: -#define VDRVERSION "2.4.2" -#define VDRVERSNUM 20402 // Version * 10000 + Major * 100 + Minor +#define VDRVERSION "2.4.3" +#define VDRVERSNUM 20403 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: -#define APIVERSION "2.4.2" -#define APIVERSNUM 20402 // Version * 10000 + Major * 100 + Minor +#define APIVERSION "2.4.3" +#define APIVERSNUM 20403 // 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 |