diff options
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | extrecmenu.c | 4 |
2 files changed, 6 insertions, 1 deletions
@@ -2,7 +2,8 @@ VDR Plugin 'extrecmenu' Revision History ---------------------------------------- 2011-xx-xx: Version 1.2.1 -- [sibbi] added ability to configure items that should be shown in recording list. +- [amair] Ignore comments in dircmds.conf (Submitted by TomG @vdr-portal.de). +- [sibbi] Added ability to configure items that should be shown in recording list. - [amair] Merged following changes from v1.3-devel head (Submitted by Joe_D @vdr-portal.de). - [amair] Lifetime and priority for TS recordings can be edited again. - [amair] Use international characters for renaming recordings and creating directories like VDR. diff --git a/extrecmenu.c b/extrecmenu.c index 92be9ee..c382698 100644 --- a/extrecmenu.c +++ b/extrecmenu.c @@ -81,7 +81,11 @@ bool cPluginExtrecmenu::Start(void) MoveCutterThread=new WorkerThread(); +#if VDRVERSNUM >= 10713 RecordingDirCommands.Load(AddDirectory(cPlugin::ConfigDirectory(PLUGIN_NAME_I18N), "dircmds.conf")); +#else + RecordingDirCommands.Load(AddDirectory(cPlugin::ConfigDirectory(PLUGIN_NAME_I18N), "dircmds.conf"), true); +#endif return true; } |