Skip to content

Commit 4442cbc

Browse files
Merge pull request #32 from WhenLifeHandsYouLemons/v1.7.0
v1.7.0
2 parents dd51f65 + c63f7d2 commit 4442cbc

11 files changed

Lines changed: 468 additions & 243 deletions

Encryptext.pyw

Lines changed: 451 additions & 234 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Encryptext
22

3-
Introducing Encryptext: Your Secure and Versatile Text Editor!
3+
Introducing Encryptext: An Extremely Secure and Versatile Text Editor!
44

5-
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.
5+
Unlock a new level of security and versatility with Encryptext, the innovative text editor designed for the modern user. Seamlessly blending essential features with cutting-edge encryption technology, Encryptext ensures your documents are safeguarded like never before.
66

77
## Features
88

-31.8 MB
Binary file not shown.

file1.etx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bold0@@@1.12@@@1.14@@@Arial@@@11&&&file number 01\n

file2.etx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
italic0@@@1.12@@@1.14@@@Arial@@@11&&&file number 10\n

file3.etx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
&&&file number 11\n

installer_creator_windows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from os import system
22
import PyInstaller.__main__
33

4-
version = "1.6.1"
4+
version = "1.7.0"
55

66
# Creates an executable file
77
PyInstaller.__main__.run([

installer_windows.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
import sys
33
from subprocess import run
44
from time import sleep
5-
import time
65
from cryptography.fernet import Fernet as F
76
from random import choice, randint
87
from string import ascii_letters, digits
98
import threading as t
109

11-
version = "1.6.1"
10+
version = "1.7.0"
1211

1312
print("\nStarting installer...")
1413
print("Please wait...")
@@ -25,6 +24,7 @@ def getTrueFilename(filename):
2524
def appCreation():
2625
file_path = getTrueFilename("Encryptext-User.pyw")
2726
icon_path = getTrueFilename("app_icon.ico")
27+
# Fix for tkinterweb not working
2828
# https://github.com/pyinstaller/pyinstaller/issues/6658#issuecomment-1062817361
2929
subproc_env = os.environ.copy()
3030
subproc_env.pop('TCL_LIBRARY', None)
@@ -95,7 +95,7 @@ def printProgressBar (iteration, total, prefix = '', suffix = '', decimals = 1,
9595
if update == "u":
9696
print("\n\nPlease open the current version of Encryptext you have.")
9797
print("In the menu bar at the top, click on 'Help'. Then click on 'Update Encryptext'.\n")
98-
time.sleep(5)
98+
sleep(5)
9999

100100
# Find where the encryption key is stored in the file
101101
file = text.split("# ENCRYPTION KEY HERE")

requirements.txt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
tkinter
1+
sys
2+
os
3+
time
4+
random
5+
string
6+
subprocess
27
traceback
8+
threading
9+
tkinter
310
webbrowser
411
cryptography
512
tkinterweb
613
markdown
714
PyInstaller
8-
threading

0 commit comments

Comments
 (0)