mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
Version number greater than 3 digits possible
This commit is contained in:
parent
eeb5bfefb2
commit
8c9a0d7925
2
config.c
2
config.c
@ -368,7 +368,7 @@ bool cDesignerConfig::CheckVersion(string name, string &neededVersion) {
|
|||||||
}
|
}
|
||||||
splitstring ver(version.c_str());
|
splitstring ver(version.c_str());
|
||||||
vector<string> tokensVer = ver.split('.', 1);
|
vector<string> tokensVer = ver.split('.', 1);
|
||||||
if (tokensVer.size() != 3) {
|
if (tokensVer.size() < 3) {
|
||||||
esyslog("skindesigner: incorrect version definition: %s", version.c_str());
|
esyslog("skindesigner: incorrect version definition: %s", version.c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static const char *VERSION = "1.2.8.3";
|
static const char *VERSION = "1.2.8.4";
|
||||||
static const char *DESCRIPTION = trNOOP("Skin Designer");
|
static const char *DESCRIPTION = trNOOP("Skin Designer");
|
||||||
|
|
||||||
class cPluginSkinDesigner : public cPlugin, public skindesignerapi::SkindesignerAPI {
|
class cPluginSkinDesigner : public cPlugin, public skindesignerapi::SkindesignerAPI {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user