je-editor 0.0.209__py3-none-any.whl → 0.0.211__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/main_ui/main_editor.py +1 -0
- je_editor/utils/exception/exception_tags.py +12 -12
- {je_editor-0.0.209.dist-info → je_editor-0.0.211.dist-info}/METADATA +4 -2
- {je_editor-0.0.209.dist-info → je_editor-0.0.211.dist-info}/RECORD +7 -7
- {je_editor-0.0.209.dist-info → je_editor-0.0.211.dist-info}/WHEEL +0 -0
- {je_editor-0.0.209.dist-info → je_editor-0.0.211.dist-info}/licenses/LICENSE +0 -0
- {je_editor-0.0.209.dist-info → je_editor-0.0.211.dist-info}/top_level.txt +0 -0
@@ -112,6 +112,7 @@ class EditorMain(QMainWindow, QtStyleTools):
|
|
112
112
|
self.tab_widget.addTab(
|
113
113
|
BrowserWidget(start_url="https://stackoverflow.com/", search_prefix="https://stackoverflow.com/search?q="),
|
114
114
|
language_wrapper.language_word_dict.get("tab_menu_stackoverflow_tab_name"))
|
115
|
+
|
115
116
|
for widget_name, widget in EDITOR_EXTEND_TAB.items():
|
116
117
|
self.tab_widget.addTab(widget(), widget_name)
|
117
118
|
self.setCentralWidget(self.tab_widget)
|
@@ -5,32 +5,32 @@ je_editor_error: str = "JEditor error"
|
|
5
5
|
"""
|
6
6
|
init exception
|
7
7
|
"""
|
8
|
-
je_editor_init_error: str = "JEditor
|
9
|
-
je_editor_init_exec_manager_exception: str = "JEditor
|
8
|
+
je_editor_init_error: str = "JEditor failed to initialize"
|
9
|
+
je_editor_init_exec_manager_exception: str = "JEditor failed to initialize the program manager"
|
10
10
|
"""
|
11
11
|
exec exception
|
12
12
|
"""
|
13
|
-
je_editor_exec_error: str = "JEditor
|
13
|
+
je_editor_exec_error: str = "JEditor execution error"
|
14
14
|
file_not_fond_error: str = "File not found"
|
15
15
|
compiler_not_found_error: str = "Compiler not found"
|
16
16
|
"""
|
17
17
|
shell exception
|
18
18
|
"""
|
19
|
-
je_editor_shell_error: str = "JEditor
|
19
|
+
je_editor_shell_error: str = "JEditor shell execution error"
|
20
20
|
"""
|
21
21
|
file exception
|
22
22
|
"""
|
23
|
-
je_editor_save_file_error: str = "JEditor save file
|
24
|
-
je_editor_open_file_error: str = "JEditor open file
|
23
|
+
je_editor_save_file_error: str = "JEditor failed to save file"
|
24
|
+
je_editor_open_file_error: str = "JEditor failed to open file"
|
25
25
|
"""
|
26
26
|
json exception
|
27
27
|
"""
|
28
|
-
cant_reformat_json_error: str = "
|
29
|
-
wrong_json_data_error: str = "
|
30
|
-
cant_find_json_error: str = "
|
31
|
-
cant_save_json_error: str = "
|
28
|
+
cant_reformat_json_error: str = "Cannot reformat JSON: is the type correct?"
|
29
|
+
wrong_json_data_error: str = "Failed to parse JSON"
|
30
|
+
cant_find_json_error: str = "Can't find JSON file"
|
31
|
+
cant_save_json_error: str = "Can't save JSON file"
|
32
32
|
"""
|
33
33
|
content data error
|
34
34
|
"""
|
35
|
-
content_set_compiler_error: str = "
|
36
|
-
je_editor_content_file_error: str = "JEditor content file error"
|
35
|
+
content_set_compiler_error: str = "Error setting compiler using content"
|
36
|
+
je_editor_content_file_error: str = "JEditor content file error"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: je_editor
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.211
|
4
4
|
Summary: JEditor is basic but powerful editor include GPT
|
5
5
|
Author-email: JE-Chen <jechenmailman@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/JE-Chen/je_editor
|
@@ -16,7 +16,7 @@ Classifier: Operating System :: OS Independent
|
|
16
16
|
Requires-Python: >=3.10
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
License-File: LICENSE
|
19
|
-
Requires-Dist: PySide6==6.9.
|
19
|
+
Requires-Dist: PySide6==6.9.2
|
20
20
|
Requires-Dist: qt-material
|
21
21
|
Requires-Dist: yapf
|
22
22
|
Requires-Dist: frontengine
|
@@ -26,6 +26,8 @@ Requires-Dist: qtconsole
|
|
26
26
|
Requires-Dist: langchain_openai
|
27
27
|
Requires-Dist: langchain
|
28
28
|
Requires-Dist: pydantic
|
29
|
+
Requires-Dist: watchdog
|
30
|
+
Requires-Dist: ruff
|
29
31
|
Dynamic: license-file
|
30
32
|
|
31
33
|
# je_editor
|
@@ -36,7 +36,7 @@ je_editor/pyside_ui/dialog/search_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
36
36
|
je_editor/pyside_ui/dialog/search_ui/search_error_box.py,sha256=jSa423cQW_xQ2WAj46CCWPsCP0Gy7g-UDe5o8LQyKQk,1190
|
37
37
|
je_editor/pyside_ui/dialog/search_ui/search_text_box.py,sha256=ul-98FVByq_TNkkLZcBSF4VSwIQNBBj-4e6jYlh6YEA,1229
|
38
38
|
je_editor/pyside_ui/main_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
39
|
-
je_editor/pyside_ui/main_ui/main_editor.py,sha256=
|
39
|
+
je_editor/pyside_ui/main_ui/main_editor.py,sha256=jS18_PBEWcXQh8A3lsN_Z9qRjLbwmVx1GcF5YMBpHoU,11077
|
40
40
|
je_editor/pyside_ui/main_ui/ai_widget/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
41
41
|
je_editor/pyside_ui/main_ui/ai_widget/ai_config.py,sha256=Uc9UkrIeALqjmZCF5ukXtSgU1EB4xa5223gk3CfYXX4,459
|
42
42
|
je_editor/pyside_ui/main_ui/ai_widget/ask_thread.py,sha256=ma5Cnwlr0RbU-sytmodcYabWueyGE8DKKISZ_0zf3Eo,571
|
@@ -87,7 +87,7 @@ je_editor/utils/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
87
87
|
je_editor/utils/encodings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
88
88
|
je_editor/utils/encodings/python_encodings.py,sha256=Nn_GsBZcPHcY5djoL2ki5eriKUpCI0ZgZ6XKgnEo1YI,1613
|
89
89
|
je_editor/utils/exception/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
90
|
-
je_editor/utils/exception/exception_tags.py,sha256=
|
90
|
+
je_editor/utils/exception/exception_tags.py,sha256=KjkbbqrtIuNn07657AOVEpX0RZlOpTUFxKPiHld3xgM,1104
|
91
91
|
je_editor/utils/exception/exceptions.py,sha256=4e2ivqFWgBq4L_8QgRjd79xdOAgR_tyW_hpBlQeePpw,506
|
92
92
|
je_editor/utils/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
93
93
|
je_editor/utils/file/open/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
@@ -108,8 +108,8 @@ je_editor/utils/redirect_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
108
108
|
je_editor/utils/redirect_manager/redirect_manager_class.py,sha256=1gICetKpohBvmxmVhnqeCRq7AQS2YWK4AURmrqnVYVw,2277
|
109
109
|
je_editor/utils/venv_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
110
110
|
je_editor/utils/venv_check/check_venv.py,sha256=oCrMdue4NYUUGrVifh_iHFwIgxVx9azYN4jz3Xiulgg,999
|
111
|
-
je_editor-0.0.
|
112
|
-
je_editor-0.0.
|
113
|
-
je_editor-0.0.
|
114
|
-
je_editor-0.0.
|
115
|
-
je_editor-0.0.
|
111
|
+
je_editor-0.0.211.dist-info/licenses/LICENSE,sha256=KMhUHh6pnIUvmXDW-49L_Sz63bqkOlPDqsecaqKiitU,1091
|
112
|
+
je_editor-0.0.211.dist-info/METADATA,sha256=Y-A1780nJ8XSfsrXibx-e_iY_1kYUNFc6HucoektBF0,3446
|
113
|
+
je_editor-0.0.211.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
114
|
+
je_editor-0.0.211.dist-info/top_level.txt,sha256=_9YA7BgxpkmdLs-5V_UQILxClcMRgPyG1a3qaE-Bkcs,10
|
115
|
+
je_editor-0.0.211.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|