git repos / blockattack-game

commit 98103e6a

Poul Sander · 2022-10-18 10:56
98103e6a4358c9fce2209863068a248f5a6deb52 patch · browse files
parent 59c9696e667b954f983e0686019bf580c1b5658c

Updated version numbers for the standalone version

Changed files

M CHANGELOG.md before
M source/misc/standalone/compile_requirements.sh before
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f30acd..f9be8b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -5,6 +5,11 @@
### Added
- Added Swedish translation by sanchez-gayatri
+### Changed
+ - Update library versions for the compiled version:
+ - SDL2: 2.0.20 to 2.24.1
+ - SDL2_ttf: 2.0.15 to 2.0.18
+
## [2.8.0] - 2022-02-18
### Added
diff --git a/source/misc/standalone/compile_requirements.sh b/source/misc/standalone/compile_requirements.sh index 6b4d0cd..b76a383 100755 --- a/source/misc/standalone/compile_requirements.sh +++ b/source/misc/standalone/compile_requirements.sh
@@ -2,8 +2,8 @@
set -e
set -x
-mkdir -p /staging/deps && cd /staging/deps && curl https://libsdl.org/release/SDL2-2.0.20.tar.gz | tar -zx && cd SDL2-2.0.20 && ls -lrt
-cd /staging/deps/SDL2-2.0.20 && ./configure --enable-shared --enable-static && make && make install
+mkdir -p /staging/deps && cd /staging/deps && curl https://libsdl.org/release/SDL2-2.24.1.tar.gz | tar -zx && cd SDL2-2.24.1 && ls -lrt
+cd /staging/deps/SDL2-2.24.1 && ./configure --enable-shared --enable-static && make && make install
#https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.5.tar.gz
mkdir -p /staging/deps && cd /staging/deps && curl https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.5.tar.gz | tar -zx && cd SDL2_image-2.0.5 && ls -lrt
@@ -13,9 +13,9 @@ cd /staging/deps/SDL2_image-2.0.5 && ./configure --enable-shared --enable-static
mkdir -p /staging/deps && cd /staging/deps && curl https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.4.tar.gz | tar -zx && cd SDL2_mixer-2.0.4 && ls -lrt
cd /staging/deps/SDL2_mixer-2.0.4 && ./configure --enable-shared --enable-static && make && make install
-#https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.15.tar.gz
-mkdir -p /staging/deps && cd /staging/deps && curl https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.15.tar.gz | tar -zx && cd SDL2_ttf-2.0.15 && ls -lrt
-cd /staging/deps/SDL2_ttf-2.0.15 && ./configure --enable-shared --enable-static && make && make install
+#https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.18.tar.gz
+mkdir -p /staging/deps && cd /staging/deps && curl https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.18.tar.gz | tar -zx && cd SDL2_ttf-2.0.18 && ls -lrt
+cd /staging/deps/SDL2_ttf-2.0.18 && ./configure --enable-shared --enable-static && make && make install
mkdir -p /staging/blockattack-game
mkdir -p /staging/deps && cd /staging/deps && curl https://icculus.org/physfs/downloads/physfs-3.0.2.tar.bz2 | tar -jx && cd physfs-3.0.2 && ls -lrt