Version 0.9.0

This commit is contained in:
louis 2016-03-13 16:06:17 +01:00
parent b40f8c014e
commit 1d6c2566bc
2 changed files with 4 additions and 4 deletions

2
README
View File

@ -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

View File

@ -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 {