Skip to content

Commit c8e37b0

Browse files
Merge pull request #38 from WhenLifeHandsYouLemons/v1.7.1
v1.7.1
2 parents 4442cbc + edd2627 commit c8e37b0

8 files changed

Lines changed: 169 additions & 45 deletions

Encryptext.pyw

Lines changed: 118 additions & 43 deletions
Large diffs are not rendered by default.

encryptext_settings.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"version": "1.8.0",
3+
"recentFilePaths": [
4+
"/path/to/file1",
5+
"/path/to/file2",
6+
"/path/to/file3",
7+
"/path/to/file4",
8+
"/path/to/file5"
9+
],
10+
"maxRecentFiles": 5,
11+
"otherSettings": {
12+
"theme": "light",
13+
"language": "en-US",
14+
"autoSave": false,
15+
"backupInterval": 15,
16+
"showLineNumbers": false,
17+
"wrapLines": true,
18+
"highlightActiveLine": false,
19+
"keyboardShortcuts": {
20+
"save": "Ctrl+S",
21+
"open": "Ctrl+O",
22+
"copy": "Ctrl+C",
23+
"paste": "Ctrl+V"
24+
}
25+
}
26+
}

example_file.etx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
gAAAAABl_Qs3QPAHmqBiTVb4K3zzE4fttfrh0XCeOs-u4K2E0P_XTgdPn4dcfVlv7q_791vtLn2RtQv1ncOvwVY0ifhPZKmFx7lE18cFC-7aXEpWAh1yGBfU8ktLmMPZbftUAynCmuIRUNf60LcQYkHRnvOZGCcYUiWhH9l7fL9VegDk72S9KGvo-03CToRBUrjNJYYwr7tw2K3Jt1VhzYyyt3gwBd09qG-N_oiPC2LPDROLEZC_ynxVjA-FrGGoVzVu8ny5AuQbqjzqpKZoAlmRBzUUy_YlF4ir07zM7FhltTRbGDaecMPq-NF5W1lfcIsFuhgdC4lfi78kng_YthGs73FPDnyvR1MCxROCmaA7iS5yt7JHw6nZ_y3IhbqGXda3KJ48ArOMZPKFqPwuYKrKJvFUU-oa1TD50IKqEkztXyxheu3an5Tw6E9YJsdqj4KIs9JnOfYxbjiI-xln5CpZ37Aql_LTu6YYncI7ryhZGA-f5vSoxk0tNXnGelBkRdE-Bvw8rfy_d4Tar8v8OpARw8VFvwGgrERsyKnVE9Bl5xm-CpVvUEny0uicT1538-1r9nx2j-56yWt_SWQnGOfKxvoEgcdIPUZguBt4B8Ursigi6EFFDM1jx5LxZTVExVyE3ucX3m8htvC7GIE_LGgSMTyQIxQiI7L3kSeFG4wrHrPK3yEbab51u9zerxH7D6sv-FGGGYBq

file4.etx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
&&&This is a completely new file.\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.7.0"
4+
version = "1.7.1"
55

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

installer_windows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from string import ascii_letters, digits
88
import threading as t
99

10-
version = "1.7.0"
10+
version = "1.7.1"
1111

1212
print("\nStarting installer...")
1313
print("Please wait...")

markdown_format_example.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Markdown
2+
3+
This is a Markdown file. You can format using regular Markdown syntax!
4+
5+
1. Numbered list point one
6+
2. Point two
7+
8+
You can also do bullet point lists:
9+
10+
- Bulleted list point one
11+
- Point two
12+
13+
## Code blocks
14+
15+
Inline `code formatting` is possible!
16+
17+
```
18+
print("So are code blocks!")
19+
```
20+
21+
You can also format as **bold** and *italic* with Markdown!

0 commit comments

Comments
 (0)