fix: Remove missing icon references and fix batch syntax
- Remove icon references from package.json (assets folder is empty) - Fix batch script syntax by replacing if/else blocks with goto labels - Remove parentheses and colons that conflict with batch syntax 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -473,19 +473,26 @@ dir /b "%BUILD_DIR%"
|
||||
echo.
|
||||
echo %GREEN%[OK]%NC% 打包完成!
|
||||
echo.
|
||||
if /i "%BUILD_TARGET%"=="nsis" (
|
||||
echo Windows 使用說明 (NSIS 安裝檔):
|
||||
echo 1. 找到 build\ 中的 *-setup.exe 檔案
|
||||
echo 2. 執行安裝檔,選擇安裝目錄
|
||||
echo 3. 安裝後從開始選單或桌面捷徑啟動
|
||||
echo 4. 資料會持久保存在安裝目錄中
|
||||
) else (
|
||||
echo Windows 使用說明 (Portable):
|
||||
echo 1. 找到 build\ 中的 *-portable.exe 檔案
|
||||
echo 2. 直接執行,無需安裝
|
||||
echo 3. 注意: 關閉程式後臨時檔案會清空
|
||||
echo 4. SQLite 資料庫保存在 %%APPDATA%%\Meeting-Assistant
|
||||
)
|
||||
if /i "%BUILD_TARGET%"=="nsis" goto :show_nsis_help
|
||||
goto :show_portable_help
|
||||
|
||||
:show_nsis_help
|
||||
echo Windows 使用說明 - NSIS 安裝檔
|
||||
echo 1. 找到 build\ 中的 *-setup.exe 檔案
|
||||
echo 2. 執行安裝檔,選擇安裝目錄
|
||||
echo 3. 安裝後從開始選單或桌面捷徑啟動
|
||||
echo 4. 資料會持久保存在安裝目錄中
|
||||
goto :end_help
|
||||
|
||||
:show_portable_help
|
||||
echo Windows 使用說明 - Portable
|
||||
echo 1. 找到 build\ 中的 *-portable.exe 檔案
|
||||
echo 2. 直接執行,無需安裝
|
||||
echo 3. 注意 - 關閉程式後臨時檔案會清空
|
||||
echo 4. SQLite 資料庫保存在 %%APPDATA%%\Meeting-Assistant
|
||||
goto :end_help
|
||||
|
||||
:end_help
|
||||
echo.
|
||||
goto :eof
|
||||
|
||||
|
||||
Reference in New Issue
Block a user