diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 788b574062ad..58cdfc51880e 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -8,19 +8,23 @@ - Feature: [#20825] Made setting the game speed a game action. - Feature: [#20853] [Plugin] Add “BaseTileElement.owner” which is saved in the park file. - Change: [#20790] Default ride price set to free if park charges for entry. +- Change: [#20880] Restore removed default coaster colours. +- Fix: [#13473] Guests complain that the default Circus price is too high. +- Fix: [#15293] TTF fonts don’t format correctly with OpenGL. - Fix: [#16453] Tile inspector invisibility shortcut does not use a game action. - Fix: [#17774] Misplaced/missing land and construction rights tiles in RCT1 & RCT2 scenarios. - Fix: [#18199] Dots in the game save's name no longer get truncated. - Fix: [#19722] “Forbid tree removal” restriction doesn't forbid removal of large scenery tree items. - Fix: [#20253] Crash when displaying a Lay-Down RC’s half loop. - Fix: [#20356] Cannot set tertiary colour on small scenery. +- Fix: [#20624] Scrolling text glitches after language is changed. - Fix: [#20679] Android: game crashes at launch. - Fix: [#20737] Spent money in player window underflows when getting refunds. - Fix: [#20747] Staff speed cheat not applying to newly hired staff, UI not showing the current applied speed. - Fix: [#20778] [Plugin] Incorrect target api when executing custom actions. - Fix: [#20807] Tertiary colour not copied with small scenery. - Fix: [#20964] Crash when player connects to server with a group assigned that no longer exists. -- Fix: [#20624] Scrolling text glitches after language is changed. +- Fix: [#20995] TTF fonts don’t support hinting, outlines, or insets with OpenGL. 0.4.6 (2023-09-03) ------------------------------------------------------------------------ diff --git a/src/openrct2/network/NetworkBase.cpp b/src/openrct2/network/NetworkBase.cpp index da9896969a9f..c8c2ba8c2f1e 100644 --- a/src/openrct2/network/NetworkBase.cpp +++ b/src/openrct2/network/NetworkBase.cpp @@ -43,7 +43,7 @@ // It is used for making sure only compatible builds get connected, even within // single OpenRCT2 version. -#define NETWORK_STREAM_VERSION "10" +#define NETWORK_STREAM_VERSION "11" #define NETWORK_STREAM_ID OPENRCT2_VERSION "-" NETWORK_STREAM_VERSION diff --git a/src/openrct2/ride/gentle/meta/Circus.h b/src/openrct2/ride/gentle/meta/Circus.h index 3c0f85a13105..be6eb97a1387 100644 --- a/src/openrct2/ride/gentle/meta/Circus.h +++ b/src/openrct2/ride/gentle/meta/Circus.h @@ -42,7 +42,7 @@ constexpr RideTypeDescriptor CircusRTD = SET_FIELD(RatingsMultipliers, { 20, 10, 0 }), SET_FIELD(UpkeepCosts, { 50, 1, 0, 0, 0, 0 }), SET_FIELD(BuildCosts, { 62.50_GBP, 1.00_GBP, 1, }), - SET_FIELD(DefaultPrices, { 15, 0 }), + SET_FIELD(DefaultPrices, { 12, 0 }), SET_FIELD(DefaultMusic, {}), SET_FIELD(PhotoItem, ShopItem::Photo), SET_FIELD(BonusValue, 39),