Skip to content

Commit 4c9d927

Browse files
committed
Version 0.1.11
增强参数浏览器功能,用户可直接从其中复制打包命令到终端或脚本中使用;
1 parent cd177cb commit 4c9d927

4 files changed

Lines changed: 64 additions & 65 deletions

File tree

poetry.lock

Lines changed: 60 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "py2exe-gui"
3-
version = "0.1.10"
3+
version = "0.1.11"
44
description = "GUI for PyInstaller, based on PySide6"
55
keywords = ["PyInstaller", "GUI", "PySide6"]
66
authors = ["muzing <muzi2001@foxmail.com>"]
@@ -24,11 +24,10 @@ PySide6 = "^6.6.0"
2424
[tool.poetry.group.dev]
2525

2626
[tool.poetry.group.dev.dependencies]
27-
# Sphinx = "^5.3.0"
2827
pre-commit = "^3.5.0"
2928
black = "^22.12.0"
3029
isort = "^5.12.0"
31-
ruff = "^0.1.6"
30+
ruff = "^0.1.7"
3231
mypy = "^1.7.0"
3332
pyinstaller = "^6.2.0"
3433

src/py2exe_gui/Constants/app_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ class AppConstant:
88
"""
99

1010
NAME = "Py2exe-GUI"
11-
VERSION = "0.1.10"
11+
VERSION = "0.1.11"
1212
AUTHORS = ["muzing <muzi2001@foxmail.com>"]
1313
LICENSE = "GPL-3.0-or-later"

src/py2exe_gui/Widgets/subprocess_widget.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def _setup(self) -> None:
4545
self.setModal(True) # 设置为模态对话框
4646

4747
# 连接信号与槽
48-
self.multifunction_btn.clicked.connect(self.handle_multifunction) # type:ignore
48+
self.multifunction_btn.clicked.connect(self.handle_multifunction) # type: ignore
4949

5050
# 布局管理器
5151
main_layout = QVBoxLayout()

0 commit comments

Comments
 (0)