Skip to content

Commit c3a9b29

Browse files
authored
Merge pull request #166 from Integration-Automation/dev
Dev
2 parents d20782e + bbb8dc3 commit c3a9b29

File tree

8 files changed

+19
-18
lines changed

8 files changed

+19
-18
lines changed

.github/workflows/dev_python3_12.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: JE_Editor Dev Python3.9
1+
name: JE_Editor Dev Python3.12
22

33
on:
44
push:

.github/workflows/stable_python3_12.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: JE_Editor Stable Python3.9
1+
name: JE_Editor Stable Python3.12
22

33
on:
44
push:

.idea/je_editor.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_editor_dev"
9-
version = "0.0.230"
9+
version = "0.0.231"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]

je_editor/pyside_ui/main_ui/main_editor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ def __init__(self, debug_mode: bool = False, show_system_tray_ray: bool = False)
112112
self.tab_widget.addTab(
113113
BrowserWidget(start_url="https://stackoverflow.com/", search_prefix="https://stackoverflow.com/search?q="),
114114
language_wrapper.language_word_dict.get("tab_menu_stackoverflow_tab_name"))
115+
115116
for widget_name, widget in EDITOR_EXTEND_TAB.items():
116117
self.tab_widget.addTab(widget(), widget_name)
117118
self.setCentralWidget(self.tab_widget)

je_editor/utils/exception/exception_tags.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,32 @@
55
"""
66
init exception
77
"""
8-
je_editor_init_error: str = "JEditor can't init"
9-
je_editor_init_exec_manager_exception: str = "JEditor can't init program manager"
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"
1010
"""
1111
exec exception
1212
"""
13-
je_editor_exec_error: str = "JEditor exec error"
13+
je_editor_exec_error: str = "JEditor execution error"
1414
file_not_fond_error: str = "File not found"
1515
compiler_not_found_error: str = "Compiler not found"
1616
"""
1717
shell exception
1818
"""
19-
je_editor_shell_error: str = "JEditor run on shell error"
19+
je_editor_shell_error: str = "JEditor shell execution error"
2020
"""
2121
file exception
2222
"""
23-
je_editor_save_file_error: str = "JEditor save file error"
24-
je_editor_open_file_error: str = "JEditor open file error"
23+
je_editor_save_file_error: str = "JEditor failed to save file"
24+
je_editor_open_file_error: str = "JEditor failed to open file"
2525
"""
2626
json exception
2727
"""
28-
cant_reformat_json_error: str = "Can't reformat json is type right?"
29-
wrong_json_data_error: str = "Can't parser json"
30-
cant_find_json_error: str = "cant find json file"
31-
cant_save_json_error: str = "cant save json file"
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"
3232
"""
3333
content data error
3434
"""
35-
content_set_compiler_error: str = "When set compiler using content make an error"
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"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_editor"
9-
version = "0.0.209"
9+
version = "0.0.210"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]

0 commit comments

Comments
 (0)