Files
df-scope-hold/CHANGELOG.md
T
zhengchen.tao f5e3c8dff0 feat: 改用 PyInstaller 单 exe 分发,移除 PortablePython 内嵌运行时
- 仓库不再内置 25MB+ 的 Python 运行时与依赖;改由 PyInstaller 在 CI 打成单 exe,内嵌 UAC manifest,双击自动请求管理员权限
- 新增 GitHub / Gitea Actions(推送 v* tag 或页面手动触发),自动构建并发布 release,附 release zip(exe + config.ini + README)
- release body 由 workflow 抽取 CHANGELOG.md 对应版本段,并自动注入 UTC 构建日期;CHANGELOG 文件不再手填日期
- script.py 适配 PyInstaller 冻结模式:config.ini 从 exe 同目录读取,避免落入 _MEI 临时解压目录
- README 重写使用流程,强调本工具仅支持「按住开镜」模式,与「切换/按键开镜」不兼容
- 新增 requirements.txt 记录运行/构建依赖;.gitignore 排除 build/ dist/ release/ *.spec
2026-05-07 14:26:45 +08:00

23 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Changelog
本项目所有重要变更记录于此文件。格式参考 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.1.0/),版本号遵循 [Semantic Versioning](https://semver.org/lang/zh-CN/)。
> 发布日期由 release workflow 在构建时自动注入到 GitHub/Gitea Release 页面,本文件版本标题不再手填日期。
## [Unreleased]
## [v0.1.0]
首个正式发布版本。
### Added
- 监听鼠标右键按下/松开,自动模拟绑定的"屏息"键(默认 `F12`
- 进程门控:仅在目标游戏进程运行时激活监听,游戏关闭自动停止,重启自动恢复
- `config.ini` 配置文件,可自定义按键、按键延迟(毫秒)、目标进程名
- Windows 单 exe 分发,内嵌 UAC manifest,双击自动请求管理员权限
- GitHub / Gitea Actions 自动构建并发布 release zip(含 exe + 默认 config.ini
### Notes
- 游戏客户端通常以管理员权限运行,本工具必须以同等权限运行才能检测到游戏进程
- 仅在 Windows 上验证(三角洲行动客户端为 Windows 独占)