Fix remainder of godotengine references

(cherry picked from commit 1d62a70c5b)
This commit is contained in:
Spartan322
2024-10-31 15:59:09 -04:00
parent 632a9c68d2
commit dcfa4ef25a
6 changed files with 9 additions and 8 deletions

View File

@@ -1637,7 +1637,7 @@ Error DocTools::save_classes(const String &p_default_path, const HashMap<String,
// Modules are nested deep, so change the path to reference the same schema everywhere. // Modules are nested deep, so change the path to reference the same schema everywhere.
schema_path = save_path.contains("modules/") ? "../../../doc/class.xsd" : "../class.xsd"; schema_path = save_path.contains("modules/") ? "../../../doc/class.xsd" : "../class.xsd";
} else { } else {
schema_path = "https://raw.githubusercontent.com/godotengine/godot/master/doc/class.xsd"; schema_path = "https://raw.githubusercontent.com/Redot-Engine/redot-engine/master/doc/class.xsd";
} }
header += vformat( header += vformat(
R"( xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="%s">)", R"( xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="%s">)",

View File

@@ -68,7 +68,7 @@
#define CONTRIBUTE_URL vformat("%s/contributing/documentation/updating_the_class_reference.html", VERSION_DOCS_URL) #define CONTRIBUTE_URL vformat("%s/contributing/documentation/updating_the_class_reference.html", VERSION_DOCS_URL)
#ifdef MODULE_MONO_ENABLED #ifdef MODULE_MONO_ENABLED
// Sync with the types mentioned in https://docs.godotengine.org/en/stable/tutorials/scripting/c_sharp/c_sharp_differences.html // Sync with the types mentioned in https://docs.redotengine.org/en/stable/tutorials/scripting/c_sharp/c_sharp_differences.html
const Vector<String> classes_with_csharp_differences = { const Vector<String> classes_with_csharp_differences = {
"@GlobalScope", "@GlobalScope",
"String", "String",

View File

@@ -3140,7 +3140,7 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
OS::get_singleton()->shell_open(VERSION_DOCS_URL "/"); OS::get_singleton()->shell_open(VERSION_DOCS_URL "/");
} break; } break;
case HELP_FORUM: { case HELP_FORUM: {
OS::get_singleton()->shell_open("https://forum.godotengine.org/"); OS::get_singleton()->shell_open("https://forum.redotengine.org/");
} break; } break;
case HELP_REPORT_A_BUG: { case HELP_REPORT_A_BUG: {
OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-engine/issues"); OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-engine/issues");
@@ -3156,13 +3156,13 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-docs/issues"); OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-docs/issues");
} break; } break;
case HELP_COMMUNITY: { case HELP_COMMUNITY: {
OS::get_singleton()->shell_open("https://godotengine.org/community"); OS::get_singleton()->shell_open("https://redotengine.org/community");
} break; } break;
case HELP_ABOUT: { case HELP_ABOUT: {
about->popup_centered(Size2(780, 500) * EDSCALE); about->popup_centered(Size2(780, 500) * EDSCALE);
} break; } break;
case HELP_SUPPORT_GODOT_DEVELOPMENT: { case HELP_SUPPORT_GODOT_DEVELOPMENT: {
OS::get_singleton()->shell_open("https://godotengine.org/donate"); OS::get_singleton()->shell_open("https://redotengine.org/donate");
} break; } break;
case SET_RENDERER_NAME_SAVE_AND_RESTART: { case SET_RENDERER_NAME_SAVE_AND_RESTART: {
ProjectSettings::get_singleton()->set("rendering/renderer/rendering_method", renderer_request); ProjectSettings::get_singleton()->set("rendering/renderer/rendering_method", renderer_request);

View File

@@ -147,7 +147,7 @@ EditorPropertyNameProcessor::EditorPropertyNameProcessor() {
// The following initialization is parsed by the l10n extraction script with a regex. // The following initialization is parsed by the l10n extraction script with a regex.
// The map name and value definition format should be kept synced with the regex. // The map name and value definition format should be kept synced with the regex.
// https://github.com/godotengine/godot-editor-l10n/blob/main/scripts/common.py // https://github.com/Redot-Engine/redot-editor-l10n/blob/main/scripts/common.py
capitalize_string_remaps["2d"] = "2D"; capitalize_string_remaps["2d"] = "2D";
capitalize_string_remaps["3d"] = "3D"; capitalize_string_remaps["3d"] = "3D";
capitalize_string_remaps["4d"] = "4D"; capitalize_string_remaps["4d"] = "4D";

View File

@@ -145,6 +145,7 @@ FBXImporterManager::FBXImporterManager() {
vb->add_child(memnew(Label(TTR("FBX2glTF is required for importing FBX files if using FBX2glTF.\nAlternatively, you can use ufbx by disabling FBX2glTF.\nPlease download the necessary tool and provide a valid path to the binary:")))); vb->add_child(memnew(Label(TTR("FBX2glTF is required for importing FBX files if using FBX2glTF.\nAlternatively, you can use ufbx by disabling FBX2glTF.\nPlease download the necessary tool and provide a valid path to the binary:"))));
LinkButton *lb = memnew(LinkButton); LinkButton *lb = memnew(LinkButton);
lb->set_text(TTR("Click this link to download FBX2glTF")); lb->set_text(TTR("Click this link to download FBX2glTF"));
// TODO: Update https://godotengine.org/fbx-import if/when it exists
lb->set_uri("https://godotengine.org/fbx-import"); lb->set_uri("https://godotengine.org/fbx-import");
vb->add_child(lb); vb->add_child(lb);

View File

@@ -57,11 +57,11 @@ String DisplayServerWayland::_get_app_id_from_context(Context p_context) {
switch (p_context) { switch (p_context) {
case CONTEXT_EDITOR: { case CONTEXT_EDITOR: {
app_id = "org.godotengine.Editor"; app_id = "org.redotengine.Editor";
} break; } break;
case CONTEXT_PROJECTMAN: { case CONTEXT_PROJECTMAN: {
app_id = "org.godotengine.ProjectManager"; app_id = "org.redotengine.ProjectManager";
} break; } break;
case CONTEXT_ENGINE: case CONTEXT_ENGINE: