diff options
author | etobi <git@e-tobi.net> | 2013-03-09 23:01:00 +0100 |
---|---|---|
committer | etobi <git@e-tobi.net> | 2013-03-09 23:01:00 +0100 |
commit | 6272d013d2f0cc4166e162cd0dbd8110d53f3dc4 (patch) | |
tree | dcd964c1762a2aa80a6f4a22124d4191c2116ea8 /osdteletext.c | |
parent | 914417509db83e848d546786bd445dd1529fe2f3 (diff) | |
download | vdr-plugin-osdteletext-6272d013d2f0cc4166e162cd0dbd8110d53f3dc4.tar.gz vdr-plugin-osdteletext-6272d013d2f0cc4166e162cd0dbd8110d53f3dc4.tar.bz2 |
Dropped backwards compatibility for VDR 1.6.0 (Closes #944)
Diffstat (limited to 'osdteletext.c')
-rw-r--r-- | osdteletext.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/osdteletext.c b/osdteletext.c index c6cd090..04e0b49 100644 --- a/osdteletext.c +++ b/osdteletext.c @@ -21,11 +21,11 @@ using namespace std; #include "txtrecv.h" #include "setup.h" -#if defined(APIVERSNUM) && APIVERSNUM < 10600 -#error "VDR-1.6.0 API version or greater is required!" +#if defined(APIVERSNUM) && APIVERSNUM < 10739 +#error "VDR-1.7.39 API version or greater is required!" #endif -static const char *VERSION = "0.9.3"; +static const char *VERSION = "1.0.0"; static const char *DESCRIPTION = trNOOP("Displays teletext on the OSD"); static const char *MAINMENUENTRY = trNOOP("Teletext"); |