diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2002-04-07 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2002-04-07 18:00:00 +0200 |
commit | c9a5d8ea5328e4a8bcb0c3423b825c02cb0c3b27 (patch) | |
tree | 5c60d0e45adc0cb556840fd48fa182a877184802 /config.c | |
parent | 262327908d329a8c292d8ae71fe9d135390a3cde (diff) | |
download | vdr-patch-lnbsharing-c9a5d8ea5328e4a8bcb0c3423b825c02cb0c3b27.tar.gz vdr-patch-lnbsharing-c9a5d8ea5328e4a8bcb0c3423b825c02cb0c3b27.tar.bz2 |
Version 1.0.0vdr-1.0.0
- Fixed a problem with wrong EPG data in the Schedules menu (thanks to Tobias
Kerner, problem was initially reported by Michel Moster, but somehow I had
misplaced his message...).
- Added Spanish language texts (thanks to Ruben Nunez Francisco).
- Fixed resetting the "First day" timer parameter once the timer actually starts
recording.
- Fixed the still picture workaround in case the progress display is active
(thanks to Gerald Raaf).
- Fixed a problem with accessing the epg.data file before it is fully written
(thanks to Thilo Wunderlich for reporting this one).
- Now the EPG scan skips channels that have their 'Ca' parameter explicitly set
to an other DVB card (suggested by Sergei Haller).
- Fixed a possible hangup when reading a broken epg.data file (thanks to Henning
Holtschneider for pointing this one out).
- Fixed a bug in the editing process in case a previously edited file with the
same name was manually deleted on a system with more than one video directory
(thanks to Dirk Wiebel for reporting this one).
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 1.96 2002/04/01 11:54:05 kls Exp $ + * $Id: config.c 1.97 2002/04/02 21:56:51 kls Exp $ */ #include "config.h" @@ -606,14 +606,14 @@ bool cTimer::Matches(time_t t) if ((!firstday || a >= firstday) && t <= b) { startTime = a; stopTime = b; - if (t >= firstday + SECSINDAY) - firstday = 0; break; } } } if (!startTime) startTime = firstday; // just to have something that's more than a week in the future + else if (t > startTime || t > firstday + SECSINDAY + 3600) // +3600 in case of DST change + firstday = 0; return active && startTime <= t && t < stopTime; // must stop *before* stopTime to allow adjacent timers } |