From cfe5f88eab64c95eab562d7b6d4d78bb03e32917 Mon Sep 17 00:00:00 2001 From: rsn8887 Date: Thu, 25 Apr 2019 13:17:22 -0500 Subject: [PATCH] switch: bump version --- README.md | 7 ++++++- os/switch/CMakeLists.txt | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c25cee926de3f..2481be310d588 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ PKG_CONFIG_PATH=$DEVKITPRO/portlibs/switch/lib/pkgconfig ./configure --os=SWITCH make -j12 cd os/switch git clean -f -cmake ./ +cmake ./ -DCMAKE_BUILD_TYPE=Release make openttd_switch.zip ``` @@ -118,6 +118,11 @@ openttd_switch.zip can be found in __cmake/__ # Changelog +1.03 + +- bundle with working AI compatibility script files (fixes AI crashing) +- bundle with pre-installed AI opponenta and support library scripts + 1.02 - compile with lzma and lzo2 compression libraries to allow loading old compressed savegames/scenarios diff --git a/os/switch/CMakeLists.txt b/os/switch/CMakeLists.txt index 9a0724e07f615..998dad66c13f6 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.02") +set(SWITCH_VERSION "1.03") if (CMAKE_BUILD_TYPE STREQUAL "Debug") configure_file(../../objs/debug/${SHORT_NAME} ./${SHORT_NAME} COPYONLY)