From d7973b33e5b949efeddaa1c38dd3ee16125397fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Lucas=20Golini?= Date: Sun, 27 Jul 2025 23:17:01 -0300 Subject: [PATCH] Pump SDL2. --- .github/workflows/ecode-nightly.yml | 4 ++-- premake4.lua | 2 +- premake5.lua | 2 +- projects/linux/scripts/install_sdl2.sh | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ecode-nightly.yml b/.github/workflows/ecode-nightly.yml index 2921a9e3b..55cd74aff 100644 --- a/.github/workflows/ecode-nightly.yml +++ b/.github/workflows/ecode-nightly.yml @@ -333,8 +333,8 @@ jobs: - name: Install Dependencies run: | brew install bash create-dmg premake p7zip - curl -OL https://github.com/libsdl-org/SDL/releases/download/release-2.32.2/SDL2-2.32.2.dmg - hdiutil attach SDL2-2.32.2.dmg + curl -OL https://github.com/libsdl-org/SDL/releases/download/release-2.32.8/SDL2-2.32.8.dmg + hdiutil attach SDL2-2.32.8.dmg sudo cp -r /Volumes/SDL2/SDL2.framework /Library/Frameworks/ hdiutil detach /Volumes/SDL2 - name: Build diff --git a/premake4.lua b/premake4.lua index 29070e33d..835cc1a25 100644 --- a/premake4.lua +++ b/premake4.lua @@ -344,7 +344,7 @@ os_links = { } backends = { } static_backends = { } backend_selected = false -remote_sdl2_version = "SDL2-2.32.2" +remote_sdl2_version = "SDL2-2.32.8" function build_arch_configuration() if os.is_real("mingw32") or os.is_real("mingw64") then diff --git a/premake5.lua b/premake5.lua index 91d7af7c8..d25dc5909 100644 --- a/premake5.lua +++ b/premake5.lua @@ -151,7 +151,7 @@ os_links = { } backends = { } static_backends = { } backend_selected = false -remote_sdl2_version_number = "2.32.2" +remote_sdl2_version_number = "2.32.8" remote_sdl2_version = "SDL2-" .. remote_sdl2_version_number remote_sdl2_devel_src_url = "https://libsdl.org/release/" .. remote_sdl2_version .. ".zip" remote_sdl2_devel_vc_url = "https://www.libsdl.org/release/SDL2-devel-" .. remote_sdl2_version_number .. "-VC.zip" diff --git a/projects/linux/scripts/install_sdl2.sh b/projects/linux/scripts/install_sdl2.sh index dfc851e17..f8a019a90 100644 --- a/projects/linux/scripts/install_sdl2.sh +++ b/projects/linux/scripts/install_sdl2.sh @@ -1,7 +1,7 @@ #!/bin/bash # Define SDL version and download URL -SDL_VERSION="2.32.2" +SDL_VERSION="2.32.8" SDL_URL="https://libsdl.org/release/SDL2-${SDL_VERSION}.zip" ARCH="x86_64" # Default architecture for host