Skip to content

Commit 73d95d8

Browse files
committed
Version 0.1.5
项目版本更新至 `0.1.5`; 将所有静态资源通过qrc系统编译至源码中; 其他代码优化;
1 parent e0a3698 commit 73d95d8

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
Py2exe-GUI 是一个基于 [PySide6](https://doc.qt.io/qtforpython/index.html) 开发的 [PyInstaller](https://pyinstaller.org/) 辅助工具,旨在提供完整易用的图形化界面,方便用户进行 Python 项目的打包。
1717

18-
![截图](docs/source/images/Py2exe-GUI_v0.1.0_screenshot.png)
18+
![界面截图](docs/source/images/Py2exe-GUI_v0.1.0_screenshot.png)
1919

2020
有如下特性:
2121

@@ -34,7 +34,7 @@ Py2exe-GUI 是一个基于 [PySide6](https://doc.qt.io/qtforpython/index.html)
3434
首先在待打包的 Python 解释器环境中安装 PyInstaller:
3535

3636
```shell
37-
pip install pyinstaller==5.5
37+
pip install pyinstaller==5.6
3838
```
3939

4040
然后通过 pip 安装 Py2exe-GUI:
@@ -107,7 +107,7 @@ python Py2exe-GUI.py
107107
- [ ] ~~定义文件并以适当格式存储(`json`~~
108108
- [ ] 创建 [`.spec` 文件](https://pyinstaller.org/en/stable/spec-files.html)
109109
- [ ] `spec` 编辑器
110-
- [ ] 使用qrc管理[静态资源](src/py2exe_gui/Resources)
110+
- [x] 使用 `qrc` 管理[静态资源](src/py2exe_gui/Resources)
111111
- [ ] `logging` 日志记录
112112
- [ ] QSS 与美化
113113
- [ ] 动画效果

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "py2exe-gui"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "GUI for PyInstaller, based on PySide6"
55
keywords = ["PyInstaller", "GUI", "PySide6"]
66
authors = ["muzing <muzi2001@foxmail.com>"]

src/py2exe_gui/Constants/app_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"""
44

55
NAME = "Py2exe-GUI"
6-
VERSION = "0.1.3"
6+
VERSION = "0.1.5"
77
AUTHORS = ["muzing <muzi2001@foxmail.com>"]
88
LICENSE = "GPL-3.0-or-later"

0 commit comments

Comments
 (0)