mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-10 17:42:29 +01:00
Add about info
This commit is contained in:
@@ -277,6 +277,13 @@ The following people are not part of the development team, but have been contrib
|
|||||||
## Music
|
## Music
|
||||||
* Karst "Jalmaan" van Galen Last (AuraSpecs)
|
* Karst "Jalmaan" van Galen Last (AuraSpecs)
|
||||||
* (Flyxxpy)
|
* (Flyxxpy)
|
||||||
|
* Jan Büchner (Greyfade)
|
||||||
|
* Allister Brimble
|
||||||
|
* Herman Riddering
|
||||||
|
|
||||||
|
## Sound Effects
|
||||||
|
* Karst van Galen Last (AuraSpecs)
|
||||||
|
* (ThatGuyYouKnow)
|
||||||
|
|
||||||
## RollerCoaster Tycoon 2 credits
|
## RollerCoaster Tycoon 2 credits
|
||||||
Design and programming by Chris Sawyer
|
Design and programming by Chris Sawyer
|
||||||
|
|||||||
@@ -3692,6 +3692,8 @@ STR_6584 :Select to run trains backwards
|
|||||||
STR_6585 :Can’t make changes…
|
STR_6585 :Can’t make changes…
|
||||||
|
|
||||||
STR_6586 :OpenRCT2
|
STR_6586 :OpenRCT2
|
||||||
|
STR_6587 :The OpenRCT2 Title Theme is a work of Allister Brimble,{NEWLINE}licenced CC BY-SA 4.0.
|
||||||
|
STR_6588 :Thanks to Herman Riddering for allowing us to record the 35er Voigt.
|
||||||
|
|
||||||
#############
|
#############
|
||||||
# Scenarios #
|
# Scenarios #
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
0.4.6 (in development)
|
0.4.6 (in development)
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
- Feature: [OpenMusic#41] Official Title Theme by Allister Brimble.
|
||||||
- Improved: [#20200] Allow audio files to play to up to 44100hz sample rate (from 22050hz).
|
- Improved: [#20200] Allow audio files to play to up to 44100hz sample rate (from 22050hz).
|
||||||
- Change: [#20110] Fix a few RCT1 build height parity discrepancies.
|
- Change: [#20110] Fix a few RCT1 build height parity discrepancies.
|
||||||
- Fix: [#19823] Parkobj, disallow overriding objects of different object types.
|
- Fix: [#19823] Parkobj, disallow overriding objects of different object types.
|
||||||
|
|||||||
@@ -74,10 +74,12 @@ static Widget _windowAboutOpenRCT2Widgets[] = {
|
|||||||
MakeWidget({168, 115 + 40}, {200, 14}, WindowWidgetType::Button, WindowColour::Secondary, STR_CHANGELOG_ELLIPSIS), // changelog button
|
MakeWidget({168, 115 + 40}, {200, 14}, WindowWidgetType::Button, WindowColour::Secondary, STR_CHANGELOG_ELLIPSIS), // changelog button
|
||||||
MakeWidget({168, 115 + 60}, {200, 14}, WindowWidgetType::Button, WindowColour::Secondary, STR_JOIN_DISCORD ), // "join discord" button
|
MakeWidget({168, 115 + 60}, {200, 14}, WindowWidgetType::Button, WindowColour::Secondary, STR_JOIN_DISCORD ), // "join discord" button
|
||||||
MakeWidget({10, 250}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_OPENRCT2_DESCRIPTION_2), // More info
|
MakeWidget({10, 250}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_OPENRCT2_DESCRIPTION_2), // More info
|
||||||
MakeWidget({10, 300}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_OPENRCT2_DESCRIPTION_3), // Copyright
|
MakeWidget({10, 280}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_OPENRCT2_DESCRIPTION_3), // Copyright
|
||||||
MakeWidget({10, 350}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_SPECIAL_THANKS_1), // Special Thanks
|
MakeWidget({10, 360}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_SPECIAL_THANKS_1), // Special Thanks
|
||||||
MakeWidget({10, 375}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_SPECIAL_THANKS_2), // Company names
|
MakeWidget({10, 375}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_SPECIAL_THANKS_2), // Company names
|
||||||
MakeWidget({168, 115 + 80}, {200, 14}, WindowWidgetType::Button, WindowColour::Secondary, STR_CONTRIBUTORS_WINDOW_BUTTON), // "contributors" button
|
MakeWidget({168, 115 + 80}, {200, 14}, WindowWidgetType::Button, WindowColour::Secondary, STR_CONTRIBUTORS_WINDOW_BUTTON), // "contributors" button
|
||||||
|
MakeWidget({10, 310}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_OPENRCT2_TITLE), // Title Theme
|
||||||
|
MakeWidget({10, 338}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_FAIRGROUND_ORGAN), // Fairground organ
|
||||||
WIDGETS_END,
|
WIDGETS_END,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -3991,6 +3991,8 @@ enum : uint16_t
|
|||||||
STR_RIDE_SET_VEHICLE_REVERSED_FAIL = 6585,
|
STR_RIDE_SET_VEHICLE_REVERSED_FAIL = 6585,
|
||||||
|
|
||||||
STR_OPENRCT2_DROPDOWN = 6586,
|
STR_OPENRCT2_DROPDOWN = 6586,
|
||||||
|
STR_ABOUT_OPENRCT2_TITLE = 6587,
|
||||||
|
STR_ABOUT_FAIRGROUND_ORGAN = 6588,
|
||||||
|
|
||||||
// Have to include resource strings (from scenarios and objects) for the time being now that language is partially working
|
// Have to include resource strings (from scenarios and objects) for the time being now that language is partially working
|
||||||
/* MAX_STR_COUNT = 32768 */ // MAX_STR_COUNT - upper limit for number of strings, not the current count strings
|
/* MAX_STR_COUNT = 32768 */ // MAX_STR_COUNT - upper limit for number of strings, not the current count strings
|
||||||
|
|||||||
Reference in New Issue
Block a user