diff options
| author | jwansek <eddie.atten.ea29@gmail.com> | 2025-12-22 16:15:25 +0000 |
|---|---|---|
| committer | jwansek <eddie.atten.ea29@gmail.com> | 2025-12-22 16:15:25 +0000 |
| commit | 7e85e0e79856fccd9e56c5db5f1d5060f0ee5fc7 (patch) | |
| tree | e4f77cbdb5f44067057ec6c23bb745d1b76b4f94 /EEHPH2.py | |
| parent | 2c7a29f6de740c2e8f2db4c8734b4a617af8a6c8 (diff) | |
| download | eehph2-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 'EEHPH2.py')
| -rw-r--r-- | EEHPH2.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/EEHPH2.py b/EEHPH2.py deleted file mode 100644 index d5915d5..0000000 --- a/EEHPH2.py +++ /dev/null @@ -1,26 +0,0 @@ -import sys -import os - -def find_location(): - filelocation = os.path.join(os.environ['ALLUSERSPROFILE'], "EEHPH2", "location.txt") - file = open(filelocation, "r") - applocation = file.readline() - file.close() - - return applocation - -initcwd = os.getcwd() - -try: - start = sys.argv[1] -except: - start = None - -os.chdir(find_location()) - -import EEHPH2_app - -root = EEHPH2_app.App(start) -root.mainloop() - -os.chdir(initcwd)
\ No newline at end of file |
