summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.c2
-rw-r--r--skindesigner.c2
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<string> 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 {