Przeglądaj źródła

Added Auto-Update! \0/ Anyway you should be getting 0.9 though it's really 0.8 but anywho.

david 5 lat temu
rodzic
commit
f0bf0b6f1f
1 zmienionych plików z 28 dodań i 0 usunięć
  1. 28 0
      dataLoad.py

+ 28 - 0
dataLoad.py

@@ -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: