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
Copy file name to clipboardExpand all lines: Encryptext.pyw
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,7 @@ Variables
58
58
debug=False
59
59
# UPDATE MODE HERE
60
60
update=False# UPDATE MODE HERE
61
+
version="1.6.1"
61
62
62
63
save_location=""
63
64
file_extension=""
@@ -516,7 +517,7 @@ def openPreferences():
516
517
pref_window.mainloop()
517
518
518
519
defupdate_menu(Event=None):
519
-
messagebox.showinfo("Update Encryptext", "1. Run the updater\n2. When it asks for the old enryption keys, copy and paste the ones shown in the text editor window.\n\nClick 'Ok' to view the keys.\n\nDO NOT SAVE THE DOCUMENT WITH THE KEYS.")
520
+
messagebox.showinfo("Update Encryptext", """1. Run the new version's installer\n2. When it asks whether you're installing or updating, choose updating.\n3. When it asks for the old enryption key and other strings, copy and paste the ones shown in the text editor here.\n\nClick 'Ok' to view the keys.\n\nDO NOT SAVE THE DOCUMENT WITH THE KEYS.""")
520
521
521
522
key=encrypt_key.decode()
522
523
@@ -528,7 +529,7 @@ def update_menu(Event=None):
528
529
viewingMode()
529
530
530
531
defabout_menu(Event=None):
531
-
messagebox.showinfo("About Encryptext", "Encryptext can do what Notepad does, and more. You can edit, format, and encrypt files securely, while also editing regular files with ease.\n\n Free for everyone. Forever. ❤")
532
+
messagebox.showinfo("About Encryptext", f"Unlock a new level of security and versatility with Encryptext, the text editor designed for the modern user. Seamlessly blending essential features with modern encryption technology, Encryptext ensures your documents are safeguarded like never before.\n\nFree for everyone. Forever. ❤\n\nVersion {version}")
format_item_separator=str(input("\nPlease enter the Format Item Separator (be careful to not add the spaces, just the text):"))
202
133
whilelen(format_item_separator) <15:
203
-
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):"))
134
+
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):"))
204
135
205
136
# Add the format item separator string to the file
format_separator=str(input("\nPlease enter the Format Separator String (be careful to not add the spaces, just the text):"))
222
153
whilelen(format_separator) <15:
223
-
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):"))
154
+
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):"))
242
173
whilelen(format_string) <15:
243
-
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):"))
174
+
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):"))
0 commit comments