GUI development

This commit is contained in:
BarsTiger
2022-01-28 16:49:10 +02:00
parent b4338be548
commit 9fba19521b
3 changed files with 12 additions and 3 deletions

View File

@@ -1,3 +0,0 @@
xcopy /s /Y dist\horsy.exe bin\horsy.exe*
xcopy /s /Y dist\horsygui.exe bin\horsygui.exe*
xcopy /s /Y dist\horsy_installer.exe bin\installer-horsy-win.exe*

11
dist.py Normal file
View File

@@ -0,0 +1,11 @@
import os
os.system("xcopy /s /Y dist\horsy.exe bin\horsy.exe*")
os.system("xcopy /s /Y dist\horsygui.exe bin\horsygui.exe*")
os.system("xcopy /s /Y dist\horsy_installer.exe bin\installer-horsy-win.exe*")
with open("web_vars/version", "r") as f_r:
version = f_r.readline()
with open("web_vars/version", "w") as f_w:
f_w.write(str(int(version) + 1))

1
web_vars/version Normal file
View File

@@ -0,0 +1 @@
0