From 073f892bb100268620aef5da18ff985349f47c83 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 15 May 2026 19:16:33 -0500 Subject: [PATCH] Update Windows and macOS prebuilt dependencies - Reverted to SDL 3.4.x to fix GCMouse issues Fixes #1882 --- setup-deps.ps1 | 2 +- setup-deps.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup-deps.ps1 b/setup-deps.ps1 index dd088514..c7a0994d 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 = "v2" +$Tag = "v3" if (Test-Path $TargetDir) { Write-Host "Cleaning target directory..." -ForegroundColor Cyan diff --git a/setup-deps.py b/setup-deps.py index 483a13bc..05ec179c 100644 --- a/setup-deps.py +++ b/setup-deps.py @@ -7,7 +7,7 @@ import shutil ORGANIZATION = "moonlight-stream" PREBUILT_REPO = "moonlight-qt-deps" -TAG = "v2" +TAG = "v3" def get_platform_config(): system = platform.system()