diff --git a/config.c b/config.c index 9ee0083..af8661b 100644 --- a/config.c +++ b/config.c @@ -368,7 +368,7 @@ bool cDesignerConfig::CheckVersion(string name, string &neededVersion) { } splitstring ver(version.c_str()); vector tokensVer = ver.split('.', 1); - if (tokensVer.size() != 3) { + if (tokensVer.size() < 3) { esyslog("skindesigner: incorrect version definition: %s", version.c_str()); return false; } diff --git a/skindesigner.c b/skindesigner.c index c4af02a..f88c074 100644 --- a/skindesigner.c +++ b/skindesigner.c @@ -20,7 +20,7 @@ #endif -static const char *VERSION = "1.2.8.3"; +static const char *VERSION = "1.2.8.4"; static const char *DESCRIPTION = trNOOP("Skin Designer"); class cPluginSkinDesigner : public cPlugin, public skindesignerapi::SkindesignerAPI {