diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2020-07-26 16:18:11 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2020-07-27 10:29:30 +0200 |
commit | 8c9a0d79258bd412d0cb82885d1f446003185937 (patch) | |
tree | b841b11e6f423d0d0706d889ee5871097c500544 | |
parent | eeb5bfefb2ec545a0d2d14249e928de2071e11ac (diff) | |
download | vdr-plugin-skindesigner-1.2.8.4.tar.gz vdr-plugin-skindesigner-1.2.8.4.tar.bz2 |
Version number greater than 3 digits possible1.2.8.4
-rw-r--r-- | config.c | 2 | ||||
-rw-r--r-- | skindesigner.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 { |