je-editor 0.0.216__tar.gz → 0.0.218__tar.gz
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-0.0.216 → je_editor-0.0.218}/PKG-INFO +1 -1
- je_editor-0.0.218/je_editor/__init__.py +34 -0
- je_editor-0.0.218/je_editor/__main__.py +18 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/code_scan/watchdog_thread.py +1 -1
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/browser/browser_view.py +0 -3
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/git_ui/git_client_gui.py +2 -3
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/main_editor.py +1 -1
- je_editor-0.0.218/je_editor/start_editor.py +17 -0
- je_editor-0.0.218/je_editor/utils/logging/__init__.py +0 -0
- je_editor-0.0.218/je_editor/utils/multi_language/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/multi_language/english.py +1 -1
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/multi_language/traditional_chinese.py +1 -1
- je_editor-0.0.218/je_editor/utils/redirect_manager/__init__.py +0 -0
- je_editor-0.0.218/je_editor/utils/venv_check/__init__.py +0 -0
- {je_editor-0.0.216/je_editor → je_editor-0.0.218}/je_editor.egg-info/PKG-INFO +1 -1
- {je_editor-0.0.216/je_editor → je_editor-0.0.218}/je_editor.egg-info/SOURCES.txt +12 -5
- je_editor-0.0.218/je_editor.egg-info/top_level.txt +1 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/pyproject.toml +3 -4
- je_editor-0.0.216/je_editor/je_editor.egg-info/top_level.txt +0 -4
- {je_editor-0.0.216 → je_editor-0.0.218}/LICENSE +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/README.md +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/code_scan/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/code_scan/ruff_thread.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/code_scan/watchdog_implement.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui → je_editor-0.0.218/je_editor/git_client}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/git_client/commit_graph.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/git_client/git.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/git_client/git_cli.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/git_client/github.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/browser → je_editor-0.0.218/je_editor/pyside_ui}/__init__.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/code → je_editor-0.0.218/je_editor/pyside_ui/browser}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/browser/browser_download_window.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/browser/browser_serach_lineedit.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/browser/browser_widget.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/code/auto_save → je_editor-0.0.218/je_editor/pyside_ui/code}/__init__.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/code/code_format → je_editor-0.0.218/je_editor/pyside_ui/code/auto_save}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/auto_save/auto_save_manager.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/auto_save/auto_save_thread.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/code/code_process → je_editor-0.0.218/je_editor/pyside_ui/code/code_format}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/code_format/pep8_format.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/code/plaintext_code_edit → je_editor-0.0.218/je_editor/pyside_ui/code/code_process}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/code_process/code_exec.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/code/shell_process → je_editor-0.0.218/je_editor/pyside_ui/code/plaintext_code_edit}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/running_process_manager.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/code/syntax → je_editor-0.0.218/je_editor/pyside_ui/code/shell_process}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/shell_process/shell_exec.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/code/textedit_code_result → je_editor-0.0.218/je_editor/pyside_ui/code/syntax}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/syntax/python_syntax.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/syntax/syntax_setting.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/code/variable_inspector → je_editor-0.0.218/je_editor/pyside_ui/code/textedit_code_result}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/textedit_code_result/code_record.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/dialog → je_editor-0.0.218/je_editor/pyside_ui/code/variable_inspector}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/variable_inspector/inspector_gui.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/dialog/ai_dialog → je_editor-0.0.218/je_editor/pyside_ui/dialog}/__init__.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/dialog/file_dialog → je_editor-0.0.218/je_editor/pyside_ui/dialog/ai_dialog}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/ai_dialog/set_ai_dialog.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/dialog/search_ui → je_editor-0.0.218/je_editor/pyside_ui/dialog/file_dialog}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/file_dialog/create_file_dialog.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/file_dialog/open_file_dialog.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/file_dialog/save_file_dialog.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui → je_editor-0.0.218/je_editor/pyside_ui/dialog/search_ui}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/search_ui/search_error_box.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/search_ui/search_text_box.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/console_widget → je_editor-0.0.218/je_editor/pyside_ui/git_ui}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/git_ui/commit_table.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/git_ui/git_branch_tree_widget.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/git_ui/graph_view.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/dock → je_editor-0.0.218/je_editor/pyside_ui/main_ui}/__init__.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/editor → je_editor-0.0.218/je_editor/pyside_ui/main_ui/ai_widget}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/ai_widget/ai_config.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/ai_widget/ask_thread.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/ai_widget/chat_ui.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/ai_widget/langchain_interface.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/ipython_widget → je_editor-0.0.218/je_editor/pyside_ui/main_ui/console_widget}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/console_widget/console_gui.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/console_widget/qprocess_adapter.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/dock}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/dock/destroy_dock.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu/dock_menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/editor}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/editor/editor_widget.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/editor/editor_widget_dock.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/editor/process_input.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu/file_menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/ipython_widget}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/ipython_widget/rich_jupyter.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu/help_menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu}/__init__.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu/language_menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/check_style_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/check_style_menu/build_check_style_menu.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu/python_env_menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/dock_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu/run_menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/file_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/file_menu/build_file_menu.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/help_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu/style_menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/language_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/language_menu/build_language_server.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu/tab_menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/python_env_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/python_env_menu/build_venv_menu.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/menu/text_menu → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/run_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/run_menu/build_run_menu.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/save_settings → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_debug_menu.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_program_menu.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_shell_menu.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/utils.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/set_menu_bar.py +0 -0
- {je_editor-0.0.216/je_editor/pyside_ui/main_ui/system_tray → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/style_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/style_menu/build_style_menu.py +0 -0
- {je_editor-0.0.216/je_editor/utils/encodings → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/tab_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py +0 -0
- {je_editor-0.0.216/je_editor/utils/file → je_editor-0.0.218/je_editor/pyside_ui/main_ui/menu/text_menu}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/text_menu/build_text_menu.py +0 -0
- {je_editor-0.0.216/je_editor/utils/json → je_editor-0.0.218/je_editor/pyside_ui/main_ui/save_settings}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/save_settings/setting_utils.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/save_settings/user_color_setting_file.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/save_settings/user_setting_file.py +0 -0
- {je_editor-0.0.216/je_editor/utils/logging → je_editor-0.0.218/je_editor/pyside_ui/main_ui/system_tray}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/system_tray/extend_system_tray.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/__init__.py +0 -0
- {je_editor-0.0.216/je_editor/utils/multi_language → je_editor-0.0.218/je_editor/utils/encodings}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/encodings/python_encodings.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/exception/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/exception/exception_tags.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/exception/exceptions.py +0 -0
- {je_editor-0.0.216/je_editor/utils/redirect_manager → je_editor-0.0.218/je_editor/utils/file}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/file/open/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/file/open/open_file.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/file/save/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/file/save/save_file.py +0 -0
- {je_editor-0.0.216/je_editor/utils/venv_check → je_editor-0.0.218/je_editor/utils/json}/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/json/json_file.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/json_format/__init__.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/json_format/json_process.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/logging/loggin_instance.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/multi_language/multi_language_wrapper.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/redirect_manager/redirect_manager_class.py +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/venv_check/check_venv.py +0 -0
- {je_editor-0.0.216/je_editor → je_editor-0.0.218}/je_editor.egg-info/dependency_links.txt +0 -0
- {je_editor-0.0.216/je_editor → je_editor-0.0.218}/je_editor.egg-info/requires.txt +0 -0
- {je_editor-0.0.216 → je_editor-0.0.218}/setup.cfg +0 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
from je_editor.pyside_ui.browser.browser_widget import BrowserWidget
|
2
|
+
from je_editor.pyside_ui.code.code_process.code_exec import ExecManager
|
3
|
+
from je_editor.pyside_ui.code.shell_process.shell_exec import ShellManager
|
4
|
+
from je_editor.pyside_ui.code.syntax.python_syntax import PythonHighlighter
|
5
|
+
from je_editor.pyside_ui.code.syntax.syntax_setting import syntax_extend_setting_dict, syntax_rule_setting_dict
|
6
|
+
from je_editor.pyside_ui.main_ui.editor.editor_widget import EditorWidget
|
7
|
+
from je_editor.pyside_ui.main_ui.editor.editor_widget_dock import FullEditorWidget
|
8
|
+
from je_editor.pyside_ui.main_ui.main_editor import EDITOR_EXTEND_TAB
|
9
|
+
from je_editor.pyside_ui.main_ui.main_editor import EditorMain
|
10
|
+
from je_editor.pyside_ui.main_ui.save_settings.user_color_setting_file import user_setting_color_dict
|
11
|
+
from je_editor.pyside_ui.main_ui.save_settings.user_setting_file import user_setting_dict
|
12
|
+
from je_editor.start_editor import start_editor
|
13
|
+
from je_editor.utils.exception.exceptions import JEditorCantFindLanguageException
|
14
|
+
from je_editor.utils.exception.exceptions import JEditorContentFileException
|
15
|
+
from je_editor.utils.exception.exceptions import JEditorException
|
16
|
+
from je_editor.utils.exception.exceptions import JEditorExecException
|
17
|
+
from je_editor.utils.exception.exceptions import JEditorJsonException
|
18
|
+
from je_editor.utils.exception.exceptions import JEditorOpenFileException
|
19
|
+
from je_editor.utils.exception.exceptions import JEditorRunOnShellException
|
20
|
+
from je_editor.utils.exception.exceptions import JEditorSaveFileException
|
21
|
+
from je_editor.utils.multi_language.english import english_word_dict
|
22
|
+
from je_editor.utils.multi_language.multi_language_wrapper import language_wrapper
|
23
|
+
from je_editor.utils.multi_language.traditional_chinese import traditional_chinese_word_dict
|
24
|
+
|
25
|
+
__all__ = [
|
26
|
+
"start_editor", "EditorMain", "EDITOR_EXTEND_TAB",
|
27
|
+
"JEditorException", "JEditorExecException", "FullEditorWidget",
|
28
|
+
"JEditorRunOnShellException", "JEditorSaveFileException", "syntax_rule_setting_dict",
|
29
|
+
"JEditorOpenFileException", "JEditorContentFileException", "syntax_extend_setting_dict",
|
30
|
+
"JEditorCantFindLanguageException", "JEditorJsonException", "PythonHighlighter",
|
31
|
+
"user_setting_dict", "user_setting_color_dict", "EditorWidget", "BrowserWidget",
|
32
|
+
"ExecManager", "ShellManager", "traditional_chinese_word_dict", "english_word_dict",
|
33
|
+
"language_wrapper"
|
34
|
+
]
|
@@ -0,0 +1,18 @@
|
|
1
|
+
if __name__ == "__main__":
|
2
|
+
# argparse
|
3
|
+
import argparse
|
4
|
+
|
5
|
+
from je_editor.start_editor import start_editor
|
6
|
+
|
7
|
+
argparse_event_dict = {
|
8
|
+
"start": start_editor,
|
9
|
+
}
|
10
|
+
parser = argparse.ArgumentParser()
|
11
|
+
parser.add_argument("-s", "--start", action="store_true", help="start editor")
|
12
|
+
args = parser.parse_args()
|
13
|
+
args = vars(args)
|
14
|
+
for key, value in args.items():
|
15
|
+
if value is not None and key not in ["start"]:
|
16
|
+
argparse_event_dict.get(key)(value)
|
17
|
+
else:
|
18
|
+
argparse_event_dict.get(key)()
|
@@ -1,9 +1,8 @@
|
|
1
|
-
import sys
|
2
1
|
import traceback
|
3
2
|
|
4
3
|
from PySide6.QtGui import QTextOption
|
5
4
|
from PySide6.QtWidgets import QWidget, QLabel, QPushButton, QComboBox, QHBoxLayout, QListWidget, QPlainTextEdit, \
|
6
|
-
QSizePolicy, QSplitter, QLineEdit, QVBoxLayout, QMessageBox, QFileDialog,
|
5
|
+
QSizePolicy, QSplitter, QLineEdit, QVBoxLayout, QMessageBox, QFileDialog, QInputDialog
|
7
6
|
|
8
7
|
from je_editor.utils.multi_language.multi_language_wrapper import language_wrapper
|
9
8
|
from je_editor.git_client.git import Worker, GitService
|
@@ -186,7 +185,7 @@ class Gitgui(QWidget):
|
|
186
185
|
self._load_commits_async(branch)
|
187
186
|
self._info(
|
188
187
|
self.language_wrapper_get("info_checkout_title"),
|
189
|
-
f"{self.language_wrapper_get(
|
188
|
+
f"{self.language_wrapper_get('info_checkout_msg')} {branch}"
|
190
189
|
)
|
191
190
|
self.worker = Worker(self.git.checkout, branch)
|
192
191
|
self.worker.done.connect(after)
|
@@ -7,7 +7,7 @@ from typing import Dict, Type
|
|
7
7
|
import jedi.settings
|
8
8
|
from PySide6.QtCore import QTimer, QEvent
|
9
9
|
from PySide6.QtGui import QFontDatabase, QIcon, Qt, QTextCharFormat
|
10
|
-
from PySide6.QtWidgets import QMainWindow, QWidget, QTabWidget
|
10
|
+
from PySide6.QtWidgets import QMainWindow, QWidget, QTabWidget
|
11
11
|
from frontengine import FrontEngineMainUI
|
12
12
|
from qt_material import QtStyleTools
|
13
13
|
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import sys
|
2
|
+
|
3
|
+
from PySide6.QtCore import QCoreApplication
|
4
|
+
from PySide6.QtWidgets import QApplication
|
5
|
+
from qt_material import apply_stylesheet
|
6
|
+
|
7
|
+
from je_editor.pyside_ui.main_ui.main_editor import EditorMain
|
8
|
+
|
9
|
+
|
10
|
+
def start_editor(debug_mode: bool = False) -> None:
|
11
|
+
new_editor = QCoreApplication.instance()
|
12
|
+
if new_editor is None:
|
13
|
+
new_editor = QApplication(sys.argv)
|
14
|
+
window = EditorMain(debug_mode)
|
15
|
+
apply_stylesheet(new_editor, theme='dark_amber.xml')
|
16
|
+
window.showMaximized()
|
17
|
+
sys.exit(new_editor.exec())
|
File without changes
|
File without changes
|
@@ -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 add -A",
|
173
173
|
"err_commit": "Commit failed",
|
174
174
|
"info_commit_title": "Commit",
|
175
175
|
"info_commit_msg": "Commit created",
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/multi_language/traditional_chinese.py
RENAMED
@@ -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 add -A",
|
167
167
|
"err_commit": "提交失敗",
|
168
168
|
"info_commit_title": "提交",
|
169
169
|
"info_commit_msg": "已建立提交",
|
File without changes
|
File without changes
|
@@ -1,19 +1,23 @@
|
|
1
1
|
LICENSE
|
2
2
|
README.md
|
3
3
|
pyproject.toml
|
4
|
+
je_editor/__init__.py
|
5
|
+
je_editor/__main__.py
|
6
|
+
je_editor/start_editor.py
|
7
|
+
je_editor.egg-info/PKG-INFO
|
8
|
+
je_editor.egg-info/SOURCES.txt
|
9
|
+
je_editor.egg-info/dependency_links.txt
|
10
|
+
je_editor.egg-info/requires.txt
|
11
|
+
je_editor.egg-info/top_level.txt
|
4
12
|
je_editor/code_scan/__init__.py
|
5
13
|
je_editor/code_scan/ruff_thread.py
|
6
14
|
je_editor/code_scan/watchdog_implement.py
|
7
15
|
je_editor/code_scan/watchdog_thread.py
|
16
|
+
je_editor/git_client/__init__.py
|
8
17
|
je_editor/git_client/commit_graph.py
|
9
18
|
je_editor/git_client/git.py
|
10
19
|
je_editor/git_client/git_cli.py
|
11
20
|
je_editor/git_client/github.py
|
12
|
-
je_editor/je_editor.egg-info/PKG-INFO
|
13
|
-
je_editor/je_editor.egg-info/SOURCES.txt
|
14
|
-
je_editor/je_editor.egg-info/dependency_links.txt
|
15
|
-
je_editor/je_editor.egg-info/requires.txt
|
16
|
-
je_editor/je_editor.egg-info/top_level.txt
|
17
21
|
je_editor/pyside_ui/__init__.py
|
18
22
|
je_editor/pyside_ui/browser/__init__.py
|
19
23
|
je_editor/pyside_ui/browser/browser_download_window.py
|
@@ -50,12 +54,14 @@ je_editor/pyside_ui/dialog/file_dialog/save_file_dialog.py
|
|
50
54
|
je_editor/pyside_ui/dialog/search_ui/__init__.py
|
51
55
|
je_editor/pyside_ui/dialog/search_ui/search_error_box.py
|
52
56
|
je_editor/pyside_ui/dialog/search_ui/search_text_box.py
|
57
|
+
je_editor/pyside_ui/git_ui/__init__.py
|
53
58
|
je_editor/pyside_ui/git_ui/commit_table.py
|
54
59
|
je_editor/pyside_ui/git_ui/git_branch_tree_widget.py
|
55
60
|
je_editor/pyside_ui/git_ui/git_client_gui.py
|
56
61
|
je_editor/pyside_ui/git_ui/graph_view.py
|
57
62
|
je_editor/pyside_ui/main_ui/__init__.py
|
58
63
|
je_editor/pyside_ui/main_ui/main_editor.py
|
64
|
+
je_editor/pyside_ui/main_ui/ai_widget/__init__.py
|
59
65
|
je_editor/pyside_ui/main_ui/ai_widget/ai_config.py
|
60
66
|
je_editor/pyside_ui/main_ui/ai_widget/ask_thread.py
|
61
67
|
je_editor/pyside_ui/main_ui/ai_widget/chat_ui.py
|
@@ -73,6 +79,7 @@ je_editor/pyside_ui/main_ui/ipython_widget/__init__.py
|
|
73
79
|
je_editor/pyside_ui/main_ui/ipython_widget/rich_jupyter.py
|
74
80
|
je_editor/pyside_ui/main_ui/menu/__init__.py
|
75
81
|
je_editor/pyside_ui/main_ui/menu/set_menu_bar.py
|
82
|
+
je_editor/pyside_ui/main_ui/menu/check_style_menu/__init__.py
|
76
83
|
je_editor/pyside_ui/main_ui/menu/check_style_menu/build_check_style_menu.py
|
77
84
|
je_editor/pyside_ui/main_ui/menu/dock_menu/__init__.py
|
78
85
|
je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py
|
@@ -0,0 +1 @@
|
|
1
|
+
je_editor
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
6
6
|
|
7
7
|
[project]
|
8
8
|
name = "je_editor"
|
9
|
-
version = "0.0.
|
9
|
+
version = "0.0.218"
|
10
10
|
authors = [
|
11
11
|
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
|
12
12
|
]
|
@@ -37,6 +37,5 @@ Code = "https://github.com/JE-Chen/je_editor"
|
|
37
37
|
file = "README.md"
|
38
38
|
content-type = "text/markdown"
|
39
39
|
|
40
|
-
[tool.setuptools.packages
|
41
|
-
|
42
|
-
|
40
|
+
[tool.setuptools.packages]
|
41
|
+
find = { namespaces = false }
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216/je_editor/pyside_ui → je_editor-0.0.218/je_editor/git_client}/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216/je_editor/pyside_ui/browser → je_editor-0.0.218/je_editor/pyside_ui}/__init__.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/browser/browser_download_window.py
RENAMED
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/browser/browser_serach_lineedit.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/auto_save/auto_save_manager.py
RENAMED
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/auto_save/auto_save_thread.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/shell_process/shell_exec.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/textedit_code_result/code_record.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/code/variable_inspector/inspector_gui.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/ai_dialog/set_ai_dialog.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/file_dialog/create_file_dialog.py
RENAMED
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/file_dialog/open_file_dialog.py
RENAMED
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/file_dialog/save_file_dialog.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/search_ui/search_error_box.py
RENAMED
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/dialog/search_ui/search_text_box.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/git_ui/git_branch_tree_widget.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/ai_widget/langchain_interface.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/console_widget/console_gui.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/editor/editor_widget_dock.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/ipython_widget/rich_jupyter.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/run_menu/build_run_menu.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/pyside_ui/main_ui/save_settings/setting_utils.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216/je_editor/utils/venv_check → je_editor-0.0.218/je_editor/utils/json}/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/multi_language/multi_language_wrapper.py
RENAMED
File without changes
|
{je_editor-0.0.216 → je_editor-0.0.218}/je_editor/utils/redirect_manager/redirect_manager_class.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|