diff options
-rw-r--r-- | CONTRIBUTORS | 3 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | vdr.c | 3 |
3 files changed, 6 insertions, 1 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 2d3b3a75..284e67d4 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1698,3 +1698,6 @@ Jaroslaw Swierczynski <swiergot@gmail.com> Alexander Hans <cleditor@arcor.de> fpr reporting a crash when pressing '0' in the "Schedule" menu on a channel that doesn't have any EPG data + +Daniel Karsubka <dkar@gmx.de> + for suggesting to write the epg.data file when VDR exits @@ -4253,3 +4253,4 @@ Video Disk Recorder Revision History handling of k_Repeat keypresses in channel switching reported by Udo Richter). - Removed the "buffer reserve" in Transfer Mode - it's no longer necessary with recent driver/firmware versions. +- The epg.data file is now written when VDR exits (suggested by Daniel Karsubka). @@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/vdr * - * $Id: vdr.c 1.244 2006/01/22 16:10:13 kls Exp $ + * $Id: vdr.c 1.245 2006/01/28 14:38:30 kls Exp $ */ #include <getopt.h> @@ -1122,6 +1122,7 @@ Exit: } cDevice::Shutdown(); PluginManager.Shutdown(); + cSchedules::Cleanup(true); ReportEpgBugFixStats(); if (WatchdogTimeout > 0) dsyslog("max. latency time %d seconds", MaxLatencyTime); |