diff options
author | Martin Prochnow <nordlicht@martins-kabuff.de> | 2007-10-24 19:29:46 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2007-10-24 19:29:46 +0200 |
commit | 3b617b561f901e8f7a5f8991bc1d51e1ee800142 (patch) | |
tree | 0bbf93eab394f637d0e1c5b286a04e2226b08f9e /extrecmenu.c | |
parent | 57e0533f20b14e208e41e56f80fd15b3d18f90f1 (diff) | |
download | vdr-plugin-extrecmenu-3b617b561f901e8f7a5f8991bc1d51e1ee800142.tar.gz vdr-plugin-extrecmenu-3b617b561f901e8f7a5f8991bc1d51e1ee800142.tar.bz2 |
Version 1.1v1.1
- fixed an issue with starting an editing process; thank to Andreas Mair for the patch
- new marker ('*') is shown despite the setup option 'Show alternative to new marker' is on and 'Patch font' is off; fixed; thanks to Saxman2k from vdr-portal.de for reporting
- added option to switch off cutter queue
Diffstat (limited to 'extrecmenu.c')
-rw-r--r-- | extrecmenu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extrecmenu.c b/extrecmenu.c index ebaf3b8..ba81dac 100644 --- a/extrecmenu.c +++ b/extrecmenu.c @@ -11,7 +11,7 @@ using namespace std; -static const char *VERSION = "1.0"; +static const char *VERSION = "1.1"; static const char *DESCRIPTION = "Extended recordings menu"; static const char *MAINMENUENTRY = "ExtRecMenu"; @@ -133,6 +133,8 @@ bool cPluginExtrecmenu::SetupParse(const char *Name,const char *Value) mysetup.PatchFont=atoi(Value); else if(!strcasecmp(Name,"FileSystemFreeMB")) mysetup.FileSystemFreeMB=atoi(Value); + else if(!strcasecmp(Name,"UseCutterQueue")) + mysetup.UseCutterQueue=atoi(Value); else return false; return true; |