From 8c9a0d79258bd412d0cb82885d1f446003185937 Mon Sep 17 00:00:00 2001 From: kamel5 Date: Sun, 26 Jul 2020 16:18:11 +0200 Subject: [PATCH] Version number greater than 3 digits possible --- config.c | 2 +- skindesigner.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {