From 53d38ef758906fe17da4f3c720ffb9a89f3ca28f Mon Sep 17 00:00:00 2001 From: rsn8887 Date: Fri, 7 May 2021 20:51:49 -0500 Subject: [PATCH] switch: bump version --- README.md | 12 ++++++++---- os/switch/CMakeLists.txt | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ddf166a1b656..3725a9cf7059 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Thanks to the many developers who worked on this game. Thanks to @angguss for his excellent Vita port, on which this Switch port is based. -Thanks to my supporters on Patreon: Andyways, CountDuckula, Greg Gibson, Jesse Harlin, Özgür Karter, Matthew Machnee, and RadicalR. +Thanks to my supporters on Patreon: Andyways, Count Duckula, Jesse Harlin, Thomas Luten, Matthew Machnee, Mored4u, Ibrahim Fazel Poor, RadicalR. # Installation @@ -70,7 +70,7 @@ You then get the choice to select `original dos` graphics, sounds, and music whe # Building -libtimidity: +libtimidity (now included in pacman packages): ``` git clone https://github.com/rsn8887/libtimidity cd libtimidity/src/ @@ -80,7 +80,7 @@ cp timidity.h $DEVKITPRO/portlibs/switch/include/ cp ../libtimidity.pc $DEVKITPRO/portlibs/lib/pkgconfig/ ``` -liblzo2: +liblzo2 (now included in pacman packages): Download https://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz and extract, then ``` cd lzo-2.10 @@ -90,7 +90,7 @@ make -j12 make install ``` -liblzma: +liblzma (now included in pacman packages): Download and extract xz-5.2.4.tar.gz from https://tukaani.org/xz/ , then ``` cd xz-5.2.4 @@ -117,6 +117,10 @@ openttd_switch.zip can be found in __cmake/__ # Changelog +1.07 + +- re-compile with 12.0.0 support + 1.06 - re-compile with 9.0.0 support diff --git a/os/switch/CMakeLists.txt b/os/switch/CMakeLists.txt index 8ae1137d69fd..ccf95e2a34db 100644 --- a/os/switch/CMakeLists.txt +++ b/os/switch/CMakeLists.txt @@ -21,7 +21,7 @@ endif() set(SHORT_NAME openttd) project(${SHORT_NAME}) -set(SWITCH_VERSION "1.06") +set(SWITCH_VERSION "1.07") if (CMAKE_BUILD_TYPE STREQUAL "Debug") configure_file(../../objs/debug/${SHORT_NAME} ./${SHORT_NAME} COPYONLY)