diff options
author | gnapheus <solevita50@gmail.com> | 2013-03-22 19:32:51 +0100 |
---|---|---|
committer | gnapheus <solevita50@gmail.com> | 2013-03-22 19:32:51 +0100 |
commit | 1a1dbb44e906ea08289eae429116912235335a53 (patch) | |
tree | 39a4b043864caa06fe851e5c34fb587a50373434 /zappilot.c | |
parent | ede4ec0c86be1ca235cbc47dda3b4603eaa493e1 (diff) | |
download | vdr-plugin-zappilot-master.tar.gz vdr-plugin-zappilot-master.tar.bz2 |
Diffstat (limited to 'zappilot.c')
-rw-r--r-- | zappilot.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -12,7 +12,7 @@ #include <vdr/plugin.h> -static const char *VERSION = "0.0.4"; +static const char *VERSION = "0.0.5"; static const char *DESCRIPTION = trNOOP("A zapping co-pilot"); static const char *MAINMENUENTRY = trNOOP("ZapPilot"); @@ -48,6 +48,7 @@ cPluginZappilot::cPluginZappilot(void) config.closeonswitch=1; config.hidemenu=0; config.fastbrowse=0; + config.fastbrowsealt=0; config.switchtimer=0; config.switchminsbefore=1; config.pEPGSearch=NULL; @@ -114,6 +115,7 @@ bool cPluginZappilot::SetupParse(const char *Name, const char *Value) if (!strcasecmp(Name, "CloseOnSwitch")) config.closeonswitch = atoi(Value); else if (!strcasecmp(Name, "HideMenu")) config.hidemenu = atoi(Value); else if (!strcasecmp(Name, "FastBrowse")) config.fastbrowse = atoi(Value); + else if (!strcasecmp(Name, "FastBrowseAlt")) config.fastbrowsealt = atoi(Value); else if (!strcasecmp(Name, "SwitchTimer")) config.switchtimer = atoi(Value); else if (!strcasecmp(Name, "SwitchMinsBefore")) config.switchminsbefore = atoi(Value); else |