summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <kls (at) cadsoft (dot) de>2002-05-05 18:00:00 +0200
committerKlaus Schmidinger <kls (at) cadsoft (dot) de>2002-05-05 18:00:00 +0200
commitf2a4e5438d0fa75c82a46af864abd63d293ec339 (patch)
treed099c69f678fd4454ba0b8657d18c2a64564b2dd /menu.c
parentcfac68ee8458c6b51e638dd787d931bd5baad57a (diff)
downloadvdr-patch-lnbsharing-f2a4e5438d0fa75c82a46af864abd63d293ec339.tar.gz
vdr-patch-lnbsharing-f2a4e5438d0fa75c82a46af864abd63d293ec339.tar.bz2
Version 1.0.2vdr-1.0.2
- Now taking an active video cutting process into account when doing shutdown or housekeeping (thanks to Stefan Huelswitt). - The default duration of an instant recording has been increased to 3 hours and is now configurable in the "Setup/Recording" menu. - Added Greek language texts (thanks to Dimitrios Dimitrakos). - Fixed the unit of the "SVDRP timeout" setup parameter (thanks to Marcus Kuba for reporting this one). - Fixed a crash on systems with disks that have a block size larger than 1MB (thanks to Ulrich Petri for helping to debug this one). - Updated 'channels.conf' for the new PW settings (thanks to Andreas Share, Carsten Koch, Gerald Raaf and Mel Schächner). Note that all channels with numbers over 50 may have moved, so you should carefully check any timers you have set! - Updated 'channels.conf.cable' for the new PW settings (thanks to Oliver Lorei Stephan Schreiber and Uwe Scheffler). Note that all channels may have moved, so you should carefully check any timers you have set! For future updates of this file somebody with digital cable should take the role of the "maintainer" and send me updated versions based on the file that comes with the most recent version of VDR. I will then simply replace the entire file 'channels.conf.cable' whenever a new version is sent to me. - Fixed skipping forward in time shift mode near the end of the recording (thanks to Andreas Böttger for reporting this one).
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/menu.c b/menu.c
index ed219cd..0eeba12 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 1.187 2002/04/20 09:17:08 kls Exp $
+ * $Id: menu.c 1.189 2002/05/01 14:54:10 kls Exp $
*/
#include "menu.h"
@@ -22,6 +22,8 @@
#define MAXWAIT4EPGINFO 10 // seconds
#define MODETIMEOUT 3 // seconds
+#define MAXINSTANTRECTIME (24 * 60 - 1) // 23:59 hours
+
#define CHNUMWIDTH (Channels.Count() > 999 ? 5 : 4) // there are people with more than 999 channels...
const char *FileNameChars = " abcdefghijklmnopqrstuvwxyz0123456789-.#~";
@@ -2202,6 +2204,7 @@ void cMenuSetupRecord::Set(void)
Add(new cMenuEditBoolItem(tr("Setup.Recording$Use episode name"), &data.UseSubtitle));
Add(new cMenuEditBoolItem(tr("Setup.Recording$Mark instant recording"), &data.MarkInstantRecord));
Add(new cMenuEditStrItem( tr("Setup.Recording$Name instant recording"), data.NameInstantRecord, sizeof(data.NameInstantRecord), tr(FileNameChars)));
+ Add(new cMenuEditIntItem( tr("Setup.Recording$Instant rec. time (min)"), &data.InstantRecordTime, 1, MAXINSTANTRECTIME));
Add(new cMenuEditBoolItem(tr("Setup.Recording$Record Dolby Digital"), &data.RecordDolbyDigital));
Add(new cMenuEditIntItem( tr("Setup.Recording$Max. video file size (MB)"), &data.MaxVideoFileSize, MINVIDEOFILESIZE, MAXVIDEOFILESIZE));
Add(new cMenuEditBoolItem(tr("Setup.Recording$Split edited files"), &data.SplitEditedFiles));
@@ -2239,7 +2242,7 @@ void cMenuSetupMisc::Set(void)
SetupTitle("Miscellaneous");
Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Min. event timeout (min)"), &data.MinEventTimeout));
Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Min. user inactivity (min)"), &data.MinUserInactivity));
- Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$SVDRP timeout (min)"), &data.SVDRPTimeout));
+ Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$SVDRP timeout (s)"), &data.SVDRPTimeout));
}
// --- cMenuSetup ------------------------------------------------------------