diff options
author | louis <louis.braun@gmx.de> | 2016-03-13 16:06:17 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2016-03-13 16:06:17 +0100 |
commit | 1d6c2566bc45fc338f9073c1a60aa39bd756d1ff (patch) | |
tree | 35e12650d7684740609617beb23bb83728b305e4 | |
parent | b40f8c014eb56426188db2e6efca48312458617d (diff) | |
download | vdr-plugin-skindesigner-0.9.0.tar.gz vdr-plugin-skindesigner-0.9.0.tar.bz2 |
Version 0.9.00.9.0
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | skindesigner.c | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -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 { |