1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 08:17:13 +03:00

update.py: Note to redo 'manual' version check

This commit is contained in:
Athanasius 2020-07-17 12:36:45 +01:00
parent cba673ae12
commit af1c313dc3

View File

@ -11,6 +11,8 @@ from config import appname, appversion, appversion_nobuild, update_feed, update_
if not getattr(sys, 'frozen', False):
#TODO: Update this to use Semantic Version as per EDMC.pu args.version check
# quick and dirty version comparison assuming "strict" numeric only version numbers
def versioncmp(versionstring):
return list(map(int, versionstring.split('.')))