Skip to content

Commit

Permalink
Merge pull request #831 from Spartan322/fix/remaining-godot-refs
Browse files Browse the repository at this point in the history
Fix remainder of godotengine references
  • Loading branch information
Spartan322 authored Nov 1, 2024
2 parents 18415d7 + dcfa4ef commit 3302f80
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion editor/doc_tools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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">)",
Expand Down
2 changes: 1 addition & 1 deletion editor/editor_help.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions editor/editor_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand All @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion editor/editor_property_name_processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
1 change: 1 addition & 0 deletions editor/fbx_importer_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
4 changes: 2 additions & 2 deletions platform/linuxbsd/wayland/display_server_wayland.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 3302f80

Please sign in to comment.