From 455f22bbca7b519f41d90705ee323df36b37ed9a Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Mon, 3 Feb 2025 20:47:21 +0100 Subject: [PATCH] Release v0.4.19.1 - Fix: [#23771] Weather transitions are horribly broken. --- .github/workflows/ci.yml | 2 +- debian/changelog | 4 ++++ distribution/changelog.txt | 2 +- distribution/linux/openrct2.appdata.xml | 3 +++ distribution/macos/Info.plist | 2 +- readme.md | 6 +++--- src/openrct2-android/app/build.gradle | 4 ++-- src/openrct2/Version.h | 2 +- src/openrct2/network/NetworkBase.cpp | 2 +- 9 files changed, 17 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8859091d1..05e2741ab5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ env: OPENRCT2_BUILD_SERVER: GitHub OPENRCT2_ORG_TOKEN: ${{ secrets.OPENRCT2_ORG_TOKEN }} BACKTRACE_IO_TOKEN: ${{ secrets.BACKTRACE_IO_TOKEN }} - OPENRCT2_VERSION: 0.4.19 + OPENRCT2_VERSION: 0.4.19.1 # 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 b499771480..b1f24ee8f3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,7 @@ +openrct2 (0.4.19.1-develop-1) unstable; urgency=medium + +* Fix: [#23771] Weather transitions are horribly broken. + openrct2 (0.4.19-develop-1) unstable; urgency=medium * Feature: [#23328] Introducing peep animation objects, enabling custom entertainer costumes. diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 4d7007305f..19f4414571 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -1,4 +1,4 @@ -0.4.20 (in development) +0.4.19.1 (2025-02-03) ------------------------------------------------------------------------ - Fix: [#23771] Weather transitions are horribly broken. diff --git a/distribution/linux/openrct2.appdata.xml b/distribution/linux/openrct2.appdata.xml index 4515a21acb..24439001fd 100644 --- a/distribution/linux/openrct2.appdata.xml +++ b/distribution/linux/openrct2.appdata.xml @@ -298,6 +298,9 @@ none + + https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.4.19.1 + https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.4.19 diff --git a/distribution/macos/Info.plist b/distribution/macos/Info.plist index 9bd01e64e9..f442b8353e 100644 --- a/distribution/macos/Info.plist +++ b/distribution/macos/Info.plist @@ -13,7 +13,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.4.19 + 0.4.19.1 CFBundleSignature ORCT LSMinimumSystemVersion diff --git a/readme.md b/readme.md index 69fdf9c015..640273dc38 100644 --- a/readme.md +++ b/readme.md @@ -17,9 +17,9 @@ --- ### Download -| Latest release | Latest development build | -|-----------------------------------------------------------------------------------------------------------------------|--------------------------| -| [![OpenRCT2.org](https://img.shields.io/badge/master-v0.4.19-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) | +| Latest release | Latest development build | +|--------------------------------------------------------------------------------------------------------------------------|--------------------------| +| [![OpenRCT2.org](https://img.shields.io/badge/master-v0.4.19.1-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/src/openrct2-android/app/build.gradle b/src/openrct2-android/app/build.gradle index 7ae43fa5ae..1d814f0023 100644 --- a/src/openrct2-android/app/build.gradle +++ b/src/openrct2-android/app/build.gradle @@ -10,8 +10,8 @@ android { minSdkVersion 24 targetSdkVersion 28 - versionCode 6 - versionName '0.4.19' + versionCode 7 + versionName '0.4.19.1' externalNativeBuild { cmake { arguments '-DANDROID_STL=c++_shared' diff --git a/src/openrct2/Version.h b/src/openrct2/Version.h index 2078e5a609..389f6246f5 100644 --- a/src/openrct2/Version.h +++ b/src/openrct2/Version.h @@ -12,7 +12,7 @@ #include #define OPENRCT2_NAME "OpenRCT2" -#define kOpenRCT2Version "0.4.19" +#define kOpenRCT2Version "0.4.19.1" #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 0b2f685278..ee02351757 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 = 1; +constexpr uint8_t kNetworkStreamVersion = 0; const std::string kNetworkStreamID = std::string(kOpenRCT2Version) + "-" + std::to_string(kNetworkStreamVersion);