|
@@ -527,6 +527,34 @@ if args.update:
|
|
|
word = key_word[key]
|
|
|
print("{0} : {1}".format( key, word))
|
|
|
lines[i+1] = f' form.value = "{word}";' + "\n" # break;\n" # You may need it... or may not.
|
|
|
+ if '@version' in lines[i]:
|
|
|
+ # Change version number
|
|
|
+ l = lines[i]
|
|
|
+ lis = list(l)
|
|
|
+ for c in range(0, 4):
|
|
|
+ del lis[-1]
|
|
|
+ # Grab version number
|
|
|
+ digit = f"{l[-4]}{l[-3]}{l[-2]}"
|
|
|
+ # Convert to something we can use
|
|
|
+ who, dec = digit.split('.')
|
|
|
+ who = int(who) # Whole number value
|
|
|
+ dec = int(dec) # Decimal value
|
|
|
+ # Increment and test
|
|
|
+ dec += 1
|
|
|
+ if (dec >= 10):
|
|
|
+ dec = 0
|
|
|
+ who += 1
|
|
|
+ # Now to write that all out again...
|
|
|
+ lis.append(str(who))
|
|
|
+ lis.append('.')
|
|
|
+ lis.append(str(dec))
|
|
|
+ lis.append("""
|
|
|
+""")
|
|
|
+ rest = ''
|
|
|
+ for e in lis:
|
|
|
+ rest += e
|
|
|
+ lines[i] = rest
|
|
|
+ print(f"Now updated to version: {who}.{dec}!")
|
|
|
|
|
|
with open(filename, 'w') as fp:
|
|
|
for line in lines:
|