je-editor 0.0.201__tar.gz → 0.0.203__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.201 → je_editor-0.0.203}/PKG-INFO +4 -4
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/editor/editor_widget.py +2 -1
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/redirect_manager/redirect_manager_class.py +2 -1
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor.egg-info/PKG-INFO +4 -4
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor.egg-info/requires.txt +1 -1
- {je_editor-0.0.201 → je_editor-0.0.203}/pyproject.toml +3 -6
- {je_editor-0.0.201 → je_editor-0.0.203}/LICENSE +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/README.md +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/__main__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/browser/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/browser/browser_download_window.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/browser/browser_serach_lineedit.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/browser/browser_view.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/browser/browser_widget.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/auto_save/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/auto_save/auto_save_manager.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/auto_save/auto_save_thread.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/code_format/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/code_format/pep8_format.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/code_process/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/code_process/code_exec.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/plaintext_code_edit/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/plaintext_code_edit/code_edit_plaintext.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/running_process_manager.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/shell_process/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/shell_process/shell_exec.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/syntax/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/syntax/python_syntax.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/syntax/syntax_setting.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/textedit_code_result/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/textedit_code_result/code_record.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/file_dialog/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/file_dialog/create_file_dialog.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/file_dialog/open_file_dialog.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/file_dialog/save_file_dialog.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/search_ui/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/search_ui/search_error_box.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/search_ui/search_text_box.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/dock/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/dock/destroy_dock.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/editor/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/editor/editor_widget_dock.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/editor/process_input.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/ipython_widget/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/ipython_widget/rich_jupyter.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/main_editor.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/check_style_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/check_style_menu/build_check_style_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/dock_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/dock_menu/build_dock_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/file_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/file_menu/build_file_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/help_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/help_menu/build_help_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/language_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/language_menu/build_language_server.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/python_env_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/python_env_menu/build_venv_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/run_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/run_menu/build_run_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_debug_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_program_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/build_shell_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/run_menu/under_run_menu/utils.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/set_menu_bar.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/style_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/style_menu/build_style_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/tab_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/text_menu/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/text_menu/build_text_menu.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/save_settings/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/save_settings/setting_utils.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/save_settings/user_color_setting_file.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/save_settings/user_setting_file.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/system_tray/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/system_tray/extend_system_tray.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/start_editor.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/encodings/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/encodings/python_encodings.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/exception/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/exception/exception_tags.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/exception/exceptions.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/file/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/file/open/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/file/open/open_file.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/file/save/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/file/save/save_file.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/json/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/json/json_file.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/json_format/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/json_format/json_process.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/logging/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/logging/loggin_instance.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/multi_language/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/multi_language/english.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/multi_language/multi_language_wrapper.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/multi_language/traditional_chinese.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/redirect_manager/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/venv_check/__init__.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/venv_check/check_venv.py +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor.egg-info/SOURCES.txt +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor.egg-info/dependency_links.txt +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/je_editor.egg-info/top_level.txt +0 -0
- {je_editor-0.0.201 → je_editor-0.0.203}/setup.cfg +0 -0
@@ -1,9 +1,8 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: je_editor
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.203
|
4
4
|
Summary: JEditor is basic but powerful editor include GPT
|
5
5
|
Author-email: JE-Chen <jechenmailman@gmail.com>
|
6
|
-
License: MIT
|
7
6
|
Project-URL: Homepage, https://github.com/JE-Chen/je_editor
|
8
7
|
Project-URL: Documentation, https://je-editor.readthedocs.io/en/latest/
|
9
8
|
Project-URL: Code, https://github.com/JE-Chen/je_editor
|
@@ -17,13 +16,14 @@ Classifier: Operating System :: OS Independent
|
|
17
16
|
Requires-Python: >=3.9
|
18
17
|
Description-Content-Type: text/markdown
|
19
18
|
License-File: LICENSE
|
20
|
-
Requires-Dist: PySide6==6.8.
|
19
|
+
Requires-Dist: PySide6==6.8.3
|
21
20
|
Requires-Dist: qt-material
|
22
21
|
Requires-Dist: yapf
|
23
22
|
Requires-Dist: frontengine
|
24
23
|
Requires-Dist: pycodestyle
|
25
24
|
Requires-Dist: jedi
|
26
25
|
Requires-Dist: qtconsole
|
26
|
+
Dynamic: license-file
|
27
27
|
|
28
28
|
# je_editor
|
29
29
|
|
@@ -150,7 +150,8 @@ class EditorWidget(QWidget):
|
|
150
150
|
jeditor_logger.info(f"EditorWidget open_an_file path: {path}")
|
151
151
|
if not self.check_is_open(path):
|
152
152
|
return False
|
153
|
-
self.code_save_thread
|
153
|
+
if self.code_save_thread:
|
154
|
+
self.code_save_thread.skip_this_round = True
|
154
155
|
file, file_content = read_file(str(path))
|
155
156
|
self.code_edit.setPlainText(
|
156
157
|
file_content
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/redirect_manager/redirect_manager_class.py
RENAMED
@@ -52,7 +52,8 @@ class RedirectManager(object):
|
|
52
52
|
sys.stderr = redirect_err
|
53
53
|
default_logger = logging.getLogger("RedirectManager")
|
54
54
|
default_logger.addHandler(redirect_err)
|
55
|
-
skip_logger_list = ["JEditor", "FrontEngine",
|
55
|
+
skip_logger_list = ["JEditor", "FrontEngine",
|
56
|
+
"AutomationIDE", "TestPioneer"]
|
56
57
|
for name in logging.root.manager.loggerDict.keys():
|
57
58
|
if name in skip_logger_list:
|
58
59
|
continue
|
@@ -1,9 +1,8 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: je_editor
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.203
|
4
4
|
Summary: JEditor is basic but powerful editor include GPT
|
5
5
|
Author-email: JE-Chen <jechenmailman@gmail.com>
|
6
|
-
License: MIT
|
7
6
|
Project-URL: Homepage, https://github.com/JE-Chen/je_editor
|
8
7
|
Project-URL: Documentation, https://je-editor.readthedocs.io/en/latest/
|
9
8
|
Project-URL: Code, https://github.com/JE-Chen/je_editor
|
@@ -17,13 +16,14 @@ Classifier: Operating System :: OS Independent
|
|
17
16
|
Requires-Python: >=3.9
|
18
17
|
Description-Content-Type: text/markdown
|
19
18
|
License-File: LICENSE
|
20
|
-
Requires-Dist: PySide6==6.8.
|
19
|
+
Requires-Dist: PySide6==6.8.3
|
21
20
|
Requires-Dist: qt-material
|
22
21
|
Requires-Dist: yapf
|
23
22
|
Requires-Dist: frontengine
|
24
23
|
Requires-Dist: pycodestyle
|
25
24
|
Requires-Dist: jedi
|
26
25
|
Requires-Dist: qtconsole
|
26
|
+
Dynamic: license-file
|
27
27
|
|
28
28
|
# je_editor
|
29
29
|
|
@@ -6,15 +6,15 @@ build-backend = "setuptools.build_meta"
|
|
6
6
|
|
7
7
|
[project]
|
8
8
|
name = "je_editor"
|
9
|
-
version = "0.0.
|
9
|
+
version = "0.0.203"
|
10
10
|
authors = [
|
11
11
|
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
|
12
12
|
]
|
13
13
|
description = "JEditor is basic but powerful editor include GPT"
|
14
14
|
requires-python = ">=3.9"
|
15
|
-
license =
|
15
|
+
license-files = ["LICENSE"]
|
16
16
|
dependencies = [
|
17
|
-
"PySide6==6.8.
|
17
|
+
"PySide6==6.8.3", "qt-material", "yapf", "frontengine", "pycodestyle", "jedi", "qtconsole"
|
18
18
|
]
|
19
19
|
classifiers = [
|
20
20
|
"Programming Language :: Python :: 3.9",
|
@@ -36,8 +36,5 @@ Code = "https://github.com/JE-Chen/je_editor"
|
|
36
36
|
file = "README.md"
|
37
37
|
content-type = "text/markdown"
|
38
38
|
|
39
|
-
[tool.setuptools]
|
40
|
-
license-files = ["LICENSE"]
|
41
|
-
|
42
39
|
[tool.setuptools.packages]
|
43
40
|
find = { namespaces = false }
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/browser/browser_download_window.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/browser/browser_serach_lineedit.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/auto_save/auto_save_manager.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/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
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/plaintext_code_edit/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/shell_process/shell_exec.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/textedit_code_result/__init__.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/code/textedit_code_result/code_record.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/file_dialog/create_file_dialog.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/file_dialog/open_file_dialog.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/file_dialog/save_file_dialog.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/search_ui/search_error_box.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/dialog/search_ui/search_text_box.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/editor/editor_widget_dock.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/ipython_widget/__init__.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/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
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/dock_menu/__init__.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/file_menu/__init__.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/help_menu/__init__.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/language_menu/__init__.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/python_env_menu/__init__.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/run_menu/__init__.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/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
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/style_menu/__init__.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/tab_menu/__init__.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/tab_menu/build_tab_menu.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/menu/text_menu/__init__.py
RENAMED
File without changes
|
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/pyside_ui/main_ui/save_settings/__init__.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/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
|
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.201 → je_editor-0.0.203}/je_editor/utils/multi_language/multi_language_wrapper.py
RENAMED
File without changes
|
{je_editor-0.0.201 → je_editor-0.0.203}/je_editor/utils/multi_language/traditional_chinese.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
|