mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Changed the default "Lifetime" to 99
This commit is contained in:
parent
d800cf56f5
commit
1a22d480a8
@ -498,6 +498,7 @@ Oliver Endriss <o.endriss@gmx.de>
|
|||||||
for fixing checking for VIDEO_STREAM_S in cRemux::SetBrokenLink()
|
for fixing checking for VIDEO_STREAM_S in cRemux::SetBrokenLink()
|
||||||
for suggesting to add 'repeat' function keys '7' and '9'
|
for suggesting to add 'repeat' function keys '7' and '9'
|
||||||
for fixing handling rc key learning in case cRemote::Initialize() returns 'false'
|
for fixing handling rc key learning in case cRemote::Initialize() returns 'false'
|
||||||
|
for suggesting to change the default "Lifetime" to 99
|
||||||
|
|
||||||
Reinhard Walter Buchner <rw.buchner@freenet.de>
|
Reinhard Walter Buchner <rw.buchner@freenet.de>
|
||||||
for adding some satellites to 'sources.conf'
|
for adding some satellites to 'sources.conf'
|
||||||
|
5
HISTORY
5
HISTORY
@ -2424,3 +2424,8 @@ Video Disk Recorder Revision History
|
|||||||
Huelswitt).
|
Huelswitt).
|
||||||
- Added MPEG1 handling to cDvbDevice::StillPicture() (thanks to Thomas
|
- Added MPEG1 handling to cDvbDevice::StillPicture() (thanks to Thomas
|
||||||
Heiligenmann).
|
Heiligenmann).
|
||||||
|
- Changed the default "Lifetime" to 99, which means that recordings will
|
||||||
|
never be deleted automatically in case the disk runs full (suggested by
|
||||||
|
Oliver Endriss). Note that in an existing VDR installation the current
|
||||||
|
value as set in 'setup.conf' will still be used - this change only affects
|
||||||
|
new VDR installations.
|
||||||
|
2
MANUAL
2
MANUAL
@ -536,7 +536,7 @@ Version 1.2
|
|||||||
with a priority below PrimaryLimit will never execute.
|
with a priority below PrimaryLimit will never execute.
|
||||||
|
|
||||||
Default priority = 50 The default Priority and Lifetime values used when
|
Default priority = 50 The default Priority and Lifetime values used when
|
||||||
Default lifetime = 50 creating a new timer event. A Lifetime value of 99
|
Default lifetime = 99 creating a new timer event. A Lifetime value of 99
|
||||||
means that this recording will never be deleted
|
means that this recording will never be deleted
|
||||||
automatically.
|
automatically.
|
||||||
|
|
||||||
|
4
config.c
4
config.c
@ -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.116 2003/08/24 11:00:24 kls Exp $
|
* $Id: config.c 1.117 2003/10/17 14:11:27 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
@ -266,7 +266,7 @@ cSetup::cSetup(void)
|
|||||||
SortTimers = 1;
|
SortTimers = 1;
|
||||||
PrimaryLimit = 0;
|
PrimaryLimit = 0;
|
||||||
DefaultPriority = 50;
|
DefaultPriority = 50;
|
||||||
DefaultLifetime = 50;
|
DefaultLifetime = 99;
|
||||||
PausePriority = 10;
|
PausePriority = 10;
|
||||||
PauseLifetime = 1;
|
PauseLifetime = 1;
|
||||||
UseSubtitle = 1;
|
UseSubtitle = 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user