diff options
author | Martin Prochnow <nordlicht@martins-kabuff.de> | 2006-05-02 19:11:38 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2006-05-02 19:11:38 +0200 |
commit | 47a981960f1d0b6d0d8cbe3bdc15f2b9e8665731 (patch) | |
tree | 912ec408b85195c6298a55276587535427ae83fd /mymenusetup.c | |
parent | 3c04e4ce347dff915def3a79f348f2f46e60564d (diff) | |
download | vdr-plugin-extrecmenu-47a981960f1d0b6d0d8cbe3bdc15f2b9e8665731.tar.gz vdr-plugin-extrecmenu-47a981960f1d0b6d0d8cbe3bdc15f2b9e8665731.tar.bz2 |
Version 0.10v0.10
- made changes to Makefile for APIVERSION (VDR >= 1.3.47)
- changed myReplayControl; suggested by Thomas Günther
- added display of free disk space to the title bar
- fixed adjustments for BigPatch/CmdSubMenu-patch; thanks to Thomas Günther for the patch
- renaming/moving directories is now possible
- fixed escaping of parameters for dvdarchive.sh
- changed behaviour if the replay of a recording ends, plugins will not open
- 'Play' and 'Menu'->'Blue' for resuming a replay work now; BUT: the replay isn't done with the plugin if you start replaying this way, means if you stop the replay you come to VDR's recordings menu
- switched off editing of details (priority and lifetime) or archive dvd recordings to avoid trouble with the dir name that identifies it on the media
- added option to mark last replayed recording while opening the plugin
- added possibilty to include video dvd's into the recordings hierarchy; see README
- introduced new parameters for the '-r'-option if VDR: move, rename and delete
Diffstat (limited to 'mymenusetup.c')
-rw-r--r-- | mymenusetup.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mymenusetup.c b/mymenusetup.c index e5dec57..ccbf76a 100644 --- a/mymenusetup.c +++ b/mymenusetup.c @@ -1,3 +1,7 @@ +/* + * See the README file for copyright information and how to reach the author. + */ + #include <vdr/menu.h> #include "mymenusetup.h" @@ -12,6 +16,7 @@ mySetup::mySetup() mysetup.ShowRecLength=0; mysetup.ShowNewRecs=1; mysetup.SortRecords=0; + mysetup.JumpRec=1; mysetup.wasdvd=false; } @@ -33,6 +38,7 @@ myMenuSetup::myMenuSetup() showdvdnr=mysetup.ShowDvdNr; shownewrecs=mysetup.ShowNewRecs; sortrecords=mysetup.SortRecords; + jumprec=mysetup.JumpRec; Add(new cMenuEditBoolItem(tr("Show recording date"),&showrecdate)); Add(new cMenuEditBoolItem(tr("Show recording time"),&showrectime)); @@ -43,6 +49,7 @@ myMenuSetup::myMenuSetup() Add(new cMenuEditBoolItem(tr("Show dvd number"),&showdvdnr)); Add(new cMenuEditBoolItem(tr("Hide main menu entry"),&hidemainmenuentry)); Add(new cMenuEditBoolItem(tr("Replace original recordings menu"),&replaceorgrecmenu)); + Add(new cMenuEditBoolItem(tr("While opening jump to last replayed recording"),&jumprec)); } void myMenuSetup::Store() @@ -56,4 +63,5 @@ void myMenuSetup::Store() SetupStore("ShowRecLength",mysetup.ShowRecLength=showreclength); SetupStore("ShowNewRecs",mysetup.ShowNewRecs=shownewrecs); SetupStore("SortRecords",mysetup.SortRecords=sortrecords); + SetupStore("JumpRec",mysetup.JumpRec=jumprec); } |