更新验证器提价

This commit is contained in:
2026-03-25 15:17:18 +08:00
commit 93c2cebc94
73 changed files with 15872 additions and 0 deletions

35
build_for_delivery.bat Normal file
View File

@@ -0,0 +1,35 @@
@echo off
echo ========================================
echo 发布准备脚本
echo ========================================
echo.
echo 1. 检查/安装驱动...
call install_driver.bat
if %ERRORLEVEL% NEQ 0 (
echo 驱动安装失败,无法继续打包
pause
exit /b 1
)
echo.
echo 2. 清理旧的打包文件...
if exist build rmdir /s /q build
if exist dist rmdir /s /q dist
if exist *.spec del /q *.spec
echo.
echo 3. 开始打包...
pyinstaller ArticleReplace_optimized.spec
if %ERRORLEVEL% NEQ 0 (
echo 打包失败!
pause
exit /b 1
)
echo.
echo ========================================
echo 发布包已准备完成!
echo 位于: dist\ArticleReplace\
echo ========================================
pause