Skip to content

Commit

Permalink
Merge pull request #62 from WhenLifeHandsYouLemons/main
Browse files Browse the repository at this point in the history
Pull new changes from main to v1.9.1
  • Loading branch information
WhenLifeHandsYouLemons authored Apr 3, 2024
2 parents cbc7246 + b3dc7b2 commit 9c64048
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Encryptext.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def getTrueFilename(filename):
base = abspath(".")
return join(base, filename)

debug = True
debug = False

# ENCRYPTION KEY HERE
encrypt_key = b''# ENCRYPTION KEY HERE
Expand Down
Binary file added encryptext_installer_v1.9.0_64bit.exe
Binary file not shown.
5 changes: 3 additions & 2 deletions installer_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from os import rename, path, remove
from shutil import rmtree
import hashlib

import PyInstaller.__main__

version = "1.9.0"
Expand Down Expand Up @@ -61,7 +60,9 @@ def computeHash(input_string):
file.truncate()

# Move the exe out of the dist folder
remove(f"encryptext_installer_v{version}_64bit.exe")
try:
remove(f"encryptext_installer_v{version}_64bit.exe")
except FileNotFoundError: pass
rename(path.join("dist", "encryptext_installer.exe"), f"encryptext_installer_v{version}_64bit.exe")

# Remove pyinstaller folders and files
Expand Down

0 comments on commit 9c64048

Please sign in to comment.