je-editor 0.0.212__py3-none-any.whl → 0.0.213__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 +2 -2
- je_editor/pyside_ui/code/shell_process/shell_exec.py +2 -2
- je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py +2 -2
- je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py +2 -2
- je_editor/utils/multi_language/english.py +1 -1
- je_editor/utils/multi_language/traditional_chinese.py +1 -1
- {je_editor-0.0.212.dist-info → je_editor-0.0.213.dist-info}/METADATA +1 -1
- {je_editor-0.0.212.dist-info → je_editor-0.0.213.dist-info}/RECORD +11 -11
- {je_editor-0.0.212.dist-info → je_editor-0.0.213.dist-info}/WHEEL +0 -0
- {je_editor-0.0.212.dist-info → je_editor-0.0.213.dist-info}/licenses/LICENSE +0 -0
- {je_editor-0.0.212.dist-info → je_editor-0.0.213.dist-info}/top_level.txt +0 -0
@@ -197,7 +197,7 @@ class ExecManager(object):
|
|
197
197
|
def read_program_output_from_process(self) -> None:
|
198
198
|
jeditor_logger.info("ExecManager read_program_output_from_process")
|
199
199
|
while self.still_run_program:
|
200
|
-
program_output_data: str = self.process.stdout.
|
200
|
+
program_output_data: str = self.process.stdout.readline(
|
201
201
|
self.program_buffer).decode(self.program_encoding, "replace")
|
202
202
|
if self.process:
|
203
203
|
self.process.stdout.flush()
|
@@ -206,7 +206,7 @@ class ExecManager(object):
|
|
206
206
|
def read_program_error_output_from_process(self) -> None:
|
207
207
|
jeditor_logger.info("ExecManager read_program_error_output_from_process")
|
208
208
|
while self.still_run_program:
|
209
|
-
program_error_output_data: str = self.process.stderr.
|
209
|
+
program_error_output_data: str = self.process.stderr.readline(
|
210
210
|
self.program_buffer).decode(self.program_encoding, "replace")
|
211
211
|
if self.process:
|
212
212
|
self.process.stderr.flush()
|
@@ -179,7 +179,7 @@ class ShellManager(object):
|
|
179
179
|
def read_program_output_from_process(self) -> None:
|
180
180
|
jeditor_logger.info("ShellManager read_program_output_from_process")
|
181
181
|
while self.still_run_shell:
|
182
|
-
program_output_data = self.process.stdout.
|
182
|
+
program_output_data = self.process.stdout.readline(
|
183
183
|
self.program_buffer) \
|
184
184
|
.decode(self.program_encoding, "replace")
|
185
185
|
if self.process:
|
@@ -189,7 +189,7 @@ class ShellManager(object):
|
|
189
189
|
def read_program_error_output_from_process(self) -> None:
|
190
190
|
jeditor_logger.info("ShellManager read_program_error_output_from_process")
|
191
191
|
while self.still_run_shell:
|
192
|
-
program_error_output_data = self.process.stderr.
|
192
|
+
program_error_output_data = self.process.stderr.readline(
|
193
193
|
self.program_buffer) \
|
194
194
|
.decode(self.program_encoding, "replace")
|
195
195
|
if self.process:
|
@@ -10,8 +10,8 @@ from frontengine import FrontEngineMainUI
|
|
10
10
|
|
11
11
|
from je_editor.pyside_ui.browser.browser_widget import BrowserWidget
|
12
12
|
from je_editor.pyside_ui.code.variable_inspector.inspector_gui import VariableInspector
|
13
|
-
from je_editor.pyside_ui.
|
14
|
-
from je_editor.pyside_ui.
|
13
|
+
from je_editor.pyside_ui.git_feature.git_branch_tree_widget import GitTreeViewGUI
|
14
|
+
from je_editor.pyside_ui.git_feature.git_client_gui import Gitgui
|
15
15
|
from je_editor.pyside_ui.main_ui.ai_widget.chat_ui import ChatUI
|
16
16
|
from je_editor.pyside_ui.main_ui.console_widget.console_gui import ConsoleWidget
|
17
17
|
from je_editor.pyside_ui.main_ui.dock.destroy_dock import DestroyDock
|
@@ -6,8 +6,8 @@ from frontengine import FrontEngineMainUI
|
|
6
6
|
|
7
7
|
from je_editor.pyside_ui.browser.browser_widget import BrowserWidget
|
8
8
|
from je_editor.pyside_ui.code.variable_inspector.inspector_gui import VariableInspector
|
9
|
-
from je_editor.pyside_ui.
|
10
|
-
from je_editor.pyside_ui.
|
9
|
+
from je_editor.pyside_ui.git_feature.git_branch_tree_widget import GitTreeViewGUI
|
10
|
+
from je_editor.pyside_ui.git_feature.git_client_gui import Gitgui
|
11
11
|
from je_editor.pyside_ui.main_ui.ai_widget.chat_ui import ChatUI
|
12
12
|
from je_editor.pyside_ui.main_ui.console_widget.console_gui import ConsoleWidget
|
13
13
|
from je_editor.pyside_ui.main_ui.editor.editor_widget import EditorWidget
|
@@ -169,7 +169,7 @@ please make sure that the current encoding is consistent with the default encodi
|
|
169
169
|
"err_read_diff": "Failed to read diff",
|
170
170
|
"err_stage": "Stage failed",
|
171
171
|
"info_stage_title": "Stage",
|
172
|
-
"info_stage_msg": "Executed
|
172
|
+
"info_stage_msg": "Executed git_feature add -A",
|
173
173
|
"err_commit": "Commit failed",
|
174
174
|
"info_commit_title": "Commit",
|
175
175
|
"info_commit_msg": "Commit created",
|
@@ -163,7 +163,7 @@ traditional_chinese_word_dict = {
|
|
163
163
|
"err_read_diff": "讀取差異失敗",
|
164
164
|
"err_stage": "暫存失敗",
|
165
165
|
"info_stage_title": "暫存",
|
166
|
-
"info_stage_msg": "已執行
|
166
|
+
"info_stage_msg": "已執行 git_feature add -A",
|
167
167
|
"err_commit": "提交失敗",
|
168
168
|
"info_commit_title": "提交",
|
169
169
|
"info_commit_msg": "已建立提交",
|
@@ -19,11 +19,11 @@ je_editor/pyside_ui/code/auto_save/auto_save_thread.py,sha256=V_A8_4JZdHdF9e2E_r
|
|
19
19
|
je_editor/pyside_ui/code/code_format/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
je_editor/pyside_ui/code/code_format/pep8_format.py,sha256=zrCkUdz2SG4bnMSkXfccvpHAmUOxXLedSBxL_nkdaoE,3574
|
21
21
|
je_editor/pyside_ui/code/code_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
-
je_editor/pyside_ui/code/code_process/code_exec.py,sha256=
|
22
|
+
je_editor/pyside_ui/code/code_process/code_exec.py,sha256=GVoA3hZcEHSKvwDkO52DBqd8mghtySIgO1z80cIaNyw,9849
|
23
23
|
je_editor/pyside_ui/code/plaintext_code_edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
24
|
je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py,sha256=lcwmBemFenH-uDGe6fo70MS47emzPFgy9XL7cipwryY,14249
|
25
25
|
je_editor/pyside_ui/code/shell_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
je_editor/pyside_ui/code/shell_process/shell_exec.py,sha256=
|
26
|
+
je_editor/pyside_ui/code/shell_process/shell_exec.py,sha256=_ILl3AhhvQlsvNbCpraRpLY9ARAlRyExpwfAROlcbls,8749
|
27
27
|
je_editor/pyside_ui/code/syntax/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
28
|
je_editor/pyside_ui/code/syntax/python_syntax.py,sha256=9rK7_DYAANgf28PUdVl9xs42b76Re_SWwIpijEGBuzQ,3054
|
29
29
|
je_editor/pyside_ui/code/syntax/syntax_setting.py,sha256=oaLRF_83Oa6bcAorf7AlZG0Mrt4FmsK7b4aA-LS_bRo,2284
|
@@ -57,7 +57,7 @@ je_editor/pyside_ui/main_ui/ipython_widget/rich_jupyter.py,sha256=LKbMbgpstsk_Ei
|
|
57
57
|
je_editor/pyside_ui/main_ui/menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
58
|
je_editor/pyside_ui/main_ui/menu/set_menu_bar.py,sha256=I12DXLyRO4cKe17fQY-QDazKEIh9W36LNV1aKUw47MU,1823
|
59
59
|
je_editor/pyside_ui/main_ui/menu/dock_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
|
-
je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py,sha256=
|
60
|
+
je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py,sha256=vTvllSXb7K5qin8Y4kn1-69TIpI6K36d-g4cYDRgq38,8412
|
61
61
|
je_editor/pyside_ui/main_ui/menu/file_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
62
|
je_editor/pyside_ui/main_ui/menu/file_menu/build_file_menu.py,sha256=YT6kvXShRbfM4Qo51VveO_IK8uDqlNrGwHZUiM6_Tes,6881
|
63
63
|
je_editor/pyside_ui/main_ui/menu/help_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -76,7 +76,7 @@ je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/utils.py,sha256=zk5adQ7
|
|
76
76
|
je_editor/pyside_ui/main_ui/menu/style_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
77
|
je_editor/pyside_ui/main_ui/menu/style_menu/build_style_menu.py,sha256=OjfcjQ7fA1Z1rMwIS9oGkIkC-jy-e0jdGoYo1btTqUQ,1852
|
78
78
|
je_editor/pyside_ui/main_ui/menu/tab_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
79
|
-
je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py,sha256=
|
79
|
+
je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py,sha256=_MtYkue_DpmYGu8guZpeWQPDXrV6ZZHGC0pFlmb10c8,9248
|
80
80
|
je_editor/pyside_ui/main_ui/menu/text_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
81
81
|
je_editor/pyside_ui/main_ui/menu/text_menu/build_text_menu.py,sha256=k3pOpK4i8ccs3D8VIrNx8g3kUDp1fZdqv9H5uEvNl5c,3558
|
82
82
|
je_editor/pyside_ui/main_ui/save_settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -103,15 +103,15 @@ je_editor/utils/json_format/json_process.py,sha256=tszo48OnVivVkuuPrl-FtGaaq-1YO
|
|
103
103
|
je_editor/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
104
104
|
je_editor/utils/logging/loggin_instance.py,sha256=5MUuLesU_WpR_Iu1uoAATi5Bj2yMYkimZrMfiXbk5pI,881
|
105
105
|
je_editor/utils/multi_language/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
|
-
je_editor/utils/multi_language/english.py,sha256=
|
106
|
+
je_editor/utils/multi_language/english.py,sha256=pIOHvPt9QGGSFayPnPc4Rza4nEhKBI3ROw-UNqoz8SQ,9975
|
107
107
|
je_editor/utils/multi_language/multi_language_wrapper.py,sha256=_MtYrE51poQ1p_iWvT2eg_604uj6IsiBgGpifWpYLGc,1050
|
108
|
-
je_editor/utils/multi_language/traditional_chinese.py,sha256=
|
108
|
+
je_editor/utils/multi_language/traditional_chinese.py,sha256=fqWHnCPT0AywrMGPxQligkpyE303SsaXACqJ7KR1_MM,10053
|
109
109
|
je_editor/utils/redirect_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
110
110
|
je_editor/utils/redirect_manager/redirect_manager_class.py,sha256=1gICetKpohBvmxmVhnqeCRq7AQS2YWK4AURmrqnVYVw,2277
|
111
111
|
je_editor/utils/venv_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
112
112
|
je_editor/utils/venv_check/check_venv.py,sha256=oCrMdue4NYUUGrVifh_iHFwIgxVx9azYN4jz3Xiulgg,999
|
113
|
-
je_editor-0.0.
|
114
|
-
je_editor-0.0.
|
115
|
-
je_editor-0.0.
|
116
|
-
je_editor-0.0.
|
117
|
-
je_editor-0.0.
|
113
|
+
je_editor-0.0.213.dist-info/licenses/LICENSE,sha256=KMhUHh6pnIUvmXDW-49L_Sz63bqkOlPDqsecaqKiitU,1091
|
114
|
+
je_editor-0.0.213.dist-info/METADATA,sha256=cDXDzy73sNRSXxGWEpKpwo17PfFyC8krONu-_FhwobQ,3446
|
115
|
+
je_editor-0.0.213.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
116
|
+
je_editor-0.0.213.dist-info/top_level.txt,sha256=_9YA7BgxpkmdLs-5V_UQILxClcMRgPyG1a3qaE-Bkcs,10
|
117
|
+
je_editor-0.0.213.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|