Add special thanks lines to About window

This commit is contained in:
AuraSpecs 2023-01-06 22:44:32 +01:00 committed by GitHub
parent 8495dbf6a5
commit 51582e3ab0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 1 deletions

View File

@ -3642,6 +3642,8 @@ STR_6536 :This park was saved in a later version of OpenRCT2. The park was sa
STR_6537 :Allow using regular paths as queue
STR_6538 :Shows regular paths in the queues dropdown of the Footpaths window.
STR_6539 :Brake Closed
STR_6540 :{WINDOW_COLOUR_2}Special thanks to the following companies for allowing their likeness:
STR_6541 :{WINDOW_COLOUR_2}Rocky Mountain Construction Group, Josef Wiegand GmbH & Co. KG
#############
# Scenarios #

View File

@ -8,6 +8,7 @@
- Improved: [#18826] [Plugin] Added all actions and their documentation to plugin API.
- Improved: [#18945] Languages can now fall back to other languages than English.
- Improved: [#18970] Trying to load a non-park save will now display a context error.
- Improved: [#19044] Added special thanks to RMC and Wiegand to the About page.
- Fix: [#18467] “Selected only” Object Selection filter is active in Track Designs Manager, and cannot be toggled.
- Fix: [#18905] Ride Construction window theme is not applied correctly.
- Fix: [#18911] Mini Golf station does not draw correctly from all angles.

View File

@ -22,7 +22,7 @@
using namespace OpenRCT2;
static constexpr const int32_t WW = 400;
static constexpr const int32_t WH = 352;
static constexpr const int32_t WH = 400;
static constexpr const StringId WINDOW_TITLE = STR_ABOUT;
static constexpr const int32_t TABHEIGHT = 50;
@ -72,6 +72,8 @@ static Widget _windowAboutOpenRCT2Widgets[] = {
MakeWidget({168, 115 + 72}, {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), // Contributors
MakeWidget({10, 300}, {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, 375}, {WW - 20, 50}, WindowWidgetType::LabelCentred, WindowColour::Secondary, STR_ABOUT_SPECIAL_THANKS_2), // Company names
WIDGETS_END,
};

View File

@ -3933,6 +3933,9 @@ enum : uint16_t
STR_TILE_INSPECTOR_TRACK_BRAKE_CLOSED = 6539,
STR_ABOUT_SPECIAL_THANKS_1 = 6540,
STR_ABOUT_SPECIAL_THANKS_2 = 6541,
// 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
};