je-editor 0.0.223__py3-none-any.whl → 0.0.224__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.
Potentially problematic release.
This version of je-editor might be problematic. Click here for more details.
- je_editor/git_client/commit_graph.py +7 -7
- je_editor/git_client/git_action.py +0 -7
- je_editor/pyside_ui/browser/browser_widget.py +24 -11
- je_editor/pyside_ui/browser/main_browser_widget.py +40 -27
- je_editor/pyside_ui/code/auto_save/auto_save_manager.py +34 -2
- je_editor/pyside_ui/code/auto_save/auto_save_thread.py +19 -6
- je_editor/pyside_ui/code/code_format/pep8_format.py +53 -9
- je_editor/pyside_ui/code/code_process/code_exec.py +88 -52
- je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py +116 -55
- je_editor/pyside_ui/code/running_process_manager.py +19 -1
- je_editor/pyside_ui/code/shell_process/shell_exec.py +71 -48
- je_editor/pyside_ui/code/syntax/python_syntax.py +45 -10
- je_editor/pyside_ui/code/syntax/syntax_setting.py +40 -12
- je_editor/pyside_ui/code/textedit_code_result/code_record.py +34 -12
- je_editor/pyside_ui/code/variable_inspector/inspector_gui.py +53 -6
- je_editor/pyside_ui/dialog/ai_dialog/set_ai_dialog.py +30 -3
- je_editor/pyside_ui/dialog/file_dialog/create_file_dialog.py +35 -2
- je_editor/pyside_ui/dialog/file_dialog/open_file_dialog.py +33 -5
- je_editor/pyside_ui/dialog/file_dialog/save_file_dialog.py +25 -3
- je_editor/pyside_ui/dialog/search_ui/search_error_box.py +26 -1
- je_editor/pyside_ui/dialog/search_ui/search_text_box.py +26 -1
- je_editor/pyside_ui/git_ui/code_diff_compare/code_diff_viewer_widget.py +11 -11
- je_editor/pyside_ui/git_ui/git_client/commit_table.py +46 -8
- je_editor/pyside_ui/git_ui/git_client/git_branch_tree_widget.py +49 -15
- je_editor/pyside_ui/git_ui/git_client/graph_view.py +64 -20
- je_editor/pyside_ui/main_ui/ai_widget/ai_config.py +20 -5
- je_editor/pyside_ui/main_ui/ai_widget/ask_thread.py +20 -1
- je_editor/pyside_ui/main_ui/ai_widget/chat_ui.py +56 -41
- je_editor/pyside_ui/main_ui/ai_widget/langchain_interface.py +45 -6
- je_editor/pyside_ui/main_ui/console_widget/console_gui.py +44 -12
- je_editor/pyside_ui/main_ui/console_widget/qprocess_adapter.py +34 -13
- je_editor/pyside_ui/main_ui/dock/destroy_dock.py +33 -2
- je_editor/pyside_ui/main_ui/editor/editor_widget.py +104 -20
- je_editor/pyside_ui/main_ui/editor/editor_widget_dock.py +34 -7
- je_editor/pyside_ui/main_ui/editor/process_input.py +38 -11
- je_editor/pyside_ui/main_ui/ipython_widget/rich_jupyter.py +46 -11
- je_editor/pyside_ui/main_ui/main_editor.py +175 -37
- je_editor/pyside_ui/main_ui/menu/check_style_menu/build_check_style_menu.py +51 -28
- je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py +80 -22
- je_editor/pyside_ui/main_ui/menu/file_menu/build_file_menu.py +70 -17
- je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py +34 -3
- je_editor/pyside_ui/main_ui/menu/language_menu/build_language_server.py +41 -1
- je_editor/pyside_ui/main_ui/menu/python_env_menu/build_venv_menu.py +100 -42
- je_editor/pyside_ui/main_ui/menu/run_menu/build_run_menu.py +57 -7
- je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_debug_menu.py +50 -4
- je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_program_menu.py +52 -6
- je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_shell_menu.py +44 -4
- je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/utils.py +23 -1
- je_editor/pyside_ui/main_ui/menu/set_menu_bar.py +37 -12
- je_editor/pyside_ui/main_ui/menu/style_menu/build_style_menu.py +44 -7
- je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py +126 -28
- je_editor/pyside_ui/main_ui/menu/text_menu/build_text_menu.py +65 -1
- je_editor/pyside_ui/main_ui/save_settings/setting_utils.py +18 -1
- je_editor/pyside_ui/main_ui/save_settings/user_color_setting_file.py +33 -3
- je_editor/pyside_ui/main_ui/save_settings/user_setting_file.py +38 -11
- je_editor/pyside_ui/main_ui/system_tray/extend_system_tray.py +39 -2
- je_editor/start_editor.py +26 -1
- je_editor/utils/encodings/python_encodings.py +101 -98
- je_editor/utils/file/open/open_file.py +36 -19
- je_editor/utils/file/save/save_file.py +35 -14
- je_editor/utils/json/json_file.py +29 -14
- je_editor/utils/json_format/json_process.py +33 -2
- je_editor/utils/logging/loggin_instance.py +38 -8
- je_editor/utils/multi_language/multi_language_wrapper.py +29 -4
- je_editor/utils/redirect_manager/redirect_manager_class.py +49 -11
- je_editor/utils/venv_check/check_venv.py +45 -15
- {je_editor-0.0.223.dist-info → je_editor-0.0.224.dist-info}/METADATA +1 -1
- {je_editor-0.0.223.dist-info → je_editor-0.0.224.dist-info}/RECORD +71 -71
- {je_editor-0.0.223.dist-info → je_editor-0.0.224.dist-info}/WHEEL +0 -0
- {je_editor-0.0.223.dist-info → je_editor-0.0.224.dist-info}/licenses/LICENSE +0 -0
- {je_editor-0.0.223.dist-info → je_editor-0.0.224.dist-info}/top_level.txt +0 -0
|
@@ -1,27 +1,57 @@
|
|
|
1
1
|
import logging
|
|
2
2
|
from logging.handlers import RotatingFileHandler
|
|
3
3
|
|
|
4
|
+
# 設定 root logger 的最低層級為 DEBUG
|
|
5
|
+
# Set the root logger level to DEBUG
|
|
4
6
|
logging.root.setLevel(logging.DEBUG)
|
|
7
|
+
|
|
8
|
+
# 建立一個名為 "JEditor" 的 logger
|
|
9
|
+
# Create a logger named "JEditor"
|
|
5
10
|
jeditor_logger = logging.getLogger("JEditor")
|
|
11
|
+
|
|
12
|
+
# 設定 JEditor logger 的層級為 WARNING (只會輸出 WARNING 以上的訊息)
|
|
13
|
+
# Set the JEditor logger level to WARNING (only WARNING and above will be logged)
|
|
6
14
|
jeditor_logger.setLevel(logging.WARNING)
|
|
15
|
+
|
|
16
|
+
# 定義日誌格式:時間 | logger 名稱 | 等級 | 訊息
|
|
17
|
+
# Define log format: time | logger name | level | message
|
|
7
18
|
formatter = logging.Formatter('%(asctime)s | %(name)s | %(levelname)s | %(message)s')
|
|
8
19
|
|
|
20
|
+
|
|
9
21
|
class JEditorLoggingHandler(RotatingFileHandler):
|
|
22
|
+
"""
|
|
23
|
+
自訂的 Logging Handler,繼承自 RotatingFileHandler
|
|
24
|
+
Custom Logging Handler, inherits from RotatingFileHandler
|
|
10
25
|
|
|
11
|
-
|
|
26
|
+
功能:
|
|
27
|
+
- 將日誌輸出到檔案 (支援檔案大小輪替)
|
|
28
|
+
- 預設檔名為 JEditor.log
|
|
29
|
+
"""
|
|
30
|
+
|
|
31
|
+
# redirect logging stderr output to queue (註解說明,但目前未實作)
|
|
32
|
+
# 註解提到要將 stderr 輸出導向 queue,但目前程式碼僅繼承 RotatingFileHandler
|
|
12
33
|
|
|
13
34
|
def __init__(self, filename: str = "JEditor.log", mode="w",
|
|
14
|
-
maxBytes:int=1073741824, backupCount:int=0):
|
|
35
|
+
maxBytes: int = 1073741824, backupCount: int = 0):
|
|
36
|
+
"""
|
|
37
|
+
:param filename: 日誌檔案名稱 / log file name
|
|
38
|
+
:param mode: 檔案開啟模式 (預設 w 覆寫) / file open mode (default "w" overwrite)
|
|
39
|
+
:param maxBytes: 單一檔案最大大小 (預設 1GB) / max file size (default 1GB)
|
|
40
|
+
:param backupCount: 保留的備份檔案數量 / number of backup files to keep
|
|
41
|
+
"""
|
|
15
42
|
super().__init__(filename=filename, mode=mode, maxBytes=maxBytes, backupCount=backupCount)
|
|
16
|
-
self.formatter = formatter
|
|
17
|
-
self.setLevel(logging.DEBUG)
|
|
43
|
+
self.formatter = formatter # 設定日誌格式 / set log formatter
|
|
44
|
+
self.setLevel(logging.DEBUG) # 設定 handler 層級為 DEBUG / set handler level to DEBUG
|
|
18
45
|
|
|
19
46
|
def emit(self, record: logging.LogRecord) -> None:
|
|
47
|
+
"""
|
|
48
|
+
實際輸出日誌的方法,這裡直接呼叫父類別的 emit
|
|
49
|
+
Method to emit log records, here just call parent emit
|
|
50
|
+
"""
|
|
20
51
|
super().emit(record)
|
|
21
52
|
|
|
22
53
|
|
|
23
|
-
#
|
|
54
|
+
# 建立檔案處理器並加入到 JEditor logger
|
|
55
|
+
# Create file handler and add it to JEditor logger
|
|
24
56
|
file_handler = JEditorLoggingHandler()
|
|
25
|
-
jeditor_logger.addHandler(file_handler)
|
|
26
|
-
|
|
27
|
-
|
|
57
|
+
jeditor_logger.addHandler(file_handler)
|
|
@@ -4,26 +4,51 @@ from je_editor.utils.multi_language.traditional_chinese import traditional_chine
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
class LanguageWrapper(object):
|
|
7
|
+
"""
|
|
8
|
+
功能說明 (Function Description):
|
|
9
|
+
- 提供一個語言包裝器,用來管理目前使用的語言與對應的字典。
|
|
10
|
+
- A language wrapper to manage the current language and its corresponding dictionary.
|
|
11
|
+
"""
|
|
7
12
|
|
|
8
|
-
def __init__(
|
|
9
|
-
|
|
10
|
-
|
|
13
|
+
def __init__(self):
|
|
14
|
+
# 初始化時記錄日誌
|
|
15
|
+
# Log initialization
|
|
11
16
|
jeditor_logger.info("Init LanguageWrapper")
|
|
17
|
+
|
|
18
|
+
# 預設語言為 English
|
|
19
|
+
# Default language is English
|
|
12
20
|
self.language: str = "English"
|
|
21
|
+
|
|
22
|
+
# 可選語言字典對照表
|
|
23
|
+
# Mapping of available languages to their word dictionaries
|
|
13
24
|
self.choose_language_dict = {
|
|
14
25
|
"English": english_word_dict,
|
|
15
26
|
"Traditional_Chinese": traditional_chinese_word_dict
|
|
16
27
|
}
|
|
28
|
+
|
|
29
|
+
# 根據目前語言選擇對應字典
|
|
30
|
+
# Select the dictionary based on current language
|
|
17
31
|
self.language_word_dict: dict = self.choose_language_dict.get(self.language)
|
|
18
32
|
|
|
19
33
|
def reset_language(self, language) -> None:
|
|
34
|
+
"""
|
|
35
|
+
重設語言 (Reset the language)
|
|
36
|
+
:param language: "English" 或 "Traditional_Chinese"
|
|
37
|
+
"""
|
|
20
38
|
jeditor_logger.info(f"LanguageWrapper reset_language language: {language}")
|
|
39
|
+
|
|
40
|
+
# 檢查輸入是否為支援的語言
|
|
41
|
+
# Check if the input language is supported
|
|
21
42
|
if language in [
|
|
22
43
|
"English",
|
|
23
44
|
"Traditional_Chinese"
|
|
24
45
|
]:
|
|
46
|
+
# 更新語言與對應字典
|
|
47
|
+
# Update language and corresponding dictionary
|
|
25
48
|
self.language = language
|
|
26
49
|
self.language_word_dict = self.choose_language_dict.get(self.language)
|
|
27
50
|
|
|
28
51
|
|
|
29
|
-
|
|
52
|
+
# 建立一個全域的 LanguageWrapper 實例
|
|
53
|
+
# Create a global instance of LanguageWrapper
|
|
54
|
+
language_wrapper = LanguageWrapper()
|
|
@@ -6,54 +6,90 @@ from je_editor.utils.logging.loggin_instance import jeditor_logger
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
class RedirectStdOut(logging.Handler):
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
"""
|
|
10
|
+
功能說明 (Function Description):
|
|
11
|
+
- 將標準輸出 (stdout) 重導向到 queue
|
|
12
|
+
- Redirect standard output (stdout) to a queue
|
|
13
|
+
"""
|
|
11
14
|
|
|
12
15
|
def __init__(self):
|
|
13
16
|
super().__init__()
|
|
14
17
|
|
|
15
18
|
def write(self, content_to_write) -> None:
|
|
19
|
+
# 將輸出內容放入 RedirectManager 的 stdout queue
|
|
20
|
+
# Put output content into RedirectManager's stdout queue
|
|
16
21
|
redirect_manager_instance.std_out_queue.put(content_to_write)
|
|
17
22
|
|
|
18
23
|
def emit(self, record: logging.LogRecord) -> None:
|
|
24
|
+
# 將 logging 訊息格式化後放入 stdout queue
|
|
25
|
+
# Put formatted logging record into stdout queue
|
|
19
26
|
redirect_manager_instance.std_out_queue.put(self.format(record))
|
|
20
27
|
|
|
21
28
|
|
|
22
29
|
class RedirectStdErr(logging.Handler):
|
|
23
|
-
|
|
24
|
-
|
|
30
|
+
"""
|
|
31
|
+
功能說明 (Function Description):
|
|
32
|
+
- 將標準錯誤輸出 (stderr) 重導向到 queue
|
|
33
|
+
- Redirect standard error (stderr) to a queue
|
|
34
|
+
"""
|
|
25
35
|
|
|
26
36
|
def __init__(self):
|
|
27
37
|
super().__init__()
|
|
28
38
|
|
|
29
39
|
def write(self, content_to_write) -> None:
|
|
40
|
+
# 將錯誤輸出內容放入 RedirectManager 的 stderr queue
|
|
41
|
+
# Put error output content into RedirectManager's stderr queue
|
|
30
42
|
redirect_manager_instance.std_err_queue.put(content_to_write)
|
|
31
43
|
|
|
32
44
|
def emit(self, record: logging.LogRecord) -> None:
|
|
45
|
+
# 將 logging 訊息格式化後放入 stderr queue
|
|
46
|
+
# Put formatted logging record into stderr queue
|
|
33
47
|
redirect_manager_instance.std_err_queue.put(self.format(record))
|
|
34
48
|
|
|
35
49
|
|
|
36
50
|
class RedirectManager(object):
|
|
37
|
-
|
|
51
|
+
"""
|
|
52
|
+
功能說明 (Function Description):
|
|
53
|
+
- 管理 stdout 與 stderr 的重導向
|
|
54
|
+
- 提供 set_redirect 與 restore_std 方法
|
|
55
|
+
- Manage redirection of stdout and stderr
|
|
56
|
+
- Provides set_redirect and restore_std methods
|
|
57
|
+
"""
|
|
58
|
+
|
|
38
59
|
def __init__(self):
|
|
39
60
|
jeditor_logger.info("Init RedirectManager")
|
|
61
|
+
# 建立 stdout 與 stderr 的 queue
|
|
62
|
+
# Create queues for stdout and stderr
|
|
40
63
|
self.std_err_queue = queue.Queue()
|
|
41
64
|
self.std_out_queue = queue.Queue()
|
|
42
65
|
|
|
43
66
|
@staticmethod
|
|
44
67
|
def set_redirect() -> None:
|
|
45
68
|
"""
|
|
46
|
-
|
|
69
|
+
啟用重導向
|
|
70
|
+
Redirect stdout and stderr to queues
|
|
47
71
|
"""
|
|
48
72
|
jeditor_logger.info("RedirectManager set_redirect")
|
|
49
73
|
redirect_out = RedirectStdOut()
|
|
50
74
|
redirect_err = RedirectStdErr()
|
|
75
|
+
|
|
76
|
+
# 將 sys.stdout / sys.stderr 指向自訂 handler
|
|
77
|
+
# Redirect sys.stdout / sys.stderr to custom handlers
|
|
51
78
|
sys.stdout = redirect_out
|
|
52
79
|
sys.stderr = redirect_err
|
|
80
|
+
|
|
81
|
+
# 建立一個 logger 並綁定 stderr handler
|
|
82
|
+
# Create a logger and bind stderr handler
|
|
53
83
|
default_logger = logging.getLogger("JEditor_RedirectManager")
|
|
54
84
|
default_logger.addHandler(redirect_err)
|
|
55
|
-
|
|
56
|
-
|
|
85
|
+
|
|
86
|
+
# 過濾掉不需要重導向的 logger
|
|
87
|
+
# Skip specific loggers from being redirected
|
|
88
|
+
skip_logger_list = [
|
|
89
|
+
"JEditor", "FrontEngine",
|
|
90
|
+
"AutomationIDE", "TestPioneer",
|
|
91
|
+
"langchain", "langchain_core", "langchain_openai"
|
|
92
|
+
]
|
|
57
93
|
for name in logging.root.manager.loggerDict.keys():
|
|
58
94
|
if name in skip_logger_list:
|
|
59
95
|
continue
|
|
@@ -63,12 +99,14 @@ class RedirectManager(object):
|
|
|
63
99
|
@staticmethod
|
|
64
100
|
def restore_std() -> None:
|
|
65
101
|
"""
|
|
66
|
-
|
|
67
|
-
|
|
102
|
+
重設 stdout 與 stderr
|
|
103
|
+
Restore stdout and stderr to default
|
|
68
104
|
"""
|
|
69
105
|
jeditor_logger.info("RedirectManager restore_std")
|
|
70
106
|
sys.stdout = sys.__stdout__
|
|
71
107
|
sys.stderr = sys.__stderr__
|
|
72
108
|
|
|
73
109
|
|
|
74
|
-
|
|
110
|
+
# 建立全域 RedirectManager 實例
|
|
111
|
+
# Create a global instance of RedirectManager
|
|
112
|
+
redirect_manager_instance = RedirectManager()
|
|
@@ -1,28 +1,58 @@
|
|
|
1
1
|
import shutil
|
|
2
2
|
from pathlib import Path
|
|
3
3
|
|
|
4
|
+
# 匯入自訂錯誤訊息與例外類別
|
|
5
|
+
# Import custom error messages and exception class
|
|
6
|
+
from je_editor.utils.exception.exception_tags import compiler_not_found_error
|
|
7
|
+
from je_editor.utils.exception.exceptions import JEditorExecException
|
|
8
|
+
from je_editor.utils.logging.loggin_instance import jeditor_logger
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
import shutil
|
|
12
|
+
from pathlib import Path
|
|
13
|
+
|
|
14
|
+
# 匯入自訂錯誤訊息與例外類別
|
|
15
|
+
# Import custom error messages and exception class
|
|
4
16
|
from je_editor.utils.exception.exception_tags import compiler_not_found_error
|
|
5
17
|
from je_editor.utils.exception.exceptions import JEditorExecException
|
|
6
18
|
from je_editor.utils.logging.loggin_instance import jeditor_logger
|
|
7
19
|
|
|
8
20
|
|
|
9
21
|
def check_and_choose_venv(venv_path: Path) -> str:
|
|
22
|
+
"""
|
|
23
|
+
功能說明 (Function Description):
|
|
24
|
+
檢查虛擬環境 (venv) 路徑,並嘗試尋找可用的 Python 編譯器。
|
|
25
|
+
Check the virtual environment (venv) path and try to find a usable Python interpreter.
|
|
26
|
+
|
|
27
|
+
:param venv_path: 虛擬環境的路徑 / path to the virtual environment
|
|
28
|
+
:return: Python 編譯器的完整路徑 / full path to the Python interpreter
|
|
29
|
+
:raise JEditorExecException: 若找不到 Python 編譯器 / if no Python interpreter is found
|
|
30
|
+
"""
|
|
31
|
+
|
|
10
32
|
jeditor_logger.info(f"check_venv.py check_and_choose_venv venv_path: {venv_path}")
|
|
11
|
-
|
|
33
|
+
|
|
34
|
+
# 如果 venv_path 是資料夾且存在
|
|
35
|
+
# If venv_path is a directory and exists
|
|
12
36
|
if venv_path.is_dir() and venv_path.exists():
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
37
|
+
# 先嘗試在該路徑下尋找 python3
|
|
38
|
+
# Try to find python3 in the given path
|
|
39
|
+
compiler_path = shutil.which("python3", path=str(venv_path))
|
|
40
|
+
if compiler_path:
|
|
41
|
+
return compiler_path
|
|
42
|
+
|
|
43
|
+
# 如果找不到 python3,再找 python
|
|
44
|
+
# If python3 not found, try python
|
|
45
|
+
compiler_path = shutil.which("python", path=str(venv_path))
|
|
46
|
+
if compiler_path:
|
|
47
|
+
return compiler_path
|
|
48
|
+
|
|
49
|
+
# 如果 venv_path 無效或都找不到,最後再嘗試系統預設的 python3 或 python
|
|
50
|
+
# If venv_path is invalid or no interpreter found, try system default python3 or python
|
|
51
|
+
compiler_path = shutil.which("python3") or shutil.which("python")
|
|
52
|
+
|
|
53
|
+
# 如果還是找不到,拋出例外
|
|
54
|
+
# If still not found, raise exception
|
|
26
55
|
if compiler_path is None:
|
|
27
56
|
raise JEditorExecException(compiler_not_found_error)
|
|
28
|
-
|
|
57
|
+
|
|
58
|
+
return compiler_path
|
|
@@ -1,140 +1,140 @@
|
|
|
1
1
|
je_editor/__init__.py,sha256=yIUH6MZZUrVYKo0emfnHmq4hzjTu1NygO2lbIpmYkao,2418
|
|
2
2
|
je_editor/__main__.py,sha256=2ymm4ESRcqP4K1YQyeaDbGhuK-0C1IausIiEOpbm6Ds,570
|
|
3
|
-
je_editor/start_editor.py,sha256=
|
|
3
|
+
je_editor/start_editor.py,sha256=M1PcWF-VAt-qhDa2ezJuBHwnxTB60RDJ4gKSw_3pcdY,1501
|
|
4
4
|
je_editor/code_scan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
je_editor/code_scan/ruff_thread.py,sha256=DNM4cEZt5PBqIDtyy5GXq9BFwLhSuLu8FFBxn3_9xRE,1983
|
|
6
6
|
je_editor/code_scan/watchdog_implement.py,sha256=tjkA_9_bHEzGdTm_O1IPSwCka9ELMR4cI_nBKEHHV34,2114
|
|
7
7
|
je_editor/code_scan/watchdog_thread.py,sha256=UPIYpUCdgAox-44gJnp10ooJfBono1Hkkj5JFi2B_As,2609
|
|
8
8
|
je_editor/git_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
je_editor/git_client/commit_graph.py,sha256=
|
|
10
|
-
je_editor/git_client/git_action.py,sha256=
|
|
9
|
+
je_editor/git_client/commit_graph.py,sha256=JPCe5-JTMPpziJYI7ufXJibSVYJuLZRw37-L6IY1ve4,2721
|
|
10
|
+
je_editor/git_client/git_action.py,sha256=k5PsnLyaiD3uG_FfotetVAT_ZqKUBEi8nfHX2jXcWLw,6092
|
|
11
11
|
je_editor/git_client/git_cli.py,sha256=Ad-OdPyOQvAvUHeXWVwvHPCi7xo6o3ljKMTlUzOW53Q,2096
|
|
12
12
|
je_editor/pyside_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
je_editor/pyside_ui/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
je_editor/pyside_ui/browser/browser_download_window.py,sha256=cCOj1WeglNIbabJZdXL0eXWE6bZT-U9huZGFbSSKXgw,3397
|
|
15
15
|
je_editor/pyside_ui/browser/browser_serach_lineedit.py,sha256=78Wa1X9LWoJW_ppCVTOmD51rJzjOElJGkdPkk4VBkBY,1875
|
|
16
16
|
je_editor/pyside_ui/browser/browser_view.py,sha256=UgzOyHBx8egGO7Pt4Ch18Hie9IrFtMFBvax2tItWJq0,3122
|
|
17
|
-
je_editor/pyside_ui/browser/browser_widget.py,sha256=
|
|
18
|
-
je_editor/pyside_ui/browser/main_browser_widget.py,sha256=
|
|
17
|
+
je_editor/pyside_ui/browser/browser_widget.py,sha256=5bxKKQrzEXAVjuxL61ryz-ZfFnXfXdxy4mLJRowFt5Q,4838
|
|
18
|
+
je_editor/pyside_ui/browser/main_browser_widget.py,sha256=3EjfmnAPkWWhHJm6WftfZIPoQ7kVRGzamWb5bF2cC8M,4044
|
|
19
19
|
je_editor/pyside_ui/code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
je_editor/pyside_ui/code/running_process_manager.py,sha256=
|
|
20
|
+
je_editor/pyside_ui/code/running_process_manager.py,sha256=IRddlk05W60OwY1OHCJWQo7mLMfnJIrw5vZdZxV53cU,1852
|
|
21
21
|
je_editor/pyside_ui/code/auto_save/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
je_editor/pyside_ui/code/auto_save/auto_save_manager.py,sha256=
|
|
23
|
-
je_editor/pyside_ui/code/auto_save/auto_save_thread.py,sha256=
|
|
22
|
+
je_editor/pyside_ui/code/auto_save/auto_save_manager.py,sha256=mvNRjaysh-13DU0hJLubfSZ3aF_N_JBYxxOaaXaiOfs,2281
|
|
23
|
+
je_editor/pyside_ui/code/auto_save/auto_save_thread.py,sha256=AhEoQP2iH0OXe6XBUaYOXbx97o82TulcASHzAkwQTlI,2719
|
|
24
24
|
je_editor/pyside_ui/code/code_format/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
je_editor/pyside_ui/code/code_format/pep8_format.py,sha256=
|
|
25
|
+
je_editor/pyside_ui/code/code_format/pep8_format.py,sha256=hdFg6tFv2PhC1VWkzuNdsZTm_brniR5bN5gFmAJXkUA,5558
|
|
26
26
|
je_editor/pyside_ui/code/code_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
je_editor/pyside_ui/code/code_process/code_exec.py,sha256
|
|
27
|
+
je_editor/pyside_ui/code/code_process/code_exec.py,sha256=-A_yEg5WjQmwYEk_TofcltELHrDnulR7jM6qMP4gi8Q,12732
|
|
28
28
|
je_editor/pyside_ui/code/plaintext_code_edit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py,sha256=
|
|
29
|
+
je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py,sha256=70JEsv6cY7zRYBbbK9g_pNRQgZtqKoSYwac5436DjQM,16255
|
|
30
30
|
je_editor/pyside_ui/code/shell_process/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
je_editor/pyside_ui/code/shell_process/shell_exec.py,sha256=
|
|
31
|
+
je_editor/pyside_ui/code/shell_process/shell_exec.py,sha256=kFc4b2acrPHkwcqaBlP_YP5hM_bquS6yOGAzxOLKof8,12927
|
|
32
32
|
je_editor/pyside_ui/code/syntax/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
je_editor/pyside_ui/code/syntax/python_syntax.py,sha256=
|
|
34
|
-
je_editor/pyside_ui/code/syntax/syntax_setting.py,sha256=
|
|
33
|
+
je_editor/pyside_ui/code/syntax/python_syntax.py,sha256=suuOakQL27B8KsS-XJi2tlMdtC5Tb_A-YX6mpgOPTwo,4542
|
|
34
|
+
je_editor/pyside_ui/code/syntax/syntax_setting.py,sha256=Fgy9bWUl3QWOKLeqOlpNIlMsEz-dEDsZqkqAyGKqZL0,3764
|
|
35
35
|
je_editor/pyside_ui/code/textedit_code_result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
-
je_editor/pyside_ui/code/textedit_code_result/code_record.py,sha256=
|
|
36
|
+
je_editor/pyside_ui/code/textedit_code_result/code_record.py,sha256=QQcp79ZxxsLswQtwInrwAOvfETh406IEcQtzXbPcOrw,3398
|
|
37
37
|
je_editor/pyside_ui/code/variable_inspector/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
je_editor/pyside_ui/code/variable_inspector/inspector_gui.py,sha256=
|
|
38
|
+
je_editor/pyside_ui/code/variable_inspector/inspector_gui.py,sha256=X5rRPbj6EBKcyxi1v7ch9SPSfQxW_V5xmNaLhHLU6aQ,7021
|
|
39
39
|
je_editor/pyside_ui/dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
40
|
je_editor/pyside_ui/dialog/ai_dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
je_editor/pyside_ui/dialog/ai_dialog/set_ai_dialog.py,sha256=
|
|
41
|
+
je_editor/pyside_ui/dialog/ai_dialog/set_ai_dialog.py,sha256=OP11sUD35oMiqTB5TPta5kHG8qZSxjEj3lVTe26yiR0,3288
|
|
42
42
|
je_editor/pyside_ui/dialog/file_dialog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
je_editor/pyside_ui/dialog/file_dialog/create_file_dialog.py,sha256=
|
|
44
|
-
je_editor/pyside_ui/dialog/file_dialog/open_file_dialog.py,sha256=
|
|
45
|
-
je_editor/pyside_ui/dialog/file_dialog/save_file_dialog.py,sha256=
|
|
43
|
+
je_editor/pyside_ui/dialog/file_dialog/create_file_dialog.py,sha256=Q3iUyxiBfhu_8fzlSVvMBlD_WEV5APJ7RFIUBxN0MyE,2742
|
|
44
|
+
je_editor/pyside_ui/dialog/file_dialog/open_file_dialog.py,sha256=FjK95FhQ6B42O1271eM84dg6tuNaaytReO1-XQ3Iu2o,5049
|
|
45
|
+
je_editor/pyside_ui/dialog/file_dialog/save_file_dialog.py,sha256=rrJTYZoXgAIWOXPZMDJRgTOwJAXV-UYjQjgKyulMeuI,2781
|
|
46
46
|
je_editor/pyside_ui/dialog/search_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
-
je_editor/pyside_ui/dialog/search_ui/search_error_box.py,sha256=
|
|
48
|
-
je_editor/pyside_ui/dialog/search_ui/search_text_box.py,sha256=
|
|
47
|
+
je_editor/pyside_ui/dialog/search_ui/search_error_box.py,sha256=Bp6iSUeIOvj3EXLA4U9-ap2rocRqVZhS1fgHhKaKCLg,1810
|
|
48
|
+
je_editor/pyside_ui/dialog/search_ui/search_text_box.py,sha256=QJrD1UVabLow7l9uJ0cDWQ2K0l6QgvINToQJw9mYKfE,1879
|
|
49
49
|
je_editor/pyside_ui/git_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
50
|
je_editor/pyside_ui/git_ui/code_diff_compare/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
je_editor/pyside_ui/git_ui/code_diff_compare/code_diff_viewer_widget.py,sha256=
|
|
51
|
+
je_editor/pyside_ui/git_ui/code_diff_compare/code_diff_viewer_widget.py,sha256=Vr58ropWLJ6x4b-7ZGybMVhSnBLD4vD-jYeICN-nLKc,3657
|
|
52
52
|
je_editor/pyside_ui/git_ui/code_diff_compare/line_number_code_viewer.py,sha256=VFC98ERf-Wj78MTD0bwAXOKtFRTjcdkndA-SiuiTI0g,5638
|
|
53
53
|
je_editor/pyside_ui/git_ui/code_diff_compare/multi_file_diff_viewer.py,sha256=Y8Z0MUBkxWjV6dnvMnmopDFCmxmUX49cAmX3DHgs-50,3195
|
|
54
54
|
je_editor/pyside_ui/git_ui/code_diff_compare/side_by_side_diff_widget.py,sha256=v07KV3V4C6vBLqyoJg4YuFWStx_cVH31jaeniH9V2lw,11100
|
|
55
55
|
je_editor/pyside_ui/git_ui/git_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
-
je_editor/pyside_ui/git_ui/git_client/commit_table.py,sha256
|
|
57
|
-
je_editor/pyside_ui/git_ui/git_client/git_branch_tree_widget.py,sha256=
|
|
56
|
+
je_editor/pyside_ui/git_ui/git_client/commit_table.py,sha256=-tLXZVukvcH2IEbrO9rm-RPDHWPO31hXHfL3jXVmY3A,2579
|
|
57
|
+
je_editor/pyside_ui/git_ui/git_client/git_branch_tree_widget.py,sha256=kPVXD3b5c9geUbzztyrR1Zxuj3vYREH28DZip_9v-Gg,6531
|
|
58
58
|
je_editor/pyside_ui/git_ui/git_client/git_client_gui.py,sha256=oMJl2TKz_C-JxrbKiq7S_7wl_e01EKfEVXPq-qNwWU8,34230
|
|
59
|
-
je_editor/pyside_ui/git_ui/git_client/graph_view.py,sha256=
|
|
59
|
+
je_editor/pyside_ui/git_ui/git_client/graph_view.py,sha256=LAuLxOpK1cXO0EDmbjjnRYV8Mdlsl0oyyjmb_rNe70s,7932
|
|
60
60
|
je_editor/pyside_ui/main_ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
je_editor/pyside_ui/main_ui/main_editor.py,sha256=
|
|
61
|
+
je_editor/pyside_ui/main_ui/main_editor.py,sha256=3SpWEqlxzZR1N7vRJaSrWJDYT2_gy7Ym6t7N72TGzaQ,15901
|
|
62
62
|
je_editor/pyside_ui/main_ui/ai_widget/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
-
je_editor/pyside_ui/main_ui/ai_widget/ai_config.py,sha256=
|
|
64
|
-
je_editor/pyside_ui/main_ui/ai_widget/ask_thread.py,sha256=
|
|
65
|
-
je_editor/pyside_ui/main_ui/ai_widget/chat_ui.py,sha256=
|
|
66
|
-
je_editor/pyside_ui/main_ui/ai_widget/langchain_interface.py,sha256=
|
|
63
|
+
je_editor/pyside_ui/main_ui/ai_widget/ai_config.py,sha256=9lNwVrb61_UxbwC5-5bj2I2kKwRkRKX1JDiqeLJjqOc,1320
|
|
64
|
+
je_editor/pyside_ui/main_ui/ai_widget/ask_thread.py,sha256=suTFGDAuhhIq2W8tyEgY_U5eQAKlEQyUPO_ej_3A3eI,1491
|
|
65
|
+
je_editor/pyside_ui/main_ui/ai_widget/chat_ui.py,sha256=fuNWfTh5mbWcNhVqIwdwo3WCNQOVm4xMPIzNT8faF6k,8946
|
|
66
|
+
je_editor/pyside_ui/main_ui/ai_widget/langchain_interface.py,sha256=ZQPNjIuwMLNRKj4a1Uk8z4I2CcytqcAEslEl56glZmg,3488
|
|
67
67
|
je_editor/pyside_ui/main_ui/console_widget/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
-
je_editor/pyside_ui/main_ui/console_widget/console_gui.py,sha256=
|
|
69
|
-
je_editor/pyside_ui/main_ui/console_widget/qprocess_adapter.py,sha256=
|
|
68
|
+
je_editor/pyside_ui/main_ui/console_widget/console_gui.py,sha256=YLo4huhKInAt0uwnRohqIfRIGWowSpy5I8wYJ3eXjaE,7427
|
|
69
|
+
je_editor/pyside_ui/main_ui/console_widget/qprocess_adapter.py,sha256=uKK-BJcc8TXFaiyNEeEtcIk1dZiLQtnug1YN9L8jiUg,4092
|
|
70
70
|
je_editor/pyside_ui/main_ui/dock/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
-
je_editor/pyside_ui/main_ui/dock/destroy_dock.py,sha256=
|
|
71
|
+
je_editor/pyside_ui/main_ui/dock/destroy_dock.py,sha256=cTuqRLZN6elINnTJjv105oH6O0G4J0xCOOs7-mhirNg,1876
|
|
72
72
|
je_editor/pyside_ui/main_ui/editor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
-
je_editor/pyside_ui/main_ui/editor/editor_widget.py,sha256
|
|
74
|
-
je_editor/pyside_ui/main_ui/editor/editor_widget_dock.py,sha256=
|
|
75
|
-
je_editor/pyside_ui/main_ui/editor/process_input.py,sha256=
|
|
73
|
+
je_editor/pyside_ui/main_ui/editor/editor_widget.py,sha256=-s8Jg8V4t3VRndncHi6PWdFgeZw-A-EWonhixeWuPEg,14035
|
|
74
|
+
je_editor/pyside_ui/main_ui/editor/editor_widget_dock.py,sha256=MFzFJY12j0vYcjrundYrFW0JdPyDUX8zWD1551-cJu4,3251
|
|
75
|
+
je_editor/pyside_ui/main_ui/editor/process_input.py,sha256=SSZEdpnu2gFpY39z_pFR-bbZ9E4gmo3IO7zkQidV6Fw,5347
|
|
76
76
|
je_editor/pyside_ui/main_ui/ipython_widget/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
je_editor/pyside_ui/main_ui/ipython_widget/rich_jupyter.py,sha256=
|
|
77
|
+
je_editor/pyside_ui/main_ui/ipython_widget/rich_jupyter.py,sha256=CHEtjWykTSkWu9VFUU24O_8elXtFVR75UVCU79AbwZA,3942
|
|
78
78
|
je_editor/pyside_ui/main_ui/menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
-
je_editor/pyside_ui/main_ui/menu/set_menu_bar.py,sha256=
|
|
79
|
+
je_editor/pyside_ui/main_ui/menu/set_menu_bar.py,sha256=3_3SV0bdK9NV7faJv0LG5PCHQp0AAhpGxVfPs3yCoN8,3181
|
|
80
80
|
je_editor/pyside_ui/main_ui/menu/check_style_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
|
-
je_editor/pyside_ui/main_ui/menu/check_style_menu/build_check_style_menu.py,sha256=
|
|
81
|
+
je_editor/pyside_ui/main_ui/menu/check_style_menu/build_check_style_menu.py,sha256=2M0TJ_NqToRgpdjl1eTcML9VWC0617B6ho5YFZPxFQg,5490
|
|
82
82
|
je_editor/pyside_ui/main_ui/menu/dock_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
-
je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py,sha256=
|
|
83
|
+
je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py,sha256=GyouRpI6_6gXqa7vQtH8ZwD8mU1BdSLG32rsdNllf08,10801
|
|
84
84
|
je_editor/pyside_ui/main_ui/menu/file_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
-
je_editor/pyside_ui/main_ui/menu/file_menu/build_file_menu.py,sha256=
|
|
85
|
+
je_editor/pyside_ui/main_ui/menu/file_menu/build_file_menu.py,sha256=5Qtn3ZEWtfyems4AhBh2UCl0NwxTJy1nXR38umFMDdY,8882
|
|
86
86
|
je_editor/pyside_ui/main_ui/menu/help_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
-
je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py,sha256=
|
|
87
|
+
je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py,sha256=sJ6tb4vYeb9an_pkV2i_r9d3JcRUOD040LTMH6xUZJE,4161
|
|
88
88
|
je_editor/pyside_ui/main_ui/menu/language_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
-
je_editor/pyside_ui/main_ui/menu/language_menu/build_language_server.py,sha256=
|
|
89
|
+
je_editor/pyside_ui/main_ui/menu/language_menu/build_language_server.py,sha256=xiNNFuhqbqn6bLgIHprSnNZOzI1JV25FfkNnSnK1g0Y,3831
|
|
90
90
|
je_editor/pyside_ui/main_ui/menu/python_env_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
-
je_editor/pyside_ui/main_ui/menu/python_env_menu/build_venv_menu.py,sha256=
|
|
91
|
+
je_editor/pyside_ui/main_ui/menu/python_env_menu/build_venv_menu.py,sha256=sEzDechqr7TFLTgxnDR0vNpuLjA10VRcLVadu5HSdl0,12381
|
|
92
92
|
je_editor/pyside_ui/main_ui/menu/run_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
|
-
je_editor/pyside_ui/main_ui/menu/run_menu/build_run_menu.py,sha256=
|
|
93
|
+
je_editor/pyside_ui/main_ui/menu/run_menu/build_run_menu.py,sha256=rWNairTwafl2mwS0ihmQGaLc9PKacD4v_NuSRkOLu-s,6591
|
|
94
94
|
je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
-
je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_debug_menu.py,sha256=
|
|
96
|
-
je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_program_menu.py,sha256=
|
|
97
|
-
je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_shell_menu.py,sha256=
|
|
98
|
-
je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/utils.py,sha256=
|
|
95
|
+
je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_debug_menu.py,sha256=cU-or3TTC2EwHCXKxgmcuKi6kFjTGbsuNzewGLhJdSc,5144
|
|
96
|
+
je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_program_menu.py,sha256=6PQxGqCq6_OS2zwL8yoVjEhODc9rd2Kf-XpHl2r2GE8,4873
|
|
97
|
+
je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_shell_menu.py,sha256=27r-ZWVxTFOi3NOebZpZNt1YCUVsXOpG5ZCh7-znG8I,4563
|
|
98
|
+
je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/utils.py,sha256=8amFQeDg50jwTmM9gHcWGWjIunuQrvbBByhKyvVwt54,1731
|
|
99
99
|
je_editor/pyside_ui/main_ui/menu/style_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
|
-
je_editor/pyside_ui/main_ui/menu/style_menu/build_style_menu.py,sha256=
|
|
100
|
+
je_editor/pyside_ui/main_ui/menu/style_menu/build_style_menu.py,sha256=h8KBhteZ3HfF8bmh-eUl9P7YUTlOPQH9AcvSp-XBGCc,3229
|
|
101
101
|
je_editor/pyside_ui/main_ui/menu/tab_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
|
-
je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py,sha256=
|
|
102
|
+
je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py,sha256=HU-a2veddgrAvN9A50KyqDt8U9T3GTCVKHMfPbMyjEo,13152
|
|
103
103
|
je_editor/pyside_ui/main_ui/menu/text_menu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
-
je_editor/pyside_ui/main_ui/menu/text_menu/build_text_menu.py,sha256=
|
|
104
|
+
je_editor/pyside_ui/main_ui/menu/text_menu/build_text_menu.py,sha256=noN69yMQFlaMOSKRJSuMuJu5jLgKQ3zsdNxwv9tb3VU,5863
|
|
105
105
|
je_editor/pyside_ui/main_ui/save_settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
-
je_editor/pyside_ui/main_ui/save_settings/setting_utils.py,sha256=
|
|
107
|
-
je_editor/pyside_ui/main_ui/save_settings/user_color_setting_file.py,sha256=
|
|
108
|
-
je_editor/pyside_ui/main_ui/save_settings/user_setting_file.py,sha256=
|
|
106
|
+
je_editor/pyside_ui/main_ui/save_settings/setting_utils.py,sha256=ULAQTkRmeQI4f1VTqAw3RrBlt-iNKXlAxD8rtj4pPnY,1370
|
|
107
|
+
je_editor/pyside_ui/main_ui/save_settings/user_color_setting_file.py,sha256=Tmw-kN8XnimWAqsRPGcb8ikncTszAodPKuQDRXdf2IE,4471
|
|
108
|
+
je_editor/pyside_ui/main_ui/save_settings/user_setting_file.py,sha256=9mMRiPwHbeUAlmC_p8crjCQWlBul3gRDgFcgOaaBCN4,2519
|
|
109
109
|
je_editor/pyside_ui/main_ui/system_tray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
|
-
je_editor/pyside_ui/main_ui/system_tray/extend_system_tray.py,sha256=
|
|
110
|
+
je_editor/pyside_ui/main_ui/system_tray/extend_system_tray.py,sha256=ZpZXFZQlOC2OlW68i9CUT9w4SMClj_4KE0mUWupqKDs,3655
|
|
111
111
|
je_editor/utils/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
112
112
|
je_editor/utils/encodings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
|
-
je_editor/utils/encodings/python_encodings.py,sha256=
|
|
113
|
+
je_editor/utils/encodings/python_encodings.py,sha256=bo_KFevgfMcxTQ6Q46nz9X_scxDAx5A3G86GLmSaGXY,6789
|
|
114
114
|
je_editor/utils/exception/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
115
115
|
je_editor/utils/exception/exception_tags.py,sha256=KjkbbqrtIuNn07657AOVEpX0RZlOpTUFxKPiHld3xgM,1104
|
|
116
116
|
je_editor/utils/exception/exceptions.py,sha256=4e2ivqFWgBq4L_8QgRjd79xdOAgR_tyW_hpBlQeePpw,506
|
|
117
117
|
je_editor/utils/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
118
|
je_editor/utils/file/open/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
119
|
-
je_editor/utils/file/open/open_file.py,sha256=
|
|
119
|
+
je_editor/utils/file/open/open_file.py,sha256=MDDNQAIvM_Z-YdaisaLjr1o1HMPV0RHJC145JVy40fo,2473
|
|
120
120
|
je_editor/utils/file/save/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
121
|
-
je_editor/utils/file/save/save_file.py,sha256=
|
|
121
|
+
je_editor/utils/file/save/save_file.py,sha256=msAHjnguRlWvqfWrnrzPqiPwtl5CW2JdgyRI4fwQnNg,2299
|
|
122
122
|
je_editor/utils/json/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
123
|
-
je_editor/utils/json/json_file.py,sha256=
|
|
123
|
+
je_editor/utils/json/json_file.py,sha256=vID8JsBCTNJbCdjWeufgqokPIkKxtKca6z-zl_rY0-s,2925
|
|
124
124
|
je_editor/utils/json_format/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
125
|
-
je_editor/utils/json_format/json_process.py,sha256=
|
|
125
|
+
je_editor/utils/json_format/json_process.py,sha256=a_zVIyzEFU5KJ9ZJVnYGnWApv--9gFp-sSJ4R-vrmG0,2940
|
|
126
126
|
je_editor/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
-
je_editor/utils/logging/loggin_instance.py,sha256=
|
|
127
|
+
je_editor/utils/logging/loggin_instance.py,sha256=tEz2_gogBJwrRpew6-dLeMuQVnNiq0o0bttTR0CmKd0,2466
|
|
128
128
|
je_editor/utils/multi_language/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
129
|
je_editor/utils/multi_language/english.py,sha256=r1GSpQZNGoeqgvOvaz1r9rJgEMGLjHIIyn7UHiKILBg,10047
|
|
130
|
-
je_editor/utils/multi_language/multi_language_wrapper.py,sha256=
|
|
130
|
+
je_editor/utils/multi_language/multi_language_wrapper.py,sha256=EmXDzpzhE75t8aL_N_pihJ_55aJ9ha2jWGe0VGLxvyw,2063
|
|
131
131
|
je_editor/utils/multi_language/traditional_chinese.py,sha256=JS47iDkVgPQBQi-13Zr32joN8rnz22HBR79vaiEz8W4,10102
|
|
132
132
|
je_editor/utils/redirect_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
|
-
je_editor/utils/redirect_manager/redirect_manager_class.py,sha256=
|
|
133
|
+
je_editor/utils/redirect_manager/redirect_manager_class.py,sha256=UxyYjfJ_VYpCHomDLREIXPIu9-N6GWhUcnOUc2BcUAs,3867
|
|
134
134
|
je_editor/utils/venv_check/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
|
-
je_editor/utils/venv_check/check_venv.py,sha256=
|
|
136
|
-
je_editor-0.0.
|
|
137
|
-
je_editor-0.0.
|
|
138
|
-
je_editor-0.0.
|
|
139
|
-
je_editor-0.0.
|
|
140
|
-
je_editor-0.0.
|
|
135
|
+
je_editor/utils/venv_check/check_venv.py,sha256=3cqr7pR4daG3xwYF8Y7g8saASAU9SFPESvwwdjXnj5w,2438
|
|
136
|
+
je_editor-0.0.224.dist-info/licenses/LICENSE,sha256=KMhUHh6pnIUvmXDW-49L_Sz63bqkOlPDqsecaqKiitU,1091
|
|
137
|
+
je_editor-0.0.224.dist-info/METADATA,sha256=yDxOd8E9PpaD1coYYaQcc_zugRnh-7GoWQD2-8z4-5U,3487
|
|
138
|
+
je_editor-0.0.224.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
139
|
+
je_editor-0.0.224.dist-info/top_level.txt,sha256=_9YA7BgxpkmdLs-5V_UQILxClcMRgPyG1a3qaE-Bkcs,10
|
|
140
|
+
je_editor-0.0.224.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|