1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 01:22:25 +01:00

Release v0.4.19.1

- Fix: [#23771] Weather transitions are horribly broken.
This commit is contained in:
Gymnasiast
2025-02-03 20:47:21 +01:00
parent e302634bef
commit 455f22bbca
9 changed files with 17 additions and 10 deletions

View File

@@ -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:

4
debian/changelog vendored
View File

@@ -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.

View File

@@ -1,4 +1,4 @@
0.4.20 (in development)
0.4.19.1 (2025-02-03)
------------------------------------------------------------------------
- Fix: [#23771] Weather transitions are horribly broken.

View File

@@ -298,6 +298,9 @@
<content_attribute id="money-gambling">none</content_attribute>
</content_rating>
<releases>
<release version="0.4.19.1" date="2025-02-03">
<url>https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.4.19.1</url>
</release>
<release version="0.4.19" date="2025-02-01">
<url>https://github.com/OpenRCT2/OpenRCT2/releases/tag/v0.4.19</url>
</release>

View File

@@ -13,7 +13,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.4.19</string>
<string>0.4.19.1</string>
<key>CFBundleSignature</key>
<string>ORCT</string>
<key>LSMinimumSystemVersion</key>

View File

@@ -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) |
---

View File

@@ -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'

View File

@@ -12,7 +12,7 @@
#include <string>
#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"

View File

@@ -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);