summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorMidas <vdrportal_midas@gmx.de>2010-11-05 01:18:12 +0100
committerMidas <vdrportal_midas@gmx.de>2010-11-05 01:18:12 +0100
commit204d2c6bac6cb134f73e39ee450c3e56a15ee06c (patch)
tree8165b843af9daebbe13870b828b60120130ec260 /config.h
parentd04ad65095872e60613282b584ee10013ea18f44 (diff)
downloadvdr-plugin-block-204d2c6bac6cb134f73e39ee450c3e56a15ee06c.tar.gz
vdr-plugin-block-204d2c6bac6cb134f73e39ee450c3e56a15ee06c.tar.bz2
Release of Version 0.1.0
New features / Bugfixes: -Feature: block.conf format and path changed -Feature: Whitelist function -Feature: New Setup Option 'Fuzzy Fallback' (see whitelist section above) -Feature: Duplicate entries are not allowed anymore! -Feature: New key handling in the plugins setup -Feature: 'New' jumps to an existing 'New entry' -Feature: Parental Guidance and main menu entry -Feature: In Parental Guidance mode replay may be blocked -Feature: Consideration of empty or no EPG data -Feature: Italian translation added (thanks to Diego Pierotto) -Feature: Added list sorting. -Feature: Changes are applied immediately. -Bugfix: In rare cases shows were not blocked. Fixed. -Bugfix: Zap direction -Bugfix: Changing the zap direction on block events to 'down' should now work (again). -Bugfix: Unwanted behaviour if OSD is open -Bugfix: Syslog spams on channels with no or empty EPG please see HISTORY and README for more details
Diffstat (limited to 'config.h')
-rw-r--r--config.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/config.h b/config.h
index 4d121c9..611c088 100644
--- a/config.h
+++ b/config.h
@@ -5,18 +5,22 @@
*
*/
+#include <vdr/channels.h>
#ifndef VDR_BLOCK_CONFIG_H
#define VDR_BLOCK_CONFIG_H
class cSetupBlock {
public:
int HideMenuEntry;
- int MessageTimeout;
+ static int MessageTimeout;
static int DetectionMethod;
- static int LastChannel;
+ static int LastAcceptableChannel;
static int ParentalGuidance;
static int OkAllowed;
-
+ static int FuzzyFallback;
+ static char ReplayingName[256];
+ static cChannel *LastcChannel;
+ static int user_direction;
cSetupBlock(void);
bool Parse(const char *Name, const char *Value);