Skip to content

Commit 3302f80

Browse files
authored
Merge pull request #831 from Spartan322/fix/remaining-godot-refs
Fix remainder of godotengine references
2 parents 18415d7 + dcfa4ef commit 3302f80

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

editor/doc_tools.cpp

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

editor/editor_help.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
#define CONTRIBUTE_URL vformat("%s/contributing/documentation/updating_the_class_reference.html", VERSION_DOCS_URL)
6969

7070
#ifdef MODULE_MONO_ENABLED
71-
// Sync with the types mentioned in https://docs.godotengine.org/en/stable/tutorials/scripting/c_sharp/c_sharp_differences.html
71+
// Sync with the types mentioned in https://docs.redotengine.org/en/stable/tutorials/scripting/c_sharp/c_sharp_differences.html
7272
const Vector<String> classes_with_csharp_differences = {
7373
"@GlobalScope",
7474
"String",

editor/editor_node.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3140,7 +3140,7 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
31403140
OS::get_singleton()->shell_open(VERSION_DOCS_URL "/");
31413141
} break;
31423142
case HELP_FORUM: {
3143-
OS::get_singleton()->shell_open("https://forum.godotengine.org/");
3143+
OS::get_singleton()->shell_open("https://forum.redotengine.org/");
31443144
} break;
31453145
case HELP_REPORT_A_BUG: {
31463146
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) {
31563156
OS::get_singleton()->shell_open("https://github.com/Redot-Engine/redot-docs/issues");
31573157
} break;
31583158
case HELP_COMMUNITY: {
3159-
OS::get_singleton()->shell_open("https://godotengine.org/community");
3159+
OS::get_singleton()->shell_open("https://redotengine.org/community");
31603160
} break;
31613161
case HELP_ABOUT: {
31623162
about->popup_centered(Size2(780, 500) * EDSCALE);
31633163
} break;
31643164
case HELP_SUPPORT_GODOT_DEVELOPMENT: {
3165-
OS::get_singleton()->shell_open("https://godotengine.org/donate");
3165+
OS::get_singleton()->shell_open("https://redotengine.org/donate");
31663166
} break;
31673167
case SET_RENDERER_NAME_SAVE_AND_RESTART: {
31683168
ProjectSettings::get_singleton()->set("rendering/renderer/rendering_method", renderer_request);

editor/editor_property_name_processor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ EditorPropertyNameProcessor::EditorPropertyNameProcessor() {
147147

148148
// The following initialization is parsed by the l10n extraction script with a regex.
149149
// The map name and value definition format should be kept synced with the regex.
150-
// https://github.com/godotengine/godot-editor-l10n/blob/main/scripts/common.py
150+
// https://github.com/Redot-Engine/redot-editor-l10n/blob/main/scripts/common.py
151151
capitalize_string_remaps["2d"] = "2D";
152152
capitalize_string_remaps["3d"] = "3D";
153153
capitalize_string_remaps["4d"] = "4D";

editor/fbx_importer_manager.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ FBXImporterManager::FBXImporterManager() {
145145
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:"))));
146146
LinkButton *lb = memnew(LinkButton);
147147
lb->set_text(TTR("Click this link to download FBX2glTF"));
148+
// TODO: Update https://godotengine.org/fbx-import if/when it exists
148149
lb->set_uri("https://godotengine.org/fbx-import");
149150
vb->add_child(lb);
150151

platform/linuxbsd/wayland/display_server_wayland.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ String DisplayServerWayland::_get_app_id_from_context(Context p_context) {
5757

5858
switch (p_context) {
5959
case CONTEXT_EDITOR: {
60-
app_id = "org.godotengine.Editor";
60+
app_id = "org.redotengine.Editor";
6161
} break;
6262

6363
case CONTEXT_PROJECTMAN: {
64-
app_id = "org.godotengine.ProjectManager";
64+
app_id = "org.redotengine.ProjectManager";
6565
} break;
6666

6767
case CONTEXT_ENGINE:

0 commit comments

Comments
 (0)