diff options
author | Randolph W. Aarseth II <bioblazepayne@gmail.com> | 2024-10-04 01:37:26 -0700 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-10-11 02:25:54 -0400 |
commit | d5fc3d1e8c1f8f904e1fbe8bd1c402d560bfb596 (patch) | |
tree | e3d74332dbb7b5fe280d370b94e0fde913d78be8 /editor/editor_about.cpp | |
parent | b52811b83478bd06c5bcf39a93bbf53dd03cc9bf (diff) | |
download | redot-engine-d5fc3d1e8c1f8f904e1fbe8bd1c402d560bfb596.tar.gz |
Rebrand Godot to Redot
Add Linux Editor tests workflow matrix
Add Windows Editor w/ Mono workflow matrix
Add Generate Glue Code job to Windows workflow
Add Build GodotSharp job to Windows workflow
Add godot compatibility version references
Add Godot author info
Add Godot version compatibility info
Add Godot donor info
Add Godot authors and donors to editor_about.cpp
Credits:
Co-authored-by: Skogi <skogi.b@gmail.com>
Co-authored-by: Spartan322 <Megacake1234@gmail.com>
Co-authored-by: swashberry <swashdev@pm.me>
Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: radenthefolf <radenthefolf@gmail.com>
Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com>
Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com>
Co-authored-by: decryptedchaos <nixgod@gmail.com>
Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com>
Co-authored-by: Mister Puma <MisterPuma80@gmail.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: SingleError <isaaconeoneone@gmail.com>
Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
Diffstat (limited to 'editor/editor_about.cpp')
-rw-r--r-- | editor/editor_about.cpp | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index 34f432aa7e..cdd671ac5e 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -33,6 +33,7 @@ #include "core/authors.gen.h" #include "core/donors.gen.h" #include "core/license.gen.h" +#include "core/redot_authors.gen.h" #include "editor/editor_string_names.h" #include "editor/gui/editor_version_button.h" #include "editor/themes/editor_scale.h" @@ -168,7 +169,7 @@ ScrollContainer *EditorAbout::_populate_list(const String &p_name, const List<St } EditorAbout::EditorAbout() { - set_title(TTR("Thanks from the Godot community!")); + set_title(TTR("Thanks from the Redot community!")); set_hide_on_ok(true); VBoxContainer *vbc = memnew(VBoxContainer); @@ -195,7 +196,8 @@ EditorAbout::EditorAbout() { Label *about_text = memnew(Label); about_text->set_v_size_flags(Control::SIZE_SHRINK_CENTER); about_text->set_text( - String::utf8("\xc2\xa9 2014-present ") + TTR("Godot Engine contributors") + "." + + String::utf8("\xc2\xa9 2024-present ") + TTR("Redot Engine contributors") + "." + + String::utf8("\n\xc2\xa9 2014-present ") + TTR("Godot Engine contributors") + "." + String::utf8("\n\xc2\xa9 2007-2014 Juan Linietsky, Ariel Manzur.\n")); version_info_vbc->add_child(about_text); @@ -217,14 +219,30 @@ EditorAbout::EditorAbout() { dev_sections.push_back(TTR("Project Manager", "Job Title")); dev_sections.push_back(TTR("Developers")); const char *const *dev_src[] = { + REDOT_AUTHORS_FOUNDERS, + REDOT_AUTHORS_LEAD_DEVELOPERS, + REDOT_AUTHORS_PROJECT_MANAGERS, + REDOT_AUTHORS_DEVELOPERS, + }; + tc->add_child(_populate_list(TTR("Authors"), dev_sections, dev_src, 0b1)); // First section (Project Founders) is always one column. + + // Godot Authors. + + List<String> godot_dev_sections; + godot_dev_sections.push_back(TTR("Project Founders")); + godot_dev_sections.push_back(TTR("Lead Developer")); + // TRANSLATORS: This refers to a job title. + godot_dev_sections.push_back(TTR("Project Manager", "Job Title")); + godot_dev_sections.push_back(TTR("Developers")); + const char *const *godot_dev_src[] = { AUTHORS_FOUNDERS, AUTHORS_LEAD_DEVELOPERS, AUTHORS_PROJECT_MANAGERS, AUTHORS_DEVELOPERS, }; - tc->add_child(_populate_list(TTR("Authors"), dev_sections, dev_src, 0b1)); // First section (Project Founders) is always one column. + tc->add_child(_populate_list(TTR("Godot Authors"), godot_dev_sections, godot_dev_src, 0b1)); // First section (Project Founders) is always one column. - // Donors. + // Godot Donors. List<String> donor_sections; donor_sections.push_back(TTR("Patrons")); @@ -245,7 +263,7 @@ EditorAbout::EditorAbout() { DONORS_MEMBERS_PLATINUM, DONORS_MEMBERS_GOLD, }; - tc->add_child(_populate_list(TTR("Donors"), donor_sections, donor_src, 0b1, true)); // First section (Patron) is one column. + tc->add_child(_populate_list(TTR("Godot Donors"), donor_sections, donor_src, 0b1, true)); // First section (Patron) is one column. // License. @@ -267,7 +285,7 @@ EditorAbout::EditorAbout() { Label *tpl_label = memnew(Label); tpl_label->set_h_size_flags(Control::SIZE_EXPAND_FILL); tpl_label->set_autowrap_mode(TextServer::AUTOWRAP_WORD_SMART); - tpl_label->set_text(TTR("Godot Engine relies on a number of third-party free and open source libraries, all compatible with the terms of its MIT license. The following is an exhaustive list of all such third-party components with their respective copyright statements and license terms.")); + tpl_label->set_text(TTR("Redot Engine relies on a number of third-party free and open source libraries, all compatible with the terms of its MIT license. The following is an exhaustive list of all such third-party components with their respective copyright statements and license terms.")); tpl_label->set_size(Size2(630, 1) * EDSCALE); license_thirdparty->add_child(tpl_label); |