From 546cb72e32e5ac04bbc7e0b3a254176e5696685a Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 27 Jul 2026 00:48:37 -0500 Subject: [PATCH] Update Windows, macOS, and AppImage dependencies - SDL -> c9ad2963 - dav1d -> 1.5.4 - Detours rebuilt with EHCont --- .github/workflows/build-appimage.yml | 4 ++-- setup-deps.ps1 | 2 +- setup-deps.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-appimage.yml b/.github/workflows/build-appimage.yml index 5b4e5d92..b28663de 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.12 + ref: c9ad296376ed6091e0fdec9844461fdf09af7845 path: deps/SDL - name: Build SDL3 @@ -116,7 +116,7 @@ jobs: - name: Build dav1d working-directory: deps env: - DAV1D_VER: 1.5.3 + DAV1D_VER: 1.5.4 run: | git clone --branch $DAV1D_VER --depth 1 https://code.videolan.org/videolan/dav1d.git pushd dav1d diff --git a/setup-deps.ps1 b/setup-deps.ps1 index 2d242bd1..1d3c6aaa 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 = "v8" +$Tag = "v10" if (Test-Path $TargetDir) { Write-Host "Cleaning target directory..." -ForegroundColor Cyan diff --git a/setup-deps.py b/setup-deps.py index 6151e7d3..b761227c 100644 --- a/setup-deps.py +++ b/setup-deps.py @@ -7,7 +7,7 @@ import shutil ORGANIZATION = "moonlight-stream" PREBUILT_REPO = "moonlight-qt-deps" -TAG = "v8" +TAG = "v10" def get_platform_config(): system = platform.system()