From 2e67da06b0042df77a1ec79830687e2f8d66fad6 Mon Sep 17 00:00:00 2001 From: GeminiServer Date: Sun, 15 Mar 2020 15:56:13 +0100 Subject: [PATCH] New - Version rule and format. --- Translation Editor/make_translation.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Translation Editor/make_translation.py b/Translation Editor/make_translation.py index b6f4fd81..4edc0bda 100755 --- a/Translation Editor/make_translation.py +++ b/Translation Editor/make_translation.py @@ -7,6 +7,13 @@ import io from datetime import datetime import sys import fontTables + +# To cause no confusion with the original firmware version of TS100, +# which actually has the latest firmware version 2.18 +# Lets go ahead start with version 2.20.0001 BETA +# Version String: xx.yy.zzzz TAG --> x:Major y:Minor z:Build TAG: REL | BETA | ALPHA +BUILD_VERSION = 'V2.20.0001 BETA' + TRANSLATION_CPP = "Translation.cpp" try: @@ -94,7 +101,7 @@ def getConstants(): consants.append(('SymbolVolts', 'V')) consants.append(('SymbolDC', 'DC')) consants.append(('SymbolCellCount', 'S')) - consants.append(('SymbolVersionNumber', 'V2.08')) + consants.append(('SymbolVersionNumber', BUILD_VERSION)) return consants