1
0
mirror of https://github.com/donaldzou/WGDashboard.git synced 2024-07-02 15:30:42 +02:00

v2.0-beta-6 Commit

This commit is contained in:
Donald Cheng Hong Zou 2021-05-13 18:21:10 -04:00
parent f76579fe5e
commit 1cb8906893

View File

@ -15,7 +15,7 @@ import ifcfg
from tinydb import TinyDB, Query
# Dashboard Version
dashboard_version = 'v2.0.1'
dashboard_version = 'v2.0'
# Dashboard Config Name
dashboard_conf = 'wg-dashboard.ini'
# Upgrade Required
@ -633,7 +633,10 @@ def check_update():
conf.read(dashboard_conf)
data = urllib.request.urlopen("https://api.github.com/repos/donaldzou/wireguard-dashboard/releases").read()
output = json.loads(data)
if conf.get("Server", "version") == output[0]["tag_name"]:
release = []
for i in output:
if i["prerelease"] == False: release.append(i)
if conf.get("Server", "version") == release[0]["tag_name"]:
return "false"
else:
return "true"