forked from Podshot/MCEdit-Unified
-
Notifications
You must be signed in to change notification settings - Fork 1
/
release.py
92 lines (76 loc) · 2.93 KB
/
release.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import os.path
import directories
import json
import urllib2
import sys
from sys import platform as _platform
VERSION = None
TAG = None
DEV = None
def build_version_tag_dev():
'''
Get and return the name of the current version, the stage of development
MCEdit-Unified is in, and if the program is in development mode.
'''
try:
#with open(os.path.join(directories.getDataDir(), "RELEASE-VERSION.json"), 'rb') as jsonString:
with open(directories.getDataFile('RELEASE-VERSION.json'), 'rb') as jsonString:
current = json.load(jsonString)
return (current["name"].replace("{tag_name}", current["tag_name"]).replace("{mc_versions}", current["mc_versions"]).replace("{pe_versions}", current["pe_versions"]),
current["tag_name"],
current["development"])
except:
raise
VERSION, TAG, DEV = build_version_tag_dev()
def get_version():
'''
Returns the name of the current version
'''
return VERSION
def get_release_tag():
'''
Returns the stage of development MCEdit-Unified is in
'''
return TAG
def is_dev():
'''
Returns if MCEdit-Unified is in development mode
'''
return DEV
def fetch_new_version_info():
return json.loads(urllib2.urlopen("https://api.github.com/repos/Podshot/MCEdit-Unified/releases").read())
def check_for_new_version(release_api_response):
'''
Checks for a new MCEdit-Unified version, if the current one is not in development mode
'''
try:
if not is_dev():
# release_api_response = json.loads(urllib2.urlopen("https://api.github.com/repos/Khroki/MCEdit-Unified/releases").read())
version = release_api_response[0]
if version["tag_name"] > get_release_tag():
is_64bit = sys.maxsize > 2 ** 32
assets = version["assets"]
for asset in assets:
if _platform == "win32":
version["OS Target"] = "windows"
if "Win" in asset["name"]:
if is_64bit:
if "64bit" in asset["name"]:
version["asset"] = asset
version["target_arch"] = "64bit"
else:
if "32bit" in asset["name"]:
version["asset"] = asset
version["target_arch"] = "32bit"
elif _platform == "darwin":
version["OS Target"] = "osx"
if "OSX" in asset["name"]:
version["asset"] = asset
version["target_arch"] = "64bit"
return version
return False
else:
return False
except:
print "An error occurred checking for updates."
return False