Skip to content

Commit

Permalink
Update version and fix path problem
Browse files Browse the repository at this point in the history
  • Loading branch information
JE-Chen committed Sep 24, 2023
1 parent f61e426 commit d0c418b
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 51 deletions.
74 changes: 37 additions & 37 deletions exe/jeditor_build_project.ifp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ProjectFileVersion = 1.1
[General]
Program name = jeditor
Program version = 1.0.2
Program version = 1.0.3
Windows XP = 0
Windows Server 2003 = 0
Windows Vista = 0
Expand Down Expand Up @@ -78,6 +78,42 @@ Execdlls = 0
2
21
[Files/Dirs]
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\libzmq-v141-mt-4_3_4-0a6f51ca.dll
513 KB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\msvcp140.dll
607.4 KB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\pyexpat.pyd
194.3 KB
pyd
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\python3.dll
64.8 KB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\python310.dll
4.3 MB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\select.pyd
29.3 KB
pyd
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\sqlite3.dll
1.4 MB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\tcl86t.dll
1.8 MB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\tk86t.dll
1.5 MB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\unicodedata.pyd
1.1 MB
pyd
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\VCRUNTIME140.dll
95.9 KB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\VCRUNTIME140_1.dll
36.4 KB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\aiohttp
N/A
[Folder]
Expand Down Expand Up @@ -318,42 +354,6 @@ dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\libssl-1_1.dll
688.3 KB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\libzmq-v141-mt-4_3_4-0a6f51ca.dll
513 KB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\msvcp140.dll
607.4 KB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\pyexpat.pyd
194.3 KB
pyd
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\python3.dll
64.8 KB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\python310.dll
4.3 MB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\select.pyd
29.3 KB
pyd
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\sqlite3.dll
1.4 MB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\tcl86t.dll
1.8 MB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\tk86t.dll
1.5 MB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\unicodedata.pyd
1.1 MB
pyd
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\VCRUNTIME140.dll
95.9 KB
dll
C:\CodeWorkspace\je_editor\output\JEditor\JEditor\VCRUNTIME140_1.dll
36.4 KB
dll
[Licence_Begin]
1609
{\rtf1\ansi\ansicpg950\deff0\nouicompat\deflang1033\deflangfe1028{\fonttbl{\f0\fnil Arial;}}
Expand Down
2 changes: 1 addition & 1 deletion je_editor/pyside_ui/main_ui/editor/editor_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,6 @@ def close(self) -> bool:
if self.code_save_thread is not None:
self.code_save_thread.still_run = False
self.code_save_thread = None
file_is_open_manager_dict.pop(self.current_file, None)
file_is_open_manager_dict.pop(str(Path(self.current_file)), None)
auto_save_manager_dict.pop(self.current_file, None)
return super().close()
1 change: 0 additions & 1 deletion je_editor/pyside_ui/main_ui/editor/editor_widget_dock.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class FullEditorWidget(QWidget):
def __init__(self, current_file: str):
super().__init__()
# Init variable
self.auto_save_thread = None
self.current_file = current_file
# Attr
self.setAttribute(Qt.WidgetAttribute.WA_DeleteOnClose)
Expand Down
2 changes: 1 addition & 1 deletion je_editor/pyside_ui/main_ui/main_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def event(self, event: QEvent) -> bool:

def close_tab(self, index: int):
widget = self.tab_widget.widget(index)
if widget is not None:
if widget:
widget.close()
self.tab_widget.removeTab(index)

Expand Down
11 changes: 5 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Rename to build stable version
# This is stable version
# Rename to build dev version
# This is dev version
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "je_editor"
version = "0.0.166"
name = "je_editor_dev"
version = "0.0.181"
authors = [
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
]
Expand All @@ -26,7 +26,6 @@ classifiers = [
"Operating System :: OS Independent"
]


[project.urls]
Homepage = "https://github.com/JE-Chen/je_editor"
Documentation = "https://je-editor.readthedocs.io/en/latest/"
Expand Down
11 changes: 6 additions & 5 deletions dev.toml → stable.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Rename to build dev version
# This is dev version
# Rename to build stable version
# This is stable version
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "je_editor_dev"
version = "0.0.180"
name = "je_editor"
version = "0.0.167"
authors = [
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
]
Expand All @@ -26,6 +26,7 @@ classifiers = [
"Operating System :: OS Independent"
]


[project.urls]
Homepage = "https://github.com/JE-Chen/je_editor"
Documentation = "https://je-editor.readthedocs.io/en/latest/"
Expand Down

0 comments on commit d0c418b

Please sign in to comment.