je-editor 0.0.198__py3-none-any.whl → 0.0.199__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py +0 -26
- je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py +0 -8
- je_editor/utils/multi_language/english.py +0 -4
- je_editor/utils/multi_language/traditional_chinese.py +0 -4
- {je_editor-0.0.198.dist-info → je_editor-0.0.199.dist-info}/METADATA +1 -1
- {je_editor-0.0.198.dist-info → je_editor-0.0.199.dist-info}/RECORD +9 -9
- {je_editor-0.0.198.dist-info → je_editor-0.0.199.dist-info}/LICENSE +0 -0
- {je_editor-0.0.198.dist-info → je_editor-0.0.199.dist-info}/WHEEL +0 -0
- {je_editor-0.0.198.dist-info → je_editor-0.0.199.dist-info}/top_level.txt +0 -0
@@ -45,32 +45,6 @@ def set_help_menu(ui_we_want_to_set: EditorMain) -> None:
|
|
45
45
|
show_about
|
46
46
|
)
|
47
47
|
ui_we_want_to_set.help_menu.addAction(ui_we_want_to_set.help_menu.help_about_action)
|
48
|
-
# Open Doc
|
49
|
-
ui_we_want_to_set.help_menu.open_bing_gpt_menu_doc_action = QAction(
|
50
|
-
language_wrapper.language_word_dict.get("help_menu_open_re_edge_gpt_doc_label"))
|
51
|
-
ui_we_want_to_set.help_menu.open_bing_gpt_menu_doc_action.triggered.connect(
|
52
|
-
lambda: open_web_browser(
|
53
|
-
ui_we_want_to_set,
|
54
|
-
"https://reedgegpt.readthedocs.io/en/latest/",
|
55
|
-
"ReEdgeGPT Doc"
|
56
|
-
)
|
57
|
-
)
|
58
|
-
ui_we_want_to_set.help_menu.addAction(
|
59
|
-
ui_we_want_to_set.help_menu.open_bing_gpt_menu_doc_action
|
60
|
-
)
|
61
|
-
# Open Github
|
62
|
-
ui_we_want_to_set.help_menu.open_re_edge_gpt_github_action = QAction(
|
63
|
-
language_wrapper.language_word_dict.get("help_menu_open_re_edge_gpt_github_label"))
|
64
|
-
ui_we_want_to_set.help_menu.open_re_edge_gpt_github_action.triggered.connect(
|
65
|
-
lambda: open_web_browser(
|
66
|
-
ui_we_want_to_set,
|
67
|
-
"https://github.com/Integration-Automation/ReEdgeGPT",
|
68
|
-
"ReEdgeGPT GitHub"
|
69
|
-
)
|
70
|
-
)
|
71
|
-
ui_we_want_to_set.help_menu.addAction(
|
72
|
-
ui_we_want_to_set.help_menu.open_re_edge_gpt_github_action
|
73
|
-
)
|
74
48
|
|
75
49
|
|
76
50
|
def open_web_browser(ui_we_want_to_set: EditorMain, url: str, tab_name: str):
|
@@ -7,7 +7,6 @@ from frontengine import FrontEngineMainUI
|
|
7
7
|
from je_editor.pyside_ui.browser.browser_widget import BrowserWidget
|
8
8
|
from je_editor.pyside_ui.main_ui.editor.editor_widget import EditorWidget
|
9
9
|
from je_editor.pyside_ui.main_ui.ipython_widget.rich_jupyter import IpythonWidget
|
10
|
-
|
11
10
|
from je_editor.utils.logging.loggin_instance import jeditor_logger
|
12
11
|
|
13
12
|
if TYPE_CHECKING:
|
@@ -56,13 +55,6 @@ def set_tab_menu(ui_we_want_to_set: EditorMain) -> None:
|
|
56
55
|
lambda: add_ipython_tab(ui_we_want_to_set)
|
57
56
|
)
|
58
57
|
ui_we_want_to_set.tab_menu.addAction(ui_we_want_to_set.tab_menu.add_ipython_action)
|
59
|
-
# ReEdgeGPT (Need fix it first)
|
60
|
-
# ui_we_want_to_set.tab_menu.add_re_edge_gpt_action = QAction(
|
61
|
-
# language_wrapper.language_word_dict.get("tab_menu_re_re_edge_gpt_tab_name"))
|
62
|
-
# ui_we_want_to_set.tab_menu.add_re_edge_gpt_action.triggered.connect(
|
63
|
-
# lambda: add_re_edge_gpt_tab(ui_we_want_to_set)
|
64
|
-
# )
|
65
|
-
# ui_we_want_to_set.tab_menu.addAction(ui_we_want_to_set.tab_menu.add_re_edge_gpt_action)
|
66
58
|
|
67
59
|
|
68
60
|
def add_editor_tab(ui_we_want_to_set: EditorMain):
|
@@ -5,7 +5,6 @@ english_word_dict = {
|
|
5
5
|
"tab_name_editor": "Editor",
|
6
6
|
"tab_name_web_browser": "Web Browser",
|
7
7
|
"tab_name_frontengine": "FrontEngine",
|
8
|
-
"tab_name_re_edge_gpt": "Re-EdgeGPT",
|
9
8
|
# Browser
|
10
9
|
"browser_download_detail": "Download Detail",
|
11
10
|
"browser_find_text": "Find Text",
|
@@ -53,8 +52,6 @@ english_word_dict = {
|
|
53
52
|
"help_menu_open_github_label": "GitHub",
|
54
53
|
"help_menu_open_doc_label": "Doc",
|
55
54
|
"help_menu_open_about_label": "About",
|
56
|
-
"help_menu_open_re_edge_gpt_doc_label": "Open ReEdgeGPT Doc",
|
57
|
-
"help_menu_open_re_edge_gpt_github_label": "Open ReEdgeGPT GitHub",
|
58
55
|
# Python Env Menu
|
59
56
|
"python_env_menu_label": "Python Env",
|
60
57
|
"python_env_menu_create_venv_label": "Create venv",
|
@@ -109,7 +106,6 @@ please make sure that the current encoding is consistent with the default encodi
|
|
109
106
|
"tab_menu_web_tab_name": "WEB Browser",
|
110
107
|
"tab_menu_stackoverflow_tab_name": "Stackoverflow",
|
111
108
|
"tab_menu_ipython_tab_name": "IPython(Jupyter)",
|
112
|
-
"tab_menu_re_re_edge_gpt_tab_name": "ReEdgeGPT",
|
113
109
|
# Text Menu
|
114
110
|
"text_menu_label": "Text",
|
115
111
|
"text_menu_label_font": "Font",
|
@@ -5,7 +5,6 @@ traditional_chinese_word_dict = {
|
|
5
5
|
"tab_name_editor": "編輯器",
|
6
6
|
"tab_name_web_browser": "網頁瀏覽器",
|
7
7
|
"tab_name_frontengine": "前景引擎",
|
8
|
-
"tab_name_re_edge_gpt": "Re-EdgeGPT",
|
9
8
|
# Browser
|
10
9
|
"browser_download_detail": "下載資訊",
|
11
10
|
"browser_find_text": "搜尋文字",
|
@@ -53,8 +52,6 @@ traditional_chinese_word_dict = {
|
|
53
52
|
"help_menu_open_github_label": "GitHub",
|
54
53
|
"help_menu_open_doc_label": "文件",
|
55
54
|
"help_menu_open_about_label": "關於",
|
56
|
-
"help_menu_open_re_edge_gpt_doc_label": "開啟 ReEdgeGPT 文件",
|
57
|
-
"help_menu_open_re_edge_gpt_github_label": "開啟 ReEdgeGPT GitHub",
|
58
55
|
# Python Env Menu
|
59
56
|
"python_env_menu_label": "Python 環境",
|
60
57
|
"python_env_menu_create_venv_label": "建立 venv 虛擬環境",
|
@@ -107,7 +104,6 @@ traditional_chinese_word_dict = {
|
|
107
104
|
"tab_menu_web_tab_name": "瀏覽器",
|
108
105
|
"tab_menu_stackoverflow_tab_name": "Stackoverflow",
|
109
106
|
"tab_menu_ipython_tab_name": "IPython(Jupyter)",
|
110
|
-
"tab_menu_re_re_edge_gpt_tab_name": "ReEdgeGPT",
|
111
107
|
# Text Menu
|
112
108
|
"text_menu_label": "文字",
|
113
109
|
"text_menu_label_font": "字體",
|
@@ -52,7 +52,7 @@ je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py,sha256=IBRpoZxsyrb
|
|
52
52
|
je_editor/pyside_ui/main_ui/menu/file_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
53
|
je_editor/pyside_ui/main_ui/menu/file_menu/build_file_menu.py,sha256=YT6kvXShRbfM4Qo51VveO_IK8uDqlNrGwHZUiM6_Tes,6881
|
54
54
|
je_editor/pyside_ui/main_ui/menu/help_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
|
-
je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py,sha256=
|
55
|
+
je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py,sha256=iy1xDpV-u4DhZp8ZsetVKwHuJCctYgCWMpkIv12u3V0,2869
|
56
56
|
je_editor/pyside_ui/main_ui/menu/language_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
57
57
|
je_editor/pyside_ui/main_ui/menu/language_menu/build_language_server.py,sha256=23jKdAYxN65xJMVd5NbCwhIjwh2kfXVDszN1wmIs1A0,2333
|
58
58
|
je_editor/pyside_ui/main_ui/menu/python_env_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -67,7 +67,7 @@ je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/utils.py,sha256=zk5adQ7
|
|
67
67
|
je_editor/pyside_ui/main_ui/menu/style_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
68
|
je_editor/pyside_ui/main_ui/menu/style_menu/build_style_menu.py,sha256=OjfcjQ7fA1Z1rMwIS9oGkIkC-jy-e0jdGoYo1btTqUQ,1852
|
69
69
|
je_editor/pyside_ui/main_ui/menu/tab_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
|
-
je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py,sha256
|
70
|
+
je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py,sha256=-vi3E259R8c9RQPjudAr7SoJ_X2ocBHPEAlTeihPoG0,4877
|
71
71
|
je_editor/pyside_ui/main_ui/menu/text_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
72
72
|
je_editor/pyside_ui/main_ui/menu/text_menu/build_text_menu.py,sha256=k3pOpK4i8ccs3D8VIrNx8g3kUDp1fZdqv9H5uEvNl5c,3558
|
73
73
|
je_editor/pyside_ui/main_ui/save_settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -94,15 +94,15 @@ je_editor/utils/json_format/json_process.py,sha256=tszo48OnVivVkuuPrl-FtGaaq-1YO
|
|
94
94
|
je_editor/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
95
|
je_editor/utils/logging/loggin_instance.py,sha256=OFdWgra201B4f1vDM35M9L-47DK-8j-5HQEAq_ySSKM,841
|
96
96
|
je_editor/utils/multi_language/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
|
-
je_editor/utils/multi_language/english.py,sha256=
|
97
|
+
je_editor/utils/multi_language/english.py,sha256=gR0utQPeyNhcpRNaaaa05mFC1ErGWPvC4nEQzAL_3D8,5642
|
98
98
|
je_editor/utils/multi_language/multi_language_wrapper.py,sha256=_MtYrE51poQ1p_iWvT2eg_604uj6IsiBgGpifWpYLGc,1050
|
99
|
-
je_editor/utils/multi_language/traditional_chinese.py,sha256=
|
99
|
+
je_editor/utils/multi_language/traditional_chinese.py,sha256=Vf6tpdE0Rb8hiVBGHLpSioi4QrRXSsP5-iktePZGk0w,5668
|
100
100
|
je_editor/utils/redirect_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
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.199.dist-info/LICENSE,sha256=KMhUHh6pnIUvmXDW-49L_Sz63bqkOlPDqsecaqKiitU,1091
|
105
|
+
je_editor-0.0.199.dist-info/METADATA,sha256=mGsUAQcB2KS_CIkVErNdooQbut_M4J3XGj8Guz4CSyY,3307
|
106
|
+
je_editor-0.0.199.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
107
|
+
je_editor-0.0.199.dist-info/top_level.txt,sha256=_9YA7BgxpkmdLs-5V_UQILxClcMRgPyG1a3qaE-Bkcs,10
|
108
|
+
je_editor-0.0.199.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|