diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-08-06 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-08-06 18:00:00 +0200 |
commit | 33f1491b18c201ecda4ff2c34f606d9f5f041489 (patch) | |
tree | 32f49da0229fb93b1e0ceb92aa099d16f1562751 /config.h | |
parent | 80c04529681b844de88cfa47ec743f847b37d7a2 (diff) | |
download | vdr-patch-lnbsharing-33f1491b18c201ecda4ff2c34f606d9f5f041489.tar.gz vdr-patch-lnbsharing-33f1491b18c201ecda4ff2c34f606d9f5f041489.tar.bz2 |
Version 1.4.1-3vdr-1.4.1-3
- Fixed assigning schedules to channels in case there is no initial EPG information
(thanks to Frank Schmirler).
- Increased the APIVERSION to allow plugins that relied on the cStatus::MsgSetVolume()
bug to react properly (suggested by Stefan Huelswitt).
- Fixed cDevice::ToggleMute() (thanks to Christoph Haubrich).
- Fixed deleting the last character of a string menu item in insert mode (thanks
to Udo Richter).
- The /video/.update file is now touched _after_ an editing process is finished
in order to avoid excessive disk access (thanks to Artur Skawina).
- Fixed handling the running status of EPG events before the currently running one,
in case they are added after the current event (cont'd from version 1.4.1-2).
- Modified the shutdown mechanism, so that the shutdown script is never given a
time in the past (reported by Helmut Auer). If a timer is currently recording,
or a recording would start within the next 30 minutes (default for the "Min.
event timeout" setup parameter), and the user insists in shutting down now, the
reboot time given to the shutdown script will correspond to a time that is
"Min. event timeout" minutes (default is 30) in the future.
- Avoiding shutdown message "Recording in ... minutes, shut down anyway?" with
a negative number of minutes (reported by Udo Richter).
- Fixed getting the next active timer when shutting down (thanks to Udo Richter).
- Modified the cSVDRP::Close() function to avoid code duplication.
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.262 2006/06/24 09:08:46 kls Exp $ + * $Id: config.h 1.264 2006/07/29 09:56:04 kls Exp $ */ #ifndef __CONFIG_H @@ -21,13 +21,13 @@ // VDR's own version number: -#define VDRVERSION "1.4.1-2" +#define VDRVERSION "1.4.1-3" #define VDRVERSNUM 10401 // Version * 10000 + Major * 100 + Minor // The plugin API's version number: -#define APIVERSION "1.4.1" -#define APIVERSNUM 10401 // Version * 10000 + Major * 100 + Minor +#define APIVERSION "1.4.2" +#define APIVERSNUM 10402 // 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 |