Skip to content

Commit

Permalink
修复 GITHUB_ACTIONS 构建错误 (#6)
Browse files Browse the repository at this point in the history
添加 InnoSetup 命令行工具
使用 ISCC 构建
添加首页 ReadMe 文档
修复文件位置错误
  • Loading branch information
hwf1324 authored Mar 27, 2024
1 parent 275a4e8 commit d2832a9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: vcredist_x86.exe
path: ${{ github.workspace }}/Resource/vcredist_x86.exe
path: ${{ github.workspace }}/Resource/
- name: Download Speech Resource
uses: actions/download-artifact@v4
with:
Expand All @@ -233,9 +233,6 @@ jobs:
path: ${{ github.workspace }}/Resource/Addons/
pattern: "*.nvda-addon"
merge-multiple: true
- run: |
chcp 65001
tree /F /A
- run: ${{ github.workspace }}/执行脚本.bat GITHUB_ACTIONS
- name: Upload Output
uses: actions/upload-artifact@v4
Expand Down
5 changes: 5 additions & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# NVDA Lazy Edition

[中文](documentation/ReadMe.md)

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.
Binary file added Tools/InnoSetup/ISCC.exe
Binary file not shown.
6 changes: 3 additions & 3 deletions 执行脚本.bat
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ Rem 开始生成
MKDir "%~dp0Output"
COPY /B /V /Y "%~dp0documentation\changes.md" "%~dp0Output\更新日志.txt"
COPY /B /V /Y "%~dp0documentation\ReadMe.md" "%~dp0Output\说明.txt"
"%~dp0Tools\InnoSetup\Compil32" /cc "%~dp0便携版安装脚本.iss"
"%~dp0Tools\InnoSetup\Compil32" /cc "%~dp0懒人版安装脚本.iss"
"%~dp0Tools\InnoSetup\Compil32" /cc "%~dp0恢复备份的 NVDA 配置.iss"
"%~dp0Tools\InnoSetup\ISCC" /Qp "%~dp0便携版安装脚本.iss"
"%~dp0Tools\InnoSetup\ISCC" /Qp "%~dp0懒人版安装脚本.iss"
"%~dp0Tools\InnoSetup\ISCC" /Qp "%~dp0恢复备份的 NVDA 配置.iss"
"%~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"

Expand Down

0 comments on commit d2832a9

Please sign in to comment.