mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-01-22 09:39:18 +00:00
284152782a
log: - https://github.com/vdr-projects/vdr/compare/2.6.5...2.6.6 release notes: 2024-01-24: Version 2.6.6 - Changed installing config files to handle potentially broken 'cp -n'. - Fixed height calculation in progress display (thanks to Matthias Senzel). - Fixed a possible crash in cDevice::StopSectionHandler() (thanks to Markus Ehrnsperger). - Using a dummy OSD if no OSD provider is available is not considered an error any more (thanks to Markus Ehrnsperger). - Implemented scaling images (thanks to Andreas Baierl). - Removed syslog calls in child process after fork() (thanks to Markus Ehrnsperger). - Fixed an unnecessary double display of the current menu item in page up/down (thanks to Matthias Senzel). - Fixed an unnecessary double display of menu items in the Recordings menu (thanks to Matthias Senzel). - Added the move constructor to cString for better performance (thanks to Markus Ehrnsperger). - Added the total number of errors when logging new recording errors. - Added '/' to the list of fuzzy characters for pattern timers. - Fixed handling primary device on headless systems (thanks to Markus Ehrnsperger). - Workaround in detecting frame height for channels with wrong crop parameters (thanks to Christoph Haubrich). - Fixed possible duplicate component entries in the info of an ongoing recording (reported by Christoph Haubrich).
16 lines
925 B
Diff
16 lines
925 B
Diff
From: Stefan Saraev <stefan@saraev.ca>
|
|
Subject: [PATCH] decrease channels.conf autosave delay
|
|
|
|
--- a/vdr.c
|
|
+++ b/vdr.c
|
|
@@ -82,7 +82,7 @@
|
|
#define SHUTDOWNCANCELPROMPT 5 // seconds to wait in user prompt to allow canceling shutdown
|
|
#define RESTARTCANCELPROMPT 5 // seconds to wait in user prompt before restarting on SIGHUP
|
|
#define MANUALSTART 600 // seconds the next timer must be in the future to assume manual start
|
|
-#define CHANNELSAVEDELTA 600 // seconds before saving channels.conf after automatic modifications
|
|
+#define CHANNELSAVEDELTA 120 // seconds before saving channels.conf after automatic modifications
|
|
#define DEVICEREADYTIMEOUT 30 // seconds to wait until all devices are ready
|
|
#define MENUTIMEOUT 120 // seconds of user inactivity after which an OSD display is closed
|
|
#define TIMERCHECKDELTA 10 // seconds between checks for timers that need to see their channel
|
|
|