summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-12-26 15:49:01 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2020-12-26 15:49:01 +0100
commit2b3556b460665d9a4036b1623e7e7ff5ff6d37d8 (patch)
treebee99e68a196ba076440ad6516b5a0149996b6f2 /config.h
parentd2e0087c4e13b2acbecc4bafb3cb2ab656c95339 (diff)
downloadvdr-2b3556b460665d9a4036b1623e7e7ff5ff6d37d8.tar.gz
vdr-2b3556b460665d9a4036b1623e7e7ff5ff6d37d8.tar.bz2
Implemented "Pattern Timers"2.5.1
Diffstat (limited to 'config.h')
-rw-r--r--config.h17
1 files changed, 12 insertions, 5 deletions
diff --git a/config.h b/config.h
index 6706f07a..b0a6c015 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 4.21 2020/12/22 17:23:51 kls Exp $
+ * $Id: config.h 5.1 2020/12/26 15:49:01 kls Exp $
*/
#ifndef __CONFIG_H
@@ -22,13 +22,13 @@
// VDR's own version number:
-#define VDRVERSION "2.4.6"
-#define VDRVERSNUM 20406 // Version * 10000 + Major * 100 + Minor
+#define VDRVERSION "2.5.1"
+#define VDRVERSNUM 20501 // Version * 10000 + Major * 100 + Minor
// The plugin API's version number:
-#define APIVERSION "2.4.6"
-#define APIVERSNUM 20406 // Version * 10000 + Major * 100 + Minor
+#define APIVERSION "2.5.1"
+#define APIVERSNUM 20501 // Version * 10000 + Major * 100 + Minor
// When loading plugins, VDR searches them by their APIVERSION, which
// may be smaller than VDRVERSION in case there have been no changes to
@@ -46,6 +46,13 @@
#define TIMERMACRO_TITLE "TITLE"
#define TIMERMACRO_EPISODE "EPISODE"
+#define TIMERMACRO_BEFORE "{<}"
+#define TIMERMACRO_MATCH "{=}"
+#define TIMERMACRO_AFTER "{>}"
+
+#define TIMERPATTERN_AVOID "@"
+#define TIMERPATTERN_BEGIN "^"
+#define TIMERPATTERN_END "$"
#define MINOSDWIDTH 480
#define MAXOSDWIDTH 1920