Disabled version checking until I can rewrite the code for it and prevent it from causing problems.
This commit is contained in:
parent
f00602ef93
commit
4d48bdb98a
2 changed files with 8 additions and 2 deletions
|
@ -105,6 +105,7 @@ Bugs
|
||||||
|
|
||||||
* Volume control doesn't work without pygame
|
* Volume control doesn't work without pygame
|
||||||
* Sound on Linux doesn't work without pygame
|
* Sound on Linux doesn't work without pygame
|
||||||
|
* Update checking code gives false positives (update to use json file from git?)
|
||||||
|
|
||||||
Windows Bugs
|
Windows Bugs
|
||||||
------------
|
------------
|
||||||
|
|
|
@ -8,7 +8,7 @@ except:
|
||||||
import zipfile
|
import zipfile
|
||||||
import os, sys, shutil
|
import os, sys, shutil
|
||||||
|
|
||||||
USER_TYPE = "dev"
|
USER_TYPE = "user"
|
||||||
# user - for normal people
|
# user - for normal people
|
||||||
# beta - for the original beta testers
|
# beta - for the original beta testers
|
||||||
# dev - used to be for git users, now it's anyone with the 3.41 beta
|
# dev - used to be for git users, now it's anyone with the 3.41 beta
|
||||||
|
@ -31,7 +31,7 @@ _pcStatus = "A" # A = alpha
|
||||||
# B = beta
|
# B = beta
|
||||||
# RC = release candidate
|
# RC = release candidate
|
||||||
# None = public release
|
# None = public release
|
||||||
_pcRevision = ""
|
_pcRevision = "13"
|
||||||
_pcVersion = ""
|
_pcVersion = ""
|
||||||
|
|
||||||
def pcVerCalc():
|
def pcVerCalc():
|
||||||
|
@ -92,6 +92,11 @@ def updateCheck(q):
|
||||||
except TypeError:
|
except TypeError:
|
||||||
return q.put((False,3))
|
return q.put((False,3))
|
||||||
print full
|
print full
|
||||||
|
print repr(verStrToNum(newest))
|
||||||
|
|
||||||
|
# karxi: Disabled for now; causing issues.
|
||||||
|
return q.put((False,0))
|
||||||
|
|
||||||
if major <= _pcMajor:
|
if major <= _pcMajor:
|
||||||
if minor <= _pcMinor:
|
if minor <= _pcMinor:
|
||||||
if status:
|
if status:
|
||||||
|
|
Loading…
Reference in a new issue