Version number greater than 3 digits possible

This commit is contained in:
kamel5 2020-07-26 16:18:11 +02:00
parent eeb5bfefb2
commit 8c9a0d7925
2 changed files with 2 additions and 2 deletions

View File

@ -368,7 +368,7 @@ bool cDesignerConfig::CheckVersion(string name, string &neededVersion) {
}
splitstring ver(version.c_str());
vector<string> tokensVer = ver.split('.', 1);
if (tokensVer.size() != 3) {
if (tokensVer.size() < 3) {
esyslog("skindesigner: incorrect version definition: %s", version.c_str());
return false;
}

View File

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