You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fixed small issue with recent files menu not working correctly.
- Removed optional update feature. (Now you can update securely if you want to or don't want to)
- Need to change what is returned if the hash is incorrect. (Need to emulate real keys to make it harder to figure out if it's fake)
- Moved around some variables to make program run more efficiently if used in update mode.
- Installer no longer asks for user's input when updating as it takes it automagically from the old version.
- File removal now happens closer to when it's created to not cause any issues of files being removed but not created.
- Renamed some intermediate files to conform better.
- Now the installer creates a desktop shortcut and a Start Menu shortcut for Windows!
- There's a new beta version of the program for the people who want to live on the bleeding-edge.
- All files now have Linux-friendly python interpreter code at the top so that it runs better.
update=input("\nAre you updating or installing Encryptext? [(u)pdating/(i)nstalling] ")
118
120
119
-
need_update=input("\nDo you want to be able to update Encryptext in the future?\nNOTE: This lowers the security but allows you to update Encryptext to get new features and not lose your encrypted files. [(y)es/(n)o] ")
120
-
whileneed_update!="y"andneed_update!="n":
121
-
need_update=input("\nDo you want to be able to update Encryptext in the future?\nNOTE: This lowers the security but allows you to update Encryptext to get new features and not lose your encrypted files. [(y)es/(n)o] ")
122
-
123
-
# Open the Encryptext.py file and read it into a variable
121
+
# Open the Encryptext.pyw file and read it into a variable
format_item_separator=str(input("\nPlease enter the Format Item Separator (be careful to not add the spaces, just the text):"))
191
-
whilelen(format_item_separator) <15:
192
-
format_item_separator=str(input("\nYou haven't entered the string correctly. Please enter the 'Format Item Separator' (be careful to not add the spaces, just the text):"))
format_separator=str(input("\nPlease enter the Format Separator String (be careful to not add the spaces, just the text):"))
211
-
whilelen(format_separator) <15:
212
-
format_separator=str(input("\nYou haven't entered the string correctly. Please enter the 'Format Separator String' (be careful to not add the spaces, just the text):"))
format_string=str(input("\nPlease enter the Format String (be careful to not add the spaces, just the text):"))
231
-
whilelen(format_string) <15:
232
-
format_string=str(input("\nYou haven't entered the string correctly. Please enter the 'Format String' (be careful to not add the spaces, just the text):"))
shortcut_path=path.join(home_dir, "AppData", "Roaming", "Microsoft", "Windows", "Start Menu", "Programs", "Encryptext", f"Encryptext.lnk")#This is where the shortcut will be created
355
-
target_path=path.join(dir_path, f"Encryptext_v{version}.exe")# directory to which the shortcut is created
0 commit comments