This commit is contained in:
UKDTOM 2021-01-17 23:14:07 +01:00
parent 0bb503de5a
commit 5f67924f93
3 changed files with 22 additions and 1 deletions

View file

@ -1,5 +1,11 @@
# ![Logo](https://github.com/WebTools-NG/WebTools-NG/blob/master/src/assets/WebTools-48x48.png) WebTools-ng Change log
## V0.1.13
**Note**: This version is an Alpha version, that is not made public
* [#222 Update Notifier still to trigger happy](https://github.com/WebTools-NG/WebTools-NG/issues/222)
## V0.1.12
**Note**: This version is an Alpha version, that is not made public

View file

@ -1,7 +1,7 @@
{
"name": "webtools-ng",
"productName": "WebTools-NG",
"version": "0.1.12",
"version": "0.1.13",
"description": "WebTools Next Generation 4 Plex",
"author": "dane22 & CPSO",
"license": "MPL-2.0",

View file

@ -445,6 +445,21 @@ const github = new class GitHub {
// If not present, set to zerro
if (!rels['betadateFull']){
rels['betadateFull'] = 0;
}
var s1 = '';
if (rels['betaver']){
if (rels['betaver'].toUpperCase().startsWith('V'))
{
s1 = rels['betaver'];
rels['betaver'] = s1.substring(1);
}
}
if (rels['relver']){
if (rels['relver'].toUpperCase().startsWith('V'))
{
s1 = rels['relver'];
rels['relver'] = s1.substring(1);
}
}
return rels;
}