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

17
build_mac_docker.bat Normal file
View File

@@ -0,0 +1,17 @@
@echo off
setlocal
echo 构建Docker镜像...
docker build -t tingquan-mac-builder .
echo 运行Docker容器进行打包...
docker run --rm -v "%cd%":/app tingquan-mac-builder
echo 检查打包结果...
if exist "dist\听泉助手.app" (
echo 打包成功Mac应用程序包已生成在 dist\听泉助手.app
) else (
echo 打包失败,请检查错误信息
)
endlocal