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:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -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
4
debian/changelog
vendored
@@ -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.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
0.4.20 (in development)
|
||||
0.4.19.1 (2025-02-03)
|
||||
------------------------------------------------------------------------
|
||||
- Fix: [#23771] Weather transitions are horribly broken.
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
---
|
||||
|
||||
### Download
|
||||
| Latest release | Latest development build |
|
||||
|-----------------------------------------------------------------------------------------------------------------------|--------------------------|
|
||||
| [](https://openrct2.org/downloads/master/latest) | [](https://openrct2.org/downloads/develop/latest) |
|
||||
| Latest release | Latest development build |
|
||||
|--------------------------------------------------------------------------------------------------------------------------|--------------------------|
|
||||
| [](https://openrct2.org/downloads/master/latest) | [](https://openrct2.org/downloads/develop/latest) |
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user