diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index 02e13e09..4d2c5159 100644 --- a/.github/workflows/build-appimage.yml +++ b/.github/workflows/build-appimage.yml @@ -42,7 +42,7 @@ jobs: uses: actions/checkout@v5 with: repository: libsdl-org/SDL - ref: release-3.4.4 + ref: release-3.4.8 path: deps/SDL - name: Build SDL3 @@ -56,7 +56,7 @@ jobs: uses: actions/checkout@v5 with: repository: libsdl-org/sdl2-compat - ref: release-2.32.66 + ref: release-2.32.68 path: deps/sdl2-compat - name: Build sdl2-compat @@ -70,7 +70,7 @@ jobs: uses: actions/checkout@v5 with: repository: libsdl-org/SDL_ttf - ref: release-2.22.0 + ref: a883e490e30fb44a5336ea3dcb990c6982c5216f path: deps/SDL_ttf submodules: 'recursive' @@ -128,7 +128,7 @@ jobs: uses: actions/checkout@v5 with: repository: FFmpeg/FFmpeg - ref: n8.1 + ref: n8.1.1 path: deps/FFmpeg - name: Build FFmpeg diff --git a/setup-deps.ps1 b/setup-deps.ps1 index ad3e9477..dd088514 100644 --- a/setup-deps.ps1 +++ b/setup-deps.ps1 @@ -4,7 +4,7 @@ $Organization = "moonlight-stream" $PrebuiltRepo = "moonlight-qt-deps" $TargetDir = Join-Path $PSScriptRoot "libs\windows" $Assets = @("windows-x64.zip", "windows-ARM64.zip") -$Tag = "v1.0.1" +$Tag = "v2" if (Test-Path $TargetDir) { Write-Host "Cleaning target directory..." -ForegroundColor Cyan diff --git a/setup-deps.py b/setup-deps.py index 9ef35264..483a13bc 100644 --- a/setup-deps.py +++ b/setup-deps.py @@ -7,7 +7,7 @@ import shutil ORGANIZATION = "moonlight-stream" PREBUILT_REPO = "moonlight-qt-deps" -TAG = "v1.0.1" +TAG = "v2" def get_platform_config(): system = platform.system()