We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4442cbc + edd2627 commit c8e37b0Copy full SHA for c8e37b0
8 files changed
Encryptext.pyw
encryptext_installer_v1.7.0_64bit.exe encryptext_installer_v1.7.1_64bit.exeencryptext_installer_v1.7.0_64bit.exe renamed to encryptext_installer_v1.7.1_64bit.exe
31.8 MB
encryptext_settings.json
@@ -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
@@ -0,0 +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
+&&&This is a completely new file.\n
installer_creator_windows.py
@@ -1,7 +1,7 @@
from os import system
import PyInstaller.__main__
-version = "1.7.0"
+version = "1.7.1"
# Creates an executable file
PyInstaller.__main__.run([
installer_windows.py
@@ -7,7 +7,7 @@
from string import ascii_letters, digits
import threading as t
print("\nStarting installer...")
print("Please wait...")
markdown_format_example.md
@@ -0,0 +1,21 @@
+# Markdown
+
+This is a Markdown file. You can format using regular Markdown syntax!
+1. Numbered list point one
+2. Point two
+You can also do bullet point lists:
+- Bulleted list point one
+- Point two
+## Code blocks
+Inline `code formatting` is possible!
+```
+print("So are code blocks!")
+You can also format as **bold** and *italic* with Markdown!
0 commit comments