diff options
-rw-r--r-- | editor/doc_tools.cpp | 2 | ||||
-rw-r--r-- | editor/editor_help.cpp | 2 | ||||
-rw-r--r-- | editor/editor_node.cpp | 6 | ||||
-rw-r--r-- | editor/editor_property_name_processor.cpp | 2 | ||||
-rw-r--r-- | editor/fbx_importer_manager.cpp | 1 | ||||
-rw-r--r-- | 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 3d437618e3..171f1c5d83 100644 --- a/editor/doc_tools.cpp +++ b/editor/doc_tools.cpp @@ -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. schema_path = save_path.contains("modules/") ? "../../../doc/class.xsd" : "../class.xsd"; } 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( R"( xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="%s">)", diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index e6d2ad3f65..a5a89eabb6 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -68,7 +68,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<String> classes_with_csharp_differences = { "@GlobalScope", "String", diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 68946129d2..c3c925936d 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -3140,7 +3140,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"); @@ -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"); } 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 b12c8e0215..1c6b90d5d2 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["4d"] = "4D"; diff --git a/editor/fbx_importer_manager.cpp b/editor/fbx_importer_manager.cpp index 384d1fb030..0016f998e4 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 0e594c9f58..4b5ab09fec 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: |