From 1d62a70c5bb74dfbffffe1c018a861719e93e7ae Mon Sep 17 00:00:00 2001 From: Spartan322 Date: Thu, 31 Oct 2024 15:59:09 -0400 Subject: [PATCH] Fix remainder of godotengine references --- editor/doc_tools.cpp | 2 +- editor/editor_help.cpp | 2 +- editor/editor_node.cpp | 6 +++--- editor/editor_property_name_processor.cpp | 2 +- editor/fbx_importer_manager.cpp | 1 + platform/linuxbsd/wayland/display_server_wayland.cpp | 4 ++-- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/editor/doc_tools.cpp b/editor/doc_tools.cpp index aaf0dd5b78..36c2a839e6 100644 --- a/editor/doc_tools.cpp +++ b/editor/doc_tools.cpp @@ -1623,7 +1623,7 @@ Error DocTools::save_classes(const String &p_default_path, const HashMap)", diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 47d8ca4dc1..5e1d9b4ded 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -67,7 +67,7 @@ #define CONTRIBUTE_URL vformat("%s/contributing/documentation/updating_the_class_reference.html", VERSION_DOCS_URL) #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 classes_with_csharp_differences = { "@GlobalScope", "String", diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 56b45632de..434b8fe7c9 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -3167,7 +3167,7 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) { OS::get_singleton()->shell_open(VERSION_DOCS_URL "/"); } break; case HELP_FORUM: { - OS::get_singleton()->shell_open("https://forum.godotengine.org/"); + OS::get_singleton()->shell_open("https://forum.redotengine.org/"); } break; case HELP_REPORT_A_BUG: { OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-engine/issues"); @@ -3183,13 +3183,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"); } break; case HELP_COMMUNITY: { - OS::get_singleton()->shell_open("https://godotengine.org/community"); + OS::get_singleton()->shell_open("https://redotengine.org/community"); } break; case HELP_ABOUT: { about->popup_centered(Size2(780, 500) * EDSCALE); } break; case HELP_SUPPORT_GODOT_DEVELOPMENT: { - OS::get_singleton()->shell_open("https://godotengine.org/donate"); + OS::get_singleton()->shell_open("https://redotengine.org/donate"); } break; case SET_RENDERER_NAME_SAVE_AND_RESTART: { ProjectSettings::get_singleton()->set("rendering/renderer/rendering_method", renderer_request); diff --git a/editor/editor_property_name_processor.cpp b/editor/editor_property_name_processor.cpp index be7de37c06..4e5044ca89 100644 --- a/editor/editor_property_name_processor.cpp +++ b/editor/editor_property_name_processor.cpp @@ -147,7 +147,7 @@ EditorPropertyNameProcessor::EditorPropertyNameProcessor() { // 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. - // 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["3d"] = "3D"; capitalize_string_remaps["aa"] = "AA"; diff --git a/editor/fbx_importer_manager.cpp b/editor/fbx_importer_manager.cpp index a7f7637396..c31d6610bb 100644 --- a/editor/fbx_importer_manager.cpp +++ b/editor/fbx_importer_manager.cpp @@ -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:")))); LinkButton *lb = memnew(LinkButton); 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"); vb->add_child(lb); diff --git a/platform/linuxbsd/wayland/display_server_wayland.cpp b/platform/linuxbsd/wayland/display_server_wayland.cpp index 17af607572..e56e2a9bac 100644 --- a/platform/linuxbsd/wayland/display_server_wayland.cpp +++ b/platform/linuxbsd/wayland/display_server_wayland.cpp @@ -57,11 +57,11 @@ String DisplayServerWayland::_get_app_id_from_context(Context p_context) { switch (p_context) { case CONTEXT_EDITOR: { - app_id = "org.godotengine.Editor"; + app_id = "org.redotengine.Editor"; } break; case CONTEXT_PROJECTMAN: { - app_id = "org.godotengine.ProjectManager"; + app_id = "org.redotengine.ProjectManager"; } break; case CONTEXT_ENGINE: