je-editor 0.0.191__py3-none-any.whl → 0.0.193__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- je_editor/pyside_ui/code/code_process/code_exec.py +1 -1
- je_editor/pyside_ui/code/shell_process/shell_exec.py +1 -1
- je_editor/pyside_ui/main_ui/editor/editor_widget.py +3 -1
- je_editor/pyside_ui/main_ui/main_editor.py +2 -2
- {je_editor-0.0.191.dist-info → je_editor-0.0.193.dist-info}/METADATA +2 -2
- {je_editor-0.0.191.dist-info → je_editor-0.0.193.dist-info}/RECORD +9 -9
- {je_editor-0.0.191.dist-info → je_editor-0.0.193.dist-info}/LICENSE +0 -0
- {je_editor-0.0.191.dist-info → je_editor-0.0.193.dist-info}/WHEEL +0 -0
- {je_editor-0.0.191.dist-info → je_editor-0.0.193.dist-info}/top_level.txt +0 -0
@@ -131,7 +131,7 @@ class ExecManager(object):
|
|
131
131
|
# start tkinter_ui update
|
132
132
|
# start timer
|
133
133
|
self.timer = QTimer(self.main_window)
|
134
|
-
self.timer.setInterval(
|
134
|
+
self.timer.setInterval(50)
|
135
135
|
self.timer.timeout.connect(self.pull_text)
|
136
136
|
self.timer.start()
|
137
137
|
except Exception as error:
|
@@ -112,7 +112,7 @@ class ShellManager(object):
|
|
112
112
|
self.read_program_error_output_from_thread.start()
|
113
113
|
# start timer
|
114
114
|
self.timer = QTimer(self.main_window)
|
115
|
-
self.timer.setInterval(
|
115
|
+
self.timer.setInterval(50)
|
116
116
|
self.timer.timeout.connect(self.pull_text)
|
117
117
|
self.timer.start()
|
118
118
|
except Exception as error:
|
@@ -108,7 +108,7 @@ class EditorWidget(QWidget):
|
|
108
108
|
self.grid_layout.addWidget(self.full_splitter)
|
109
109
|
# Check format time
|
110
110
|
self.check_format_timer = QTimer()
|
111
|
-
self.check_format_timer.setInterval(
|
111
|
+
self.check_format_timer.setInterval(50)
|
112
112
|
self.check_format_timer.timeout.connect(self.check_file_format)
|
113
113
|
self.check_format_timer.start()
|
114
114
|
|
@@ -159,6 +159,8 @@ class EditorWidget(QWidget):
|
|
159
159
|
file_content
|
160
160
|
)
|
161
161
|
self.current_file = file
|
162
|
+
self.code_edit.current_file = file
|
163
|
+
self.code_edit.reset_highlighter()
|
162
164
|
user_setting_dict.update({"last_file": str(self.current_file)})
|
163
165
|
if self.current_file is not None and self.code_save_thread is None:
|
164
166
|
init_new_auto_save_thread(self.current_file, self)
|
@@ -79,7 +79,7 @@ class EditorMain(QMainWindow, QtStyleTools):
|
|
79
79
|
self.tab_widget.tabCloseRequested.connect(self.close_tab)
|
80
80
|
# Timer to redirect error or message
|
81
81
|
self.redirect_timer = QTimer(self)
|
82
|
-
self.redirect_timer.setInterval(
|
82
|
+
self.redirect_timer.setInterval(50)
|
83
83
|
self.redirect_timer.start()
|
84
84
|
self.setWindowTitle(language_wrapper.language_word_dict.get("application_name"))
|
85
85
|
self.setToolTip(language_wrapper.language_word_dict.get("application_name"))
|
@@ -100,7 +100,7 @@ class EditorMain(QMainWindow, QtStyleTools):
|
|
100
100
|
redirect_manager_instance.set_redirect()
|
101
101
|
# Timer to redirect error or message
|
102
102
|
self.redirect_timer = QTimer(self)
|
103
|
-
self.redirect_timer.setInterval(
|
103
|
+
self.redirect_timer.setInterval(50)
|
104
104
|
self.redirect_timer.timeout.connect(self.redirect)
|
105
105
|
self.redirect_timer.start()
|
106
106
|
# TAB Add
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: je_editor
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.193
|
4
4
|
Summary: JEditor is basic but powerful editor include GPT
|
5
5
|
Author-email: JE-Chen <jechenmailman@gmail.com>
|
6
6
|
License: MIT
|
@@ -17,7 +17,7 @@ Classifier: Operating System :: OS Independent
|
|
17
17
|
Requires-Python: >=3.9
|
18
18
|
Description-Content-Type: text/markdown
|
19
19
|
License-File: LICENSE
|
20
|
-
Requires-Dist: PySide6==6.
|
20
|
+
Requires-Dist: PySide6==6.7.3
|
21
21
|
Requires-Dist: qt-material
|
22
22
|
Requires-Dist: yapf
|
23
23
|
Requires-Dist: frontengine
|
@@ -15,11 +15,11 @@ je_editor/pyside_ui/code/auto_save/auto_save_thread.py,sha256=Ls2jvz3H8Os5LgPhWB
|
|
15
15
|
je_editor/pyside_ui/code/code_format/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
je_editor/pyside_ui/code/code_format/pep8_format.py,sha256=zrCkUdz2SG4bnMSkXfccvpHAmUOxXLedSBxL_nkdaoE,3574
|
17
17
|
je_editor/pyside_ui/code/code_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
|
-
je_editor/pyside_ui/code/code_process/code_exec.py,sha256=
|
18
|
+
je_editor/pyside_ui/code/code_process/code_exec.py,sha256=5BQCmEx2ZgRQ7i9VkGLIxm_wvfkQOH9FGMNzZCK8HpE,9840
|
19
19
|
je_editor/pyside_ui/code/plaintext_code_edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py,sha256=lcwmBemFenH-uDGe6fo70MS47emzPFgy9XL7cipwryY,14249
|
21
21
|
je_editor/pyside_ui/code/shell_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
-
je_editor/pyside_ui/code/shell_process/shell_exec.py,sha256=
|
22
|
+
je_editor/pyside_ui/code/shell_process/shell_exec.py,sha256=WqFZFKgsdN6OVO_aIun9k9-xFTmBPc3GexJ-0iBGCsI,8730
|
23
23
|
je_editor/pyside_ui/code/syntax/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
24
|
je_editor/pyside_ui/code/syntax/python_syntax.py,sha256=iGXvecWuHcoRyrXZ8qkM1_yhwb9Gg8wSXN0guNLevZ4,3015
|
25
25
|
je_editor/pyside_ui/code/syntax/syntax_setting.py,sha256=oaLRF_83Oa6bcAorf7AlZG0Mrt4FmsK7b4aA-LS_bRo,2284
|
@@ -34,11 +34,11 @@ je_editor/pyside_ui/dialog/search_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
34
34
|
je_editor/pyside_ui/dialog/search_ui/search_error_box.py,sha256=GzMXMnIL1k8ZwG3A2a_oMgiUiXXqd7HKW45YlVlL_eo,1168
|
35
35
|
je_editor/pyside_ui/dialog/search_ui/search_text_box.py,sha256=H2MbC-RGpKg9TzjV4MZj7Bw7qs9a9E4cjA4GI5zsv4U,1154
|
36
36
|
je_editor/pyside_ui/main_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
-
je_editor/pyside_ui/main_ui/main_editor.py,sha256=
|
37
|
+
je_editor/pyside_ui/main_ui/main_editor.py,sha256=JwgAa-NOZzGb4tiAC5mZ-icgOmAWHTwusdSvB_qN_u4,11062
|
38
38
|
je_editor/pyside_ui/main_ui/dock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
39
|
je_editor/pyside_ui/main_ui/dock/destroy_dock.py,sha256=MTN45BykNm6FA4gMW7gI4Kr9orTdcxVTm7mch3DUhaw,604
|
40
40
|
je_editor/pyside_ui/main_ui/editor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
|
-
je_editor/pyside_ui/main_ui/editor/editor_widget.py,sha256=
|
41
|
+
je_editor/pyside_ui/main_ui/editor/editor_widget.py,sha256=GBCDOWXCBSmgIKriR9ilTKyWdmtT5EmZFgwusrYeW_4,9964
|
42
42
|
je_editor/pyside_ui/main_ui/editor/editor_widget_dock.py,sha256=6oDf0pKx0sThlk_Qz0gduPIpasPqib6OYnMnQ4FRXFo,1930
|
43
43
|
je_editor/pyside_ui/main_ui/editor/process_input.py,sha256=zj29E3He5_PD23HnIaDQ1vn3LWRECXTf8P7MWsX73k0,3401
|
44
44
|
je_editor/pyside_ui/main_ui/ipython_widget/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -101,8 +101,8 @@ je_editor/utils/redirect_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
101
101
|
je_editor/utils/redirect_manager/redirect_manager_class.py,sha256=RsLRbhBy_YyiwTN5g0YkoobI-BvSdZgX0Ot53nrHm7g,2174
|
102
102
|
je_editor/utils/venv_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
103
103
|
je_editor/utils/venv_check/check_venv.py,sha256=oCrMdue4NYUUGrVifh_iHFwIgxVx9azYN4jz3Xiulgg,999
|
104
|
-
je_editor-0.0.
|
105
|
-
je_editor-0.0.
|
106
|
-
je_editor-0.0.
|
107
|
-
je_editor-0.0.
|
108
|
-
je_editor-0.0.
|
104
|
+
je_editor-0.0.193.dist-info/LICENSE,sha256=KMhUHh6pnIUvmXDW-49L_Sz63bqkOlPDqsecaqKiitU,1091
|
105
|
+
je_editor-0.0.193.dist-info/METADATA,sha256=n5Iyn87LwBuD2MoEkdvaMFIjvCuVMnyyrEl1a-YeQno,3338
|
106
|
+
je_editor-0.0.193.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
107
|
+
je_editor-0.0.193.dist-info/top_level.txt,sha256=_9YA7BgxpkmdLs-5V_UQILxClcMRgPyG1a3qaE-Bkcs,10
|
108
|
+
je_editor-0.0.193.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|