summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--skindesigner.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/README b/README
index 99e5abd..ab68e6e 100644
--- a/README
+++ b/README
@@ -24,7 +24,7 @@ Currently three XML Skins (MetrixHD, nOpacity freestyle and blackhole) are inclu
Requirements
------------
-- VDR version >= 2.0.0
+- VDR version >= 2.2.0
- cairo
diff --git a/skindesigner.c b/skindesigner.c
index a3e77da..081b9df 100644
--- a/skindesigner.c
+++ b/skindesigner.c
@@ -14,12 +14,12 @@
#include "setup.h"
#include "libskindesignerapi/skindesignerapi.h"
-#if defined(APIVERSNUM) && APIVERSNUM < 20000
-#error "VDR-2.0.0 API version or greater is required!"
+#if defined(APIVERSNUM) && APIVERSNUM < 20200
+#error "VDR-2.2.0 API version or greater is required!"
#endif
-static const char *VERSION = "0.8.8";
+static const char *VERSION = "0.9.0";
static const char *DESCRIPTION = trNOOP("Skin Designer");
class cPluginSkinDesigner : public cPlugin, public skindesignerapi::SkindesignerAPI {