Skip to content

Commit 4d5cd3c

Browse files
committed
- 更新所有样式文件,添加渐变效果和动画支持
- 重构构建脚本,移除不必要的补丁功能 - 添加pycdlib依赖以支持CAB格式 - 优化更新脚本,支持备份和全局安装 - 清理测试文件和文档,简化项目结构
1 parent 3ef44d6 commit 4d5cd3c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+2781
-27680
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: github.event_name == 'push'
3030
uses: softprops/action-gh-release@v2
3131
with:
32-
tag_name: 2.0.0B5
32+
tag_name: 2.0.0B4
3333
name: 2.0.0 Beta 4
3434
body: ${{ github.event.head_commit.message }}
3535
prerelease: true
@@ -53,7 +53,7 @@ jobs:
5353
if: github.event_name == 'push'
5454
uses: softprops/action-gh-release@v2
5555
with:
56-
tag_name: 2.0.0B5
56+
tag_name: 2.0.0B4
5757
name: 2.0.0 Beta 5
5858
body: ${{ github.event.head_commit.message }}
5959
prerelease: true

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ __pycache__/
55
.DS_Store
66
# C extensions
77
*.so
8-
8+
nuitka-crash-report.xml
99
# Distribution / packaging
1010
.Python
1111
build/

.trae/rules/project_rules.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

Converter.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
import os
77
import threading
88
import time
9+
target="com.pyquick.converter"
10+
from patch import enable
11+
enable(target)
912
from PySide6.QtWidgets import (
1013
QApplication,
1114
QWidget,
@@ -330,7 +333,7 @@ def __init__(self, parent=None):
330333
layout.addWidget(title)
331334

332335
# Subtitle
333-
subtitle = QLabel("正在启动应用...")
336+
subtitle = QLabel("Starting...")
334337
subtitle.setStyleSheet("""
335338
font-size: 14px;
336339
color: #666;
@@ -372,7 +375,7 @@ def __init__(self, parent=None):
372375
layout.addWidget(title)
373376

374377
# Subtitle
375-
subtitle = QLabel("正在启动应用...")
378+
subtitle = QLabel("Starting...")
376379
subtitle.setStyleSheet("""
377380
font-size: 14px;
378381
color: #666;

TODO.md

Lines changed: 0 additions & 63 deletions
This file was deleted.
162 Bytes
Binary file not shown.
51 Bytes
Binary file not shown.

__pycache__/clean.cpython-313.pyc

-5 Bytes
Binary file not shown.

__pycache__/con.cpython-313.pyc

10 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)