Skip to content

Commit d2832a9

Browse files
authoredMar 27, 2024··
修复 GITHUB_ACTIONS 构建错误 (#6)
添加 InnoSetup 命令行工具 使用 ISCC 构建 添加首页 ReadMe 文档 修复文件位置错误
1 parent 275a4e8 commit d2832a9

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed
 

‎.github/workflows/build.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
uses: actions/download-artifact@v4
221221
with:
222222
name: vcredist_x86.exe
223-
path: ${{ github.workspace }}/Resource/vcredist_x86.exe
223+
path: ${{ github.workspace }}/Resource/
224224
- name: Download Speech Resource
225225
uses: actions/download-artifact@v4
226226
with:
@@ -233,9 +233,6 @@ jobs:
233233
path: ${{ github.workspace }}/Resource/Addons/
234234
pattern: "*.nvda-addon"
235235
merge-multiple: true
236-
- run: |
237-
chcp 65001
238-
tree /F /A
239236
- run: ${{ github.workspace }}/执行脚本.bat GITHUB_ACTIONS
240237
- name: Upload Output
241238
uses: actions/upload-artifact@v4

‎ReadMe.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# NVDA Lazy Edition
2+
3+
[中文](documentation/ReadMe.md)
4+
5+
This program is created based on the official version of NVDA, mainly modifying individual options that affect the use of simplified Chinese users, and integrating some of the more commonly used add-ons and speech.

‎Tools/InnoSetup/ISCC.exe

1010 KB
Binary file not shown.

‎执行脚本.bat

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Rem 开始生成
2828
MKDir "%~dp0Output"
2929
COPY /B /V /Y "%~dp0documentation\changes.md" "%~dp0Output\更新日志.txt"
3030
COPY /B /V /Y "%~dp0documentation\ReadMe.md" "%~dp0Output\说明.txt"
31-
"%~dp0Tools\InnoSetup\Compil32" /cc "%~dp0便携版安装脚本.iss"
32-
"%~dp0Tools\InnoSetup\Compil32" /cc "%~dp0懒人版安装脚本.iss"
33-
"%~dp0Tools\InnoSetup\Compil32" /cc "%~dp0恢复备份的 NVDA 配置.iss"
31+
"%~dp0Tools\InnoSetup\ISCC" /Qp "%~dp0便携版安装脚本.iss"
32+
"%~dp0Tools\InnoSetup\ISCC" /Qp "%~dp0懒人版安装脚本.iss"
33+
"%~dp0Tools\InnoSetup\ISCC" /Qp "%~dp0恢复备份的 NVDA 配置.iss"
3434
"%~dp0Tools\7Zip\7z.exe" a -y -tzip "%~dp0Output\Archive\NVDA_Lazy_Edition_%VersionDate%.zip" "%~dp0Output\NVDA 懒人版.exe" "%~dp0Output\更新日志.txt" "%~dp0Output\说明.txt" "%~dp0Output\NVDA 配置恢复工具.exe"
3535
"%~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"
3636

0 commit comments

Comments
 (0)
Please sign in to comment.