diff options
author | Martin Prochnow <nordlicht@martins-kabuff.de> | 2006-03-26 12:18:12 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2006-03-26 12:18:12 +0200 |
commit | 54d5f6870a7351584fcb1c3e861a4fc9224badf3 (patch) | |
tree | fb51954380f42e8827a0a8fa757ef12e17e4e0f9 /mymenusetup.c | |
parent | 20683b994128131bcb22f89f00282cefdc54fc04 (diff) | |
download | vdr-plugin-extrecmenu-54d5f6870a7351584fcb1c3e861a4fc9224badf3.tar.gz vdr-plugin-extrecmenu-54d5f6870a7351584fcb1c3e861a4fc9224badf3.tar.bz2 |
Version 0.7v0.7
- added frensh translation; thanks to Patrice Staudt
- added finnish translation; thanks to Rolf Ahrenberg
- several bugfixes:
* if there are more then one recording with the same name, only one of it is shown if the recording details are hidden; thanks to Monroe from vdr-portal.de for reporting
* recording list entry (not the recording itselfs!) is deleted, if it is moved to the same place; thanks to Monroe from vdr-portal.de for reporting
* if a recording was deleted, the selection bar jumps to the first list entry
* some people reported problems with wrong recording dates using LinVDR
- revised rename-recording-menu; thanks to Monroe from vdr-portal.de for suggesting
- revised move-recording-menu - it is now more obvious; thanks to Monroe from vdr-portal.de for suggesting
- added option to show an alternative new marker - it's only useful for german speaking users because this icon shows 'NEU'; suggestions for an international version are welcome, you has 22x22 pixels for it
- added the functionality of the DvdArchive- and the DVDShowArchive-patch for VDR
- thanks fpr vejoun from vdr-portal.de for the script 'dvdarchive.sh'
Diffstat (limited to 'mymenusetup.c')
-rw-r--r-- | mymenusetup.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/mymenusetup.c b/mymenusetup.c index 5803e40..0d038ed 100644 --- a/mymenusetup.c +++ b/mymenusetup.c @@ -5,21 +5,30 @@ mySetup mysetup; myMenuSetup::myMenuSetup() { hidemainmenuentry=mysetup.HideMainMenuEntry; + patchnew=mysetup.PatchNew; + patchdvd=mysetup.PatchDvd; replaceorgrecmenu=mysetup.ReplaceOrgRecMenu; showrecdate=mysetup.ShowRecDate; showrectime=mysetup.ShowRecTime; showreclength=mysetup.ShowRecLength; + showdvdnr=mysetup.ShowDvdNr; - Add(new cMenuEditBoolItem(tr("Hide main menu entry"),&hidemainmenuentry)); - Add(new cMenuEditBoolItem(tr("Replace original recordings menu"),&replaceorgrecmenu)); 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 alternative dvd marker"),&patchdvd)); + Add(new cMenuEditBoolItem(tr("Show dvd number"),&showdvdnr)); } void myMenuSetup::Store() { SetupStore("HideMainMenuEntry",mysetup.HideMainMenuEntry=hidemainmenuentry); + SetupStore("PatchNew",mysetup.PatchNew=patchnew); + SetupStore("PatchDvd",mysetup.PatchDvd=patchdvd); + SetupStore("ShowDvdNr",mysetup.ShowDvdNr=showdvdnr); SetupStore("ReplaceOrgRecMenu",mysetup.ReplaceOrgRecMenu=replaceorgrecmenu); SetupStore("ShowRecDate",mysetup.ShowRecDate=showrecdate); SetupStore("ShowRecTime",mysetup.ShowRecTime=showrectime); |