From af1c313dc3409d490e370c35c4317a949dde3d92 Mon Sep 17 00:00:00 2001 From: Athanasius <github@miggy.org> Date: Fri, 17 Jul 2020 12:36:45 +0100 Subject: [PATCH] update.py: Note to redo 'manual' version check --- update.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/update.py b/update.py index 8b859874..7dad1a37 100644 --- a/update.py +++ b/update.py @@ -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('.')))