Fix remainder of godotengine references

This commit is contained in:
Spartan322
2024-10-31 15:59:09 -04:00
parent b3f67a970f
commit 1d62a70c5b
6 changed files with 9 additions and 8 deletions

View File

@@ -1623,7 +1623,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">)",

View File

@@ -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<String> classes_with_csharp_differences = {
"@GlobalScope",
"String",

View File

@@ -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);

View File

@@ -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";

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:"))));
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);

View File

@@ -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: