diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 134ee44942a9..e1997385c896 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ env: OPENRCT2_BUILD_SERVER: GitHub OPENRCT2_ORG_TOKEN: ${{ secrets.OPENRCT2_ORG_TOKEN }} BACKTRACE_IO_TOKEN: ${{ secrets.BACKTRACE_IO_TOKEN }} - OPENRCT2_VERSION: 0.4.13 + OPENRCT2_VERSION: 0.4.14 # https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value concurrency: diff --git a/debian/changelog b/debian/changelog index f2d056b07e28..deeb1d5b4c30 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,38 @@ +0.4.14 (2024-09-01) +------------------------------------------------------------------------ + * Feature: [#15750] Allow using different types of park entrance in one park. + * Feature: [#20942] Allow removing all park fences from the Cheats window. + * Feature: [#21675] Guests ignore price limit cheat. + * Feature: [#22206] Add option to randomise train or vehicle colours. + * Feature: [#22392] [Plugin] Expose ride vehicle’s spin to the plugin API. + * Feature: [#22414] Finance graphs can be resized. + * Feature: [#22569] Footpath placement now respects the construction modifier keys (ctrl/shift). + * Change: [#21189] Patches to fix scenario bugs are now described in .parkpatch files, instead of inside the code. + * Change: [#21659] Increase the Hybrid Roller Coaster’s maximum lift speed to 17 km/h (11 mph). + * Change: [#22466] The Clear Scenery tool now uses a bulldozer cursor instead of a generic crosshair. + * Change: [#22490] The tool to change land and construction rights has been moved out of the Map window. + * Change: [#22490] In sandbox mode, changing land or construction rights now acts as buying or selling. + * Change: [#22491] Scrollbars are now hidden if the scrollable widget is not actually overflowing. + * Change: [#22541] In editor/sandbox mode, tool widgets now appear on the side of the map window, instead of the bottom. + * Change: [#22592] Cheats have been redistributed along three new tabs: date, staff, and nature/weather. + * Fix: [#21123] Transparency options are not respected on startup. + * Fix: [#21189] Additional missing/misplaced land & construction rights tiles in Schneider Shores and Urban Park. + * Fix: [#21908] Errors showing up when placing/moving track design previews. + * Fix: [#22307] Hover tooltips in financial charts are not invalidated properly. + * Fix: [#22316] Potential crash when switching the drawing engine while the game is running. + * Fix: [#22395, #22396] Misaligned tick marks in financial and guest count graphs (original bug). + * Fix: [#22457] Potential crash opening the scenario select window. + * Fix: [#22520] Virtual floor no longer appears when holding modifier keys during track construction. + * Fix: [#22527] Forcing an element type to “wall” via scripts can crash the game. + * Fix: [#22582] Lighting effects are not enabled/disabled correctly, making the game appear frozen. + * Fix: [#22598] Add several .parkpatch files to .sea scenarios with corresponding patches for RCT1 and RCT2 scenarios. + * Fix: [#22606] Virtual floor is sometimes drawn above the path when placing paths. + * Fix: [#22625] Fix compilation with orignal ride ratings. + * Fix: [#22663] Additional missing/misplaced land & construction rights tiles in Mystic Mountain, Build your own Six Flags Holland and Build your own Six Flags over Texas. + * Fix: [#22671] Game default to hide supports on startup. + * Fix: [#22671] Unchecking invisible option does not uncheck see-through option on transparency options and vice versa. + * Fix: [#22677] Hovering the file list in the load/save window causes a slowdown. + openrct2 (0.4.13-develop-1) unstable; urgency=medium * Feature: [#19596] Allow for playing back a replay without camera movement or alert box. diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 5d4eaaee0fdb..33339b3107e8 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -1,4 +1,4 @@ -0.4.14 (in development) +0.4.14 (2024-09-01) ------------------------------------------------------------------------ - Feature: [#15750] Allow using different types of park entrance in one park. - Feature: [#20942] Allow removing all park fences from the Cheats window. diff --git a/distribution/linux/openrct2.appdata.xml b/distribution/linux/openrct2.appdata.xml index 804bfe37620e..ffbba133e05c 100644 --- a/distribution/linux/openrct2.appdata.xml +++ b/distribution/linux/openrct2.appdata.xml @@ -69,6 +69,9 @@ none + + https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.4.13 + https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.4.13 diff --git a/distribution/macos/Info.plist b/distribution/macos/Info.plist index fefa7a07c914..80c1b13cdd21 100644 --- a/distribution/macos/Info.plist +++ b/distribution/macos/Info.plist @@ -13,7 +13,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.13 + 0.4.14 CFBundleSignature ORCT LSMinimumSystemVersion diff --git a/readme.md b/readme.md index af6355c9c421..b59812387645 100644 --- a/readme.md +++ b/readme.md @@ -19,7 +19,7 @@ ### Download | Latest release | Latest development build | |-----------------------------------------------------------------------------------------------------------------------|--------------------------| -| [![OpenRCT2.org](https://img.shields.io/badge/master-v0.4.13-green.svg)](https://openrct2.org/downloads/master/latest) | [![OpenRCT2.org](https://img.shields.io/github/last-commit/OpenRCT2/OpenRCT2/develop)](https://openrct2.org/downloads/develop/latest) | +| [![OpenRCT2.org](https://img.shields.io/badge/master-v0.4.14-green.svg)](https://openrct2.org/downloads/master/latest) | [![OpenRCT2.org](https://img.shields.io/github/last-commit/OpenRCT2/OpenRCT2/develop)](https://openrct2.org/downloads/develop/latest) | --- diff --git a/scripts/setenv b/scripts/setenv index a98e0fd3dd1c..aaa7d5654090 100755 --- a/scripts/setenv +++ b/scripts/setenv @@ -6,7 +6,7 @@ set -e # It should be dot sourced into your environment if [[ "$GITHUB_ACTIONS" != "true" ]]; then export OPENRCT2_BUILD_SERVER=$(hostname) - export OPENRCT2_VERSION=0.4.13 + export OPENRCT2_VERSION=0.4.14 GITHUB_REF=$(git rev-parse --symbolic-full-name HEAD) GITHUB_SHA=$(git rev-parse HEAD) fi diff --git a/src/openrct2-android/app/build.gradle b/src/openrct2-android/app/build.gradle index bfeeb2b919a8..9d4cce8784ab 100644 --- a/src/openrct2-android/app/build.gradle +++ b/src/openrct2-android/app/build.gradle @@ -11,7 +11,7 @@ android { targetSdkVersion 28 versionCode 2 - versionName '0.4.13' + versionName '0.4.14' externalNativeBuild { cmake { arguments '-DANDROID_STL=c++_shared' diff --git a/src/openrct2/Version.h b/src/openrct2/Version.h index 73958301f2bd..d16930f76603 100644 --- a/src/openrct2/Version.h +++ b/src/openrct2/Version.h @@ -12,7 +12,7 @@ #include #define OPENRCT2_NAME "OpenRCT2" -#define OPENRCT2_VERSION "0.4.13" +#define OPENRCT2_VERSION "0.4.14" #if defined(__amd64__) || defined(_M_AMD64) # define OPENRCT2_ARCHITECTURE "x86-64" diff --git a/src/openrct2/network/NetworkBase.cpp b/src/openrct2/network/NetworkBase.cpp index e5bcc9ad0825..50f59dfc12e2 100644 --- a/src/openrct2/network/NetworkBase.cpp +++ b/src/openrct2/network/NetworkBase.cpp @@ -49,7 +49,7 @@ using namespace OpenRCT2; // It is used for making sure only compatible builds get connected, even within // single OpenRCT2 version. -constexpr uint8_t kNetworkStreamVersion = 4; +constexpr uint8_t kNetworkStreamVersion = 0; const std::string kNetworkStreamID = std::string(OPENRCT2_VERSION) + "-" + std::to_string(kNetworkStreamVersion);