1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Increased the default value for 'Min. user inactivity' to 300 minutes

This commit is contained in:
Klaus Schmidinger 2005-08-13 13:48:46 +02:00
parent 7369545585
commit 098952e254
4 changed files with 6 additions and 3 deletions

View File

@ -520,6 +520,7 @@ Helmut Auer <vdr@helmutauer.de>
for fixing a frequency/transponder handling mixup when setting the time from the for fixing a frequency/transponder handling mixup when setting the time from the
DVB data stream DVB data stream
for implementing a default cRemote::Initialize() for implementing a default cRemote::Initialize()
for suggesting to increase the default value for 'Min. user inactivity' to 300 minutes
Jeremy Hall <jhall@UU.NET> Jeremy Hall <jhall@UU.NET>
for fixing an incomplete initialization of the filter parameters in eit.c for fixing an incomplete initialization of the filter parameters in eit.c

View File

@ -3681,3 +3681,5 @@ Video Disk Recorder Revision History
Plugin authors may want to check their derived cThread classes and replace any 'active' 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. variables the same way as, for instance, done in transfer.c.
- Fixed handling EPG data for time shifted events (thanks to Marco Schlüßler). - 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).

2
MANUAL
View File

@ -746,7 +746,7 @@ Version 1.2
Miscellaneous: Miscellaneous:
Min. event timeout = 30 Min. event timeout = 30
Min. user inactivity = 120 Min. user inactivity = 300
If the command line option '-s' has been set, VDR will If the command line option '-s' has been set, VDR will
automatically shutdown the computer if the next timer automatically shutdown the computer if the next timer
event is at least MinEventTimeout minutes in the future, event is at least MinEventTimeout minutes in the future,

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * 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" #include "config.h"
@ -295,7 +295,7 @@ cSetup::cSetup(void)
MaxVideoFileSize = MAXVIDEOFILESIZE; MaxVideoFileSize = MAXVIDEOFILESIZE;
SplitEditedFiles = 0; SplitEditedFiles = 0;
MinEventTimeout = 30; MinEventTimeout = 30;
MinUserInactivity = 120; MinUserInactivity = 300;
MultiSpeedMode = 0; MultiSpeedMode = 0;
ShowReplayMode = 0; ShowReplayMode = 0;
ResumeID = 0; ResumeID = 0;