aboutsummaryrefslogtreecommitdiffstats
path: root/on_install_setup
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2025-12-22 16:15:25 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2025-12-22 16:15:25 +0000
commit7e85e0e79856fccd9e56c5db5f1d5060f0ee5fc7 (patch)
treee4f77cbdb5f44067057ec6c23bb745d1b76b4f94 /on_install_setup
parent2c7a29f6de740c2e8f2db4c8734b4a617af8a6c8 (diff)
downloadeehph2-7e85e0e79856fccd9e56c5db5f1d5060f0ee5fc7.tar.gz
eehph2-7e85e0e79856fccd9e56c5db5f1d5060f0ee5fc7.zip
Various QoL changes and improvements over the old version
- Switched to using pyinstaller for compiling over cx_Freeze - Simplified the installation and application opening process so it doesn't have to find itself - Made some updates to [tkFileBrowser](https://github.com/jwansek/tkFileBrowser/) (which originated from this project) and merged the changes back in - Reloaded the image on window scaling, photosensitive epilepsy beware, these numbers might need tweaking
Diffstat (limited to 'on_install_setup')
-rw-r--r--on_install_setup/icon.icobin31020 -> 0 bytes
-rw-r--r--on_install_setup/on_install_setup.py13
2 files changed, 0 insertions, 13 deletions
diff --git a/on_install_setup/icon.ico b/on_install_setup/icon.ico
deleted file mode 100644
index b81e427..0000000
--- a/on_install_setup/icon.ico
+++ /dev/null
Binary files differ
diff --git a/on_install_setup/on_install_setup.py b/on_install_setup/on_install_setup.py
deleted file mode 100644
index 56c961d..0000000
--- a/on_install_setup/on_install_setup.py
+++ /dev/null
@@ -1,13 +0,0 @@
-import sys
-import os
-
-location = sys.argv[1]
-
-appdata = os.path.join(os.environ['ALLUSERSPROFILE'], "EEHPH2")
-
-if not os.path.exists(appdata):
- os.mkdir(appdata)
-
-file = open(os.path.join(appdata, "location.txt"), "w")
-file.write(location)
-file.close() \ No newline at end of file