diff options
author | Martin Prochnow <nordlicht@martins-kabuff.de> | 2006-03-29 18:54:49 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2006-03-29 18:54:49 +0200 |
commit | 0ff08f0bfb1460e0d0035081956a75b92aaa8359 (patch) | |
tree | 3a77a0dec260c32659bf7dda9e35ef04299b8d47 /mymenusetup.c | |
parent | 54d5f6870a7351584fcb1c3e861a4fc9224badf3 (diff) | |
download | vdr-plugin-extrecmenu-0ff08f0bfb1460e0d0035081956a75b92aaa8359.tar.gz vdr-plugin-extrecmenu-0ff08f0bfb1460e0d0035081956a75b92aaa8359.tar.bz2 |
Version 0.8v0.8
- added some logging
- added option to hide the "new recordings column"
- added possibility to edit lifetime and priority at the rename menu
- changed alternative new marker, it marks now the recordings that are not "rewinded", if turned of the behaviour is like that of VDR's recordings menu
- added support for a file length.vdr, containing the length of a recording as a string
- new version of 'dvdarchive.sh'; thanks to vejoun from vdr-portal.de
- added two small tools (in tools/); isodetect to check for a dvd in drive (optionally used by 'dvdarchive.sh'); getlength to create a length.vdr
- updated error messages, more detailed now
- fixed quoting of the parameters for dvdarchive.sh to avoid problems with filenames containing a '
- fixed unnecessary calls of 'dvdarchive.sh'; thanks to vejoun from vdr-portal.de for reporting
Diffstat (limited to 'mymenusetup.c')
-rw-r--r-- | mymenusetup.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mymenusetup.c b/mymenusetup.c index 0d038ed..2a3cc18 100644 --- a/mymenusetup.c +++ b/mymenusetup.c @@ -12,15 +12,17 @@ myMenuSetup::myMenuSetup() showrectime=mysetup.ShowRecTime; showreclength=mysetup.ShowRecLength; showdvdnr=mysetup.ShowDvdNr; + shownewrecs=mysetup.ShowNewRecs; Add(new cMenuEditBoolItem(tr("Show recording date"),&showrecdate)); Add(new cMenuEditBoolItem(tr("Show recording time"),&showrectime)); Add(new cMenuEditBoolItem(tr("Show recording length"),&showreclength)); - Add(new cMenuEditBoolItem(tr("Hide main menu entry"),&hidemainmenuentry)); - Add(new cMenuEditBoolItem(tr("Replace original recordings menu"),&replaceorgrecmenu)); - Add(new cMenuEditBoolItem(tr("Show alternative new marker"),&patchnew)); + Add(new cMenuEditBoolItem(tr("Show \"new recordings column\""),&shownewrecs)); + Add(new cMenuEditBoolItem(tr("Show alternative to new marker"),&patchnew)); Add(new cMenuEditBoolItem(tr("Show alternative dvd marker"),&patchdvd)); 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)); } void myMenuSetup::Store() @@ -33,4 +35,5 @@ void myMenuSetup::Store() SetupStore("ShowRecDate",mysetup.ShowRecDate=showrecdate); SetupStore("ShowRecTime",mysetup.ShowRecTime=showrectime); SetupStore("ShowRecLength",mysetup.ShowRecLength=showreclength); + SetupStore("ShowNewRecs",mysetup.ShowNewRecs=shownewrecs); } |