diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-09-09 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-09-09 18:00:00 +0200 |
commit | 0b99b3aac10e38d624488978641d66fae3f41a28 (patch) | |
tree | f178a06e8f4436fc2bc203777b7eb65ba508cedb /config.h | |
parent | c49ca5abb73cbc11447da5d961e106025dc927d0 (diff) | |
download | vdr-patch-lnbsharing-0b99b3aac10e38d624488978641d66fae3f41a28.tar.gz vdr-patch-lnbsharing-0b99b3aac10e38d624488978641d66fae3f41a28.tar.bz2 |
Version 1.4.2-2vdr-1.4.2-2
- Fixed cTimer::operator=() in case a cTimer variable is assigned to itself (thanks
to Alexander Rieger).
- Implemented a copy constructor for cTimer (thanks to Udo Richter for reporting that
an assignment in svdrp.c didn't use the cTimer::operator=()).
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.268 2006/09/01 12:59:35 kls Exp $ + * $Id: config.h 1.269 2006/09/04 17:44:12 kls Exp $ */ #ifndef __CONFIG_H @@ -21,13 +21,13 @@ // VDR's own version number: -#define VDRVERSION "1.4.2-1" +#define VDRVERSION "1.4.2-2" #define VDRVERSNUM 10402 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: -#define APIVERSION "1.4.2" -#define APIVERSNUM 10402 // Version * 10000 + Major * 100 + Minor +#define APIVERSION "1.4.3" +#define APIVERSNUM 10403 // 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 |