summaryrefslogtreecommitdiff
path: root/zappilot.c
diff options
context:
space:
mode:
authorgnapheus <solevita50@gmail.com>2013-03-22 19:32:51 +0100
committergnapheus <solevita50@gmail.com>2013-03-22 19:32:51 +0100
commit1a1dbb44e906ea08289eae429116912235335a53 (patch)
tree39a4b043864caa06fe851e5c34fb587a50373434 /zappilot.c
parentede4ec0c86be1ca235cbc47dda3b4603eaa493e1 (diff)
downloadvdr-plugin-zappilot-master.tar.gz
vdr-plugin-zappilot-master.tar.bz2
updated Makefile for vdr-1.7.34+ and alternative key layout for fast browse modeHEADmaster
Diffstat (limited to 'zappilot.c')
-rw-r--r--zappilot.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/zappilot.c b/zappilot.c
index 3cbdd95..06e1147 100644
--- a/zappilot.c
+++ b/zappilot.c
@@ -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