From d122cbf9c35fbf6b71548a61317b88e7dc328558 Mon Sep 17 00:00:00 2001 From: WMHN <1872265132@qq.com> Date: Sun, 31 Mar 2024 12:58:10 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E5=88=A0=E9=99=A4aisound.dll?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\346\211\247\350\241\214\350\204\232\346\234\254.bat" | 5 +++++ 1 file changed, 5 insertions(+) diff --git "a/\346\211\247\350\241\214\350\204\232\346\234\254.bat" "b/\346\211\247\350\241\214\350\204\232\346\234\254.bat" index b7e4cb1..34da308 100644 --- "a/\346\211\247\350\241\214\350\204\232\346\234\254.bat" +++ "b/\346\211\247\350\241\214\350\204\232\346\234\254.bat" @@ -24,6 +24,11 @@ if "%1" == "GITHUB_ACTIONS" ( Rem GitHub Actions 构建流程 :GitHub +Rem 删除aisound.dll +for /r "%~dp0Resource\Addons" %%i in (AISound*.nvda-addon) do ( + "%~dp0Tools\7Zip\7z.exe" d -sccUTF-8 -y "%%i" "synthDrivers\aisound.dll" +) + Rem 开始生成 set VersionDate=%date:~-4%.%date:~-10,2%.%date:~-7,2% "%~dp0Tools\InnoSetup\ISCC" /Q "%~dp0便携版安装脚本.iss" From b42503a546ea224a795b28360d22ee03855dbe24 Mon Sep 17 00:00:00 2001 From: WMHN <1872265132@qq.com> Date: Sun, 31 Mar 2024 13:00:03 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=BC=95=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\346\211\247\350\241\214\350\204\232\346\234\254.bat" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/\346\211\247\350\241\214\350\204\232\346\234\254.bat" "b/\346\211\247\350\241\214\350\204\232\346\234\254.bat" index 34da308..f0f1dcc 100644 --- "a/\346\211\247\350\241\214\350\204\232\346\234\254.bat" +++ "b/\346\211\247\350\241\214\350\204\232\346\234\254.bat" @@ -7,7 +7,7 @@ IF EXIST "%~dp0Temp" (rd /s /q "%~dp0Temp") Rem 创建便携版 NVDA for /r "%~dp0Resource" %%i in (nvda_20*.exe) do ( - %%i --create-portable-silent --portable-path="%~dp0Temp\NVDA" + "%%i" --create-portable-silent --portable-path="%~dp0Temp\NVDA" ) Rem 生成文档的 txt 版本 From 47695976277c243342e0304a278ade80f7cc7e36 Mon Sep 17 00:00:00 2001 From: WMHN <1872265132@qq.com> Date: Sun, 31 Mar 2024 13:03:29 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E5=B0=9D=E8=AF=95=E4=BF=AE=E5=A4=8D7Zip?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E4=B9=B1=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "\346\211\247\350\241\214\350\204\232\346\234\254.bat" | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git "a/\346\211\247\350\241\214\350\204\232\346\234\254.bat" "b/\346\211\247\350\241\214\350\204\232\346\234\254.bat" index f0f1dcc..a4fdc3f 100644 --- "a/\346\211\247\350\241\214\350\204\232\346\234\254.bat" +++ "b/\346\211\247\350\241\214\350\204\232\346\234\254.bat" @@ -53,7 +53,7 @@ set VersionDate=%date:~3,4%.%date:~8,2%.%date:~11,2% :Archive Rem 生成程序压缩文件 -"%~dp0Tools\7Zip\7z.exe" a -y -tzip "%~dp0Output\Archive\NVDA_Lazy_Edition_%VersionDate%.zip" "%~dp0Output\NVDA 懒人版.exe" "%~dp0Output\更新日志.txt" "%~dp0Output\说明.txt" "%~dp0Output\NVDA 配置恢复工具.exe" -"%~dp0Tools\7Zip\7z.exe" a -y -tzip "%~dp0Output\Archive\Source_Code_And_Dependency_Files_%VersionDate%.zip" "%~dp0documentation" "%~dp0Resource" "%~dp0Tools" "%~dp0userConfig" "%~dp0ReadMe.md" "%~dp0便携版安装脚本.iss" "%~dp0恢复备份的 NVDA 配置.iss" "%~dp0懒人版安装脚本.iss" "%~dp0执行脚本.bat" +"%~dp0Tools\7Zip\7z.exe" a -sccUTF-8 -y -tzip "%~dp0Output\Archive\NVDA_Lazy_Edition_%VersionDate%.zip" "%~dp0Output\NVDA 懒人版.exe" "%~dp0Output\更新日志.txt" "%~dp0Output\说明.txt" "%~dp0Output\NVDA 配置恢复工具.exe" +"%~dp0Tools\7Zip\7z.exe" a -sccUTF-8 -y -tzip "%~dp0Output\Archive\Source_Code_And_Dependency_Files_%VersionDate%.zip" "%~dp0documentation" "%~dp0Resource" "%~dp0Tools" "%~dp0userConfig" "%~dp0ReadMe.md" "%~dp0便携版安装脚本.iss" "%~dp0恢复备份的 NVDA 配置.iss" "%~dp0懒人版安装脚本.iss" "%~dp0执行脚本.bat" Exit