From 098952e254f008bf2f702579d117766080b75469 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 13 Aug 2005 13:48:46 +0200 Subject: [PATCH] Increased the default value for 'Min. user inactivity' to 300 minutes --- CONTRIBUTORS | 1 + HISTORY | 2 ++ MANUAL | 2 +- config.c | 4 ++-- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 08400d64..6e5baf5e 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -520,6 +520,7 @@ Helmut Auer for fixing a frequency/transponder handling mixup when setting the time from the DVB data stream for implementing a default cRemote::Initialize() + for suggesting to increase the default value for 'Min. user inactivity' to 300 minutes Jeremy Hall for fixing an incomplete initialization of the filter parameters in eit.c diff --git a/HISTORY b/HISTORY index b4ed9650..bcf24988 100644 --- a/HISTORY +++ b/HISTORY @@ -3681,3 +3681,5 @@ Video Disk Recorder Revision History Plugin authors may want to check their derived cThread classes and replace any 'active' variables the same way as, for instance, done in transfer.c. - Fixed handling EPG data for time shifted events (thanks to Marco Schlüßler). +- Increased the default value for 'Min. user inactivity' to 300 minutes (suggested + by Helmut Auer). diff --git a/MANUAL b/MANUAL index 532e954e..9468d6ee 100644 --- a/MANUAL +++ b/MANUAL @@ -746,7 +746,7 @@ Version 1.2 Miscellaneous: Min. event timeout = 30 - Min. user inactivity = 120 + Min. user inactivity = 300 If the command line option '-s' has been set, VDR will automatically shutdown the computer if the next timer event is at least MinEventTimeout minutes in the future, diff --git a/config.c b/config.c index 15e5f424..6f9e0981 100644 --- a/config.c +++ b/config.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 1.135 2005/08/07 09:03:00 kls Exp $ + * $Id: config.c 1.136 2005/08/13 13:47:08 kls Exp $ */ #include "config.h" @@ -295,7 +295,7 @@ cSetup::cSetup(void) MaxVideoFileSize = MAXVIDEOFILESIZE; SplitEditedFiles = 0; MinEventTimeout = 30; - MinUserInactivity = 120; + MinUserInactivity = 300; MultiSpeedMode = 0; ShowReplayMode = 0; ResumeID = 0;