Skip to content

Commit 0426566

Browse files
committed
Bump SDL(2+3)
1 parent 57db101 commit 0426566

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

buildconfig/download_win_prebuilt.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ def get_urls(x86=True, x64=True):
7878
url_sha1 = []
7979
url_sha1.extend([
8080
[
81-
'https://github.com/libsdl-org/SDL/releases/download/release-2.30.11/SDL2-devel-2.30.11-VC.zip',
82-
'163e3300a1450e6e7d4fff0d35b039c3eae44e79',
81+
'https://github.com/libsdl-org/SDL/releases/download/release-2.30.12/SDL2-devel-2.30.12-VC.zip',
82+
'e63d904330034ab9e6794eb1f54fe2fb7d21e9f7',
8383
],
8484
[
85-
'https://github.com/libsdl-org/SDL/releases/download/release-3.2.0/SDL3-devel-3.2.0-VC.zip',
86-
'd382072cd045d74a802541bf8d0b13e21ffed740'
85+
'https://github.com/libsdl-org/SDL/releases/download/release-3.2.2/SDL3-devel-3.2.2-VC.zip',
86+
'fabb3c78f7eebf6a877e8f91d17d6dd10a987b27'
8787
],
8888
[
8989
'https://github.com/pygame-community/SDL_image/releases/download/2.8.4-pgce/SDL2_image-devel-2.8.4-VCpgce.zip',
@@ -254,23 +254,23 @@ def copy(src, dst):
254254
copy(
255255
os.path.join(
256256
temp_dir,
257-
'SDL2-devel-2.30.11-VC/SDL2-2.30.11'
257+
'SDL2-devel-2.30.12-VC/SDL2-2.30.12'
258258
),
259259
os.path.join(
260260
move_to_dir,
261261
prebuilt_dir,
262-
'SDL2-2.30.11'
262+
'SDL2-2.30.12'
263263
)
264264
)
265265
copy(
266266
os.path.join(
267267
temp_dir,
268-
'SDL3-devel-3.2.0-VC/SDL3-3.2.0'
268+
'SDL3-devel-3.2.2-VC/SDL3-3.2.2'
269269
),
270270
os.path.join(
271271
move_to_dir,
272272
prebuilt_dir,
273-
'SDL3-3.2.0'
273+
'SDL3-3.2.2'
274274
)
275275
)
276276

buildconfig/manylinux-build/docker_base/sdl_libs/build-sdl2-libs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -e -x
33

44
cd $(dirname `readlink -f "$0"`)
55

6-
SDL2_VER="2.30.11"
6+
SDL2_VER="2.30.12"
77
SDL2="SDL2-$SDL2_VER"
88
IMG2_VER="2.8.4"
99
IMG2="SDL2_image-$IMG2_VER"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cd4c040ebe4ec74250e32b401a292658353721dda30ad1066522b2a9de9a07560313978880a0bad7e7f5103cc14278fcbe27dbc5a188189e7fb6f097e7308550 SDL2-2.30.11.tar.gz
1+
358dc9aabebdd1242245183a76d1ddff7b312f3db1f9fd247a7bd444bc8ca4c49e36a5a02bc577f2ee0b1f38f06f85b35a3db3616fdc9a6c67cd066db5152ac7 SDL2-2.30.12.tar.gz
22
a4b7436442be43b96dc7b90c9badd011da1622e283ae068b82367fcb72b7dd7a0357aec5550fe44103a77da75b8c570d5204fff11a805373f2194f92b8f71343 SDL2_image-2.8.4.tar.gz
33
5ddbc4b0b5fad2e0844a503daa79564b912654192599ef8fa7698531f08323ce01801f6bb17b2b3905020a3df362a967b7566ae725eb085da991578cc0807aad SDL2_mixer-2.8.0.tar.gz
44
a0f94e26f0387385f13ec1eb08ddca677d4181969073a50af387a0dce9c7bdddf393c028c8084538e01f875e19790ef7ae9a00c5106bf7ca9d21f3fcf9eee885 SDL2_ttf-2.24.0.tar.gz

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ if plat == 'win' and host_machine.cpu_family().startswith('x86')
109109
)
110110
endif
111111

112-
sdl_ver = (sdl_api == 3) ? '3.2.0' : '2.30.11'
112+
sdl_ver = (sdl_api == 3) ? '3.2.2' : '2.30.12'
113113
sdl_image_ver = (sdl_api == 3) ? '3.1.1' : '2.8.4'
114114
sdl_mixer_ver = '2.8.0'
115115
sdl_ttf_ver = '2.24.0'

0 commit comments

Comments
 (0)