Skip to content

Update to SDL2_image 2.8.8 #3401

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions buildconfig/download_win_prebuilt.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def get_urls(x86=True, x64=True):
'7a17d6fc7aa509c0c020e16ca10f82d6b5c2fc57'
],
[
'https://github.com/pygame-community/SDL_image/releases/download/2.8.4-pgce/SDL2_image-devel-2.8.4-VCpgce.zip',
'b9b4a5d44cab57901003255a1c1f98a42282762b'
'https://github.com/pygame-community/SDL_image/releases/download/2.8.8-pgce/SDL2_image-devel-2.8.8-VCpgce.zip',
'8cd149cbaae2d362f2eaa69483d992e79f4836f5'
],
[
'https://github.com/libsdl-org/SDL_image/releases/download/release-3.2.4/SDL3_image-devel-3.2.4-VC.zip',
Expand Down Expand Up @@ -213,12 +213,12 @@ def copy(src, dst):
copy(
os.path.join(
temp_dir,
'SDL2_image-devel-2.8.4-VCpgce/SDL2_image-2.8.4'
'SDL2_image-devel-2.8.8-VCpgce/SDL2_image-2.8.8'
),
os.path.join(
move_to_dir,
prebuilt_dir,
'SDL2_image-2.8.4'
'SDL2_image-2.8.8'
)
)
copy(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cd $(dirname `readlink -f "$0"`)

SDL2_VER="2.32.4"
SDL2="SDL2-$SDL2_VER"
IMG2_VER="2.8.4"
IMG2_VER="2.8.8"
IMG2="SDL2_image-$IMG2_VER"
TTF2_VER="2.24.0"
TTF2="SDL2_ttf-$TTF2_VER"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
36e2f9cc743703f03a4fa161b5a8134ded58be8952cd4a1e019ea013c744ece2ef83eac7a79257ee4ce9190dc79d33108cb6f2613d7f935aebe50af8be100a7b SDL2-2.32.4.tar.gz
a4b7436442be43b96dc7b90c9badd011da1622e283ae068b82367fcb72b7dd7a0357aec5550fe44103a77da75b8c570d5204fff11a805373f2194f92b8f71343 SDL2_image-2.8.4.tar.gz
5c521ae6a053e1eb6b42dce3ccccdbdb353eb7e9d1bd89392b1913bfc9fbb6b8a9d5506c80e5b7924b51637bb95cd270657ca87dafe60edd5534e333524bc901 SDL2_image-2.8.8.tar.gz
6148591404b2113bcdb54391821658548acfe380a9cba660113e55e6f2fb7da2a5a59a99fefe51a0d7f8b91160648f11f72750353da88d285a962e3a410aecd7 SDL2_mixer-2.8.1.tar.gz
a0f94e26f0387385f13ec1eb08ddca677d4181969073a50af387a0dce9c7bdddf393c028c8084538e01f875e19790ef7ae9a00c5106bf7ca9d21f3fcf9eee885 SDL2_ttf-2.24.0.tar.gz
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if plat == 'win' and host_machine.cpu_family().startswith('x86')
endif

sdl_ver = (sdl_api == 3) ? '3.2.10' : '2.32.4'
sdl_image_ver = (sdl_api == 3) ? '3.2.4' : '2.8.4'
sdl_image_ver = (sdl_api == 3) ? '3.2.4' : '2.8.8'
sdl_mixer_ver = '2.8.1'
sdl_ttf_ver = (sdl_api == 3) ? '3.2.2' : '2.24.0'

Expand Down
Loading