diff --git a/.gitea/workflows/gui-version-release.yml b/.gitea/workflows/gui-version-release.yml index 44168a4..5904bde 100644 --- a/.gitea/workflows/gui-version-release.yml +++ b/.gitea/workflows/gui-version-release.yml @@ -142,7 +142,18 @@ jobs: # Install Pillow for icon conversion Write-Host "Installing Pillow for icon conversion..."; - pip install Pillow 2>&1 | Out-Null; + python -m pip install --upgrade pip; + python -m pip install Pillow; + + # Verify Pillow installation + Write-Host "Verifying Pillow installation..."; + python -c "from PIL import Image; print('Pillow version:', Image.__version__)"; + if ($LASTEXITCODE -ne 0) { + Write-Host "ERROR: Pillow installation verification failed"; + exit 1; + } + Write-Host "Pillow installed successfully"; + Write-Host ""; python build_production.py; if ($LASTEXITCODE -ne 0) { diff --git a/config.py b/config.py index e7ae5a6..e27d6e0 100644 --- a/config.py +++ b/config.py @@ -42,7 +42,7 @@ VERSION = "1.0" WINDOW_TITLE = "AI回复连接入口-V1.0" # 应用版本号(用于版本检查) -APP_VERSION = "1.5.7" +APP_VERSION = "1.5.8" # 平台特定配置 PLATFORMS = { diff --git a/version_history.json b/version_history.json index 93bd34c..45e4c31 100644 --- a/version_history.json +++ b/version_history.json @@ -1,4 +1,20 @@ [ + { + "version": "1.5.8", + "update_type": "patch", + "content": "[patch] 安装Pillow依赖", + "author": "Gitea Actions Bot", + "commit_hash": "b685e64e7119e680cb55f323c882e036b08c0784", + "commit_short_hash": "b685e64e", + "branch": "develop", + "release_time": "2025-10-11 16:27:55", + "download_url": "https://ks3-cn-guangzhou.ksyuncs.com/shuidrop-chat-server/installers/ShuiDi_AI_Assistant_Setup_v1.5.8.exe", + "stats": { + "files_changed": 3, + "lines_added": 21, + "lines_deleted": 1 + } + }, { "version": "1.5.7", "update_type": "patch",