Skip to content

Commit

Permalink
Removed files
Browse files Browse the repository at this point in the history
- Removed old version's files
- Added new folder for the packaged modules as they were hidden before.
- Changed version number from v1.9.3 to v1.9.4.
- Installer prints out error when trying to read old settings file for debugging.
  • Loading branch information
WhenLifeHandsYouLemons committed Apr 18, 2024
1 parent 675473d commit 2a83f21
Show file tree
Hide file tree
Showing 93 changed files with 34,618 additions and 6 deletions.
2 changes: 1 addition & 1 deletion builds/build_number.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
33
0
Binary file removed builds/release/encryptext_installer_v1.9.3_64bit.exe
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion encryptext_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def progress_bar(percent_done):
"closeAllTabs": file["otherSettings"]["closeAllTabs"]
}
}
except: pass
except Exception as e: print(e)

makedirs(dir_path, exist_ok=True)

Expand Down
8 changes: 4 additions & 4 deletions installer_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import hashlib
import PyInstaller.__main__

version = "1.9.3"
testing = False
version = "1.9.4"
testing = True

def update_build_number() -> str:
with open("builds/build_number.txt", "r") as file:
Expand Down Expand Up @@ -82,9 +82,9 @@ def changeDebug(file_name: str, debug: bool) -> None:
'--add-data',
'Encryptext.pyw;.',
'--add-data',
'.venv/Lib/site-packages/ttkbootstrap;ttkbootstrap',
'to-package/ttkbootstrap;ttkbootstrap',
'--add-data',
'.venv/Lib/site-packages/tkinter;tkinter',
'to-package/tkinter;tkinter',
"--collect-all",
"tkinterweb",
"--collect-all",
Expand Down
Loading

0 comments on commit 2a83f21

Please sign in to comment.