first commit: 初始化项目,添加基本功能和打包脚本
Some checks failed
Remove old artifacts / remove-old-artifacts (push) Has been cancelled

This commit is contained in:
huangzhenpc
2025-02-17 18:58:01 +08:00
parent 351b12a039
commit 96604f7139
9 changed files with 1015 additions and 1 deletions

View File

@@ -1,3 +1,69 @@
# 听泉助手
一个用于管理Cursor编辑器授权的跨平台桌面应用。
## 功能特点
- 设备ID管理
- 会员状态显示
- 激活码管理
- Cursor编辑器授权刷新
- 版本限制实现
- 更新控制
## 开发环境要求
- Python 3.9+
- PyQt5
- 其他依赖见 requirements.txt
## 安装依赖
```bash
# 创建虚拟环境
python -m venv venv
# 激活虚拟环境
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate
# 安装依赖
pip install -r requirements.txt
```
## 打包说明
### Windows版本
```bash
# 运行打包脚本
build_win.bat
```
### Mac版本
```bash
# 添加执行权限
chmod +x build_mac.command
# 运行打包脚本
./build_mac.command
```
## 项目结构
```
.
├── README.md
├── requirements.txt
├── build_mac.command # Mac打包脚本
├── build_win.bat # Windows打包脚本
├── gui/
│ └── main_window.py # 主窗口界面
├── logger.py # 日志模块
├── update_cursor_token.py # 授权更新模块
└── ... # 其他模块
```
# Cursor Pro 自动化工具使用说明