Create OpenMusic 1.4 release (#20795)

nl-NL: Fix/amend some descriptions by @Gymnasiast in #42
    Update French translation by @rmnvgr in #43
    Normalize the ragtime tunes by @karst in #44
    Complete list of Fairground organ style 2 tunes by @karst in #45
    Update Hungarian translation by @anon569 in #47
    Add Mystic style by @SkyshardMelody in #46
    pt-BR: Translate Mystic Style by @tupaschoal in #48
    hu-HU: Translate Mystic Style by @anon569 in #49
This commit is contained in:
AuraSpecs 2023-09-21 20:36:37 +02:00 committed by GitHub
parent 3a3cd18321
commit 1223b739e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 7 deletions

View file

@ -72,9 +72,9 @@ set(OPENSFX_VERSION "1.0.3")
set(OPENSFX_URL "https://github.com/OpenRCT2/OpenSoundEffects/releases/download/v${OPENSFX_VERSION}/opensound.zip")
set(OPENSFX_SHA1 "ffec5a97bd5035860c4c9a43fe32cf51886478e3")
set(OPENMSX_VERSION "1.3.1")
set(OPENMSX_VERSION "1.4")
set(OPENMSX_URL "https://github.com/OpenRCT2/OpenMusic/releases/download/v${OPENMSX_VERSION}/openmusic.zip")
set(OPENMSX_SHA1 "cb7b05af97aaf7949fb509063d45df6613f20521")
set(OPENMSX_SHA1 "aaad314183bc4e875e013d70b655a661db238bf3")
set(REPLAYS_VERSION "0.0.78")
set(REPLAYS_URL "https://github.com/OpenRCT2/replays/releases/download/v${REPLAYS_VERSION}/replays.zip")

View file

@ -278,11 +278,12 @@ The following people are not part of the development team, but have been contrib
* Booster Sprites - Nicolas Hawrysh (xp4xbox)
## Music
* Allister Brimble
* Herman Riddering
* Karst "Jalmaan" van Galen Last (AuraSpecs)
* (Flyxxpy)
* Jan Büchner (Greyfade)
* Allister Brimble
* Herman Riddering
* (Skyshard)
## Sound Effects
* Karst van Galen Last (AuraSpecs)

View file

@ -1,5 +1,6 @@
0.4.7 (in development)
------------------------------------------------------------------------
- Feature: [OpenMusic#46] Added Mystic ride music style.
- Change: [#20790] Default ride price set to free if park charges for entry.
- Fix: [#20737] Spent money in player window underflows when getting refunds.
- Fix: [#20778] [Plugin] Incorrect target api when executing custom actions.

View file

@ -49,8 +49,8 @@
<ObjectsSha1>02ddf6c685a2da8bac98a57b34be95d63192443d</ObjectsSha1>
<OpenSFXUrl>https://github.com/OpenRCT2/OpenSoundEffects/releases/download/v1.0.3/opensound.zip</OpenSFXUrl>
<OpenSFXSha1>ffec5a97bd5035860c4c9a43fe32cf51886478e3</OpenSFXSha1>
<OpenMSXUrl>https://github.com/OpenRCT2/OpenMusic/releases/download/v1.3.1/openmusic.zip</OpenMSXUrl>
<OpenMSXSha1>cb7b05af97aaf7949fb509063d45df6613f20521</OpenMSXSha1>
<OpenMSXUrl>https://github.com/OpenRCT2/OpenMusic/releases/download/v1.4/openmusic.zip</OpenMSXUrl>
<OpenMSXSha1>aaad314183bc4e875e013d70b655a661db238bf3</OpenMSXSha1>
<ReplaysUrl>https://github.com/OpenRCT2/replays/releases/download/v0.0.78/replays.zip</ReplaysUrl>
<ReplaysSha1>31C5D07EED8481D5C6D57F9E4FE9443AAEDE7739</ReplaysSha1>
</PropertyGroup>

View file

@ -121,6 +121,7 @@ const std::string_view DefaultSelectedObjects[] = {
"openrct2.music.fairground2",
"openrct2.music.ragtime2",
"openrct2.music.prehistoric",
"openrct2.music.mystic",
// Footpath surfaces
"rct2.footpath_surface.tarmac",

View file

@ -12,5 +12,5 @@
#include "Object.h"
extern const std::string_view MinimumRequiredObjects[2];
extern const std::string_view DefaultSelectedObjects[111];
extern const std::string_view DefaultSelectedObjects[112];
extern const std::string_view DesignerSelectedObjects[39];

View file

@ -758,6 +758,7 @@ static constexpr std::string_view _musicStyles[] = {
"openrct2.music.fairground2",
"openrct2.music.ragtime2",
"openrct2.music.prehistoric",
"openrct2.music.mystic",
};
std::string_view GetStationIdentifierFromStyle(uint8_t style)