mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2025-02-16 19:38:26 +00:00
Fixed #222
This commit is contained in:
parent
0bb503de5a
commit
5f67924f93
3 changed files with 22 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue