Skip to content

Commit ed42d73

Browse files
authored
Change Donate URL to redotfoundation (#1234)
* Change Donate URL to redotfoundation * Update DONORS.md url
1 parent 8080a78 commit ed42d73

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

DONORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Redot Engine is a non-profit project developed by a community of voluntary contributors.
44

55
Our Team greatly appreciates any and all donations.
6-
More information about supporting the project can be found on [Redot's Ko-Fi](https://ko-fi.com/redotengine).
6+
More information about supporting the project can be found on [Redot Foundation](https://redotfoundation.org/support).
77

88
Below is a list of our generous donors.
99

editor/editor_node.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ void EditorNode::_update_theme(bool p_skip_creation) {
686686
help_menu->set_item_icon(help_menu->get_item_index(HELP_SEARCH), _get_editor_theme_native_menu_icon(SNAME("HelpSearch"), global_menu, dark_mode));
687687
help_menu->set_item_icon(help_menu->get_item_index(HELP_COPY_SYSTEM_INFO), _get_editor_theme_native_menu_icon(SNAME("ActionCopy"), global_menu, dark_mode));
688688
help_menu->set_item_icon(help_menu->get_item_index(HELP_ABOUT), _get_editor_theme_native_menu_icon(SNAME("Godot"), global_menu, dark_mode));
689-
help_menu->set_item_icon(help_menu->get_item_index(HELP_SUPPORT_GODOT_DEVELOPMENT), _get_editor_theme_native_menu_icon(SNAME("Heart"), global_menu, dark_mode));
689+
help_menu->set_item_icon(help_menu->get_item_index(HELP_SUPPORT_REDOT_DEVELOPMENT), _get_editor_theme_native_menu_icon(SNAME("Heart"), global_menu, dark_mode));
690690

691691
if (EditorDebuggerNode::get_singleton()->is_visible()) {
692692
bottom_panel->add_theme_style_override(SceneStringName(panel), theme->get_stylebox(SNAME("BottomPanelDebuggerOverride"), EditorStringName(EditorStyles)));
@@ -3514,8 +3514,8 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
35143514
case HELP_ABOUT: {
35153515
about->popup_centered(Size2(780, 500) * EDSCALE);
35163516
} break;
3517-
case HELP_SUPPORT_GODOT_DEVELOPMENT: {
3518-
OS::get_singleton()->shell_open("https://ko-fi.com/redotengine");
3517+
case HELP_SUPPORT_REDOT_DEVELOPMENT: {
3518+
OS::get_singleton()->shell_open("https://redotfoundation.org/support");
35193519
} break;
35203520
}
35213521
}
@@ -3651,7 +3651,7 @@ void EditorNode::_check_system_theme_changed() {
36513651
help_menu->set_item_icon(help_menu->get_item_index(HELP_SEARCH), _get_editor_theme_native_menu_icon(SNAME("HelpSearch"), global_menu, dark_mode));
36523652
help_menu->set_item_icon(help_menu->get_item_index(HELP_COPY_SYSTEM_INFO), _get_editor_theme_native_menu_icon(SNAME("ActionCopy"), global_menu, dark_mode));
36533653
help_menu->set_item_icon(help_menu->get_item_index(HELP_ABOUT), _get_editor_theme_native_menu_icon(SNAME("Godot"), global_menu, dark_mode));
3654-
help_menu->set_item_icon(help_menu->get_item_index(HELP_SUPPORT_GODOT_DEVELOPMENT), _get_editor_theme_native_menu_icon(SNAME("Heart"), global_menu, dark_mode));
3654+
help_menu->set_item_icon(help_menu->get_item_index(HELP_SUPPORT_REDOT_DEVELOPMENT), _get_editor_theme_native_menu_icon(SNAME("Heart"), global_menu, dark_mode));
36553655
editor_dock_manager->update_docks_menu();
36563656
}
36573657
}
@@ -8290,7 +8290,7 @@ EditorNode::EditorNode() {
82908290
help_menu->add_icon_shortcut(_get_editor_theme_native_menu_icon(SNAME("Godot"), global_menu, dark_mode), ED_SHORTCUT_AND_COMMAND("editor/about", TTRC("About Engine...")), HELP_ABOUT);
82918291
}
82928292

8293-
help_menu->add_icon_shortcut(_get_editor_theme_native_menu_icon(SNAME("Heart"), global_menu, dark_mode), ED_SHORTCUT_AND_COMMAND("editor/support_development", TTRC("Support Engine Development")), HELP_SUPPORT_GODOT_DEVELOPMENT);
8293+
help_menu->add_icon_shortcut(_get_editor_theme_native_menu_icon(SNAME("Heart"), global_menu, dark_mode), ED_SHORTCUT_AND_COMMAND("editor/support_development", TTRC("Support Engine Development")), HELP_SUPPORT_REDOT_DEVELOPMENT);
82948294

82958295
// Spacer to center 2D / 3D / Script buttons.
82968296
right_spacer = memnew(Control);

editor/editor_node.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ class EditorNode : public Node {
205205
HELP_SUGGEST_A_FEATURE,
206206
HELP_SEND_DOCS_FEEDBACK,
207207
HELP_ABOUT,
208-
HELP_SUPPORT_GODOT_DEVELOPMENT,
208+
HELP_SUPPORT_REDOT_DEVELOPMENT,
209209

210210
// Update spinner menu.
211211
SPINNER_UPDATE_CONTINUOUSLY,

editor/project_manager/project_manager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,7 @@ void ProjectManager::_titlebar_resized() {
12721272
}
12731273

12741274
void ProjectManager::_open_donate_page() {
1275-
OS::get_singleton()->shell_open("https://ko-fi.com/redotengine");
1275+
OS::get_singleton()->shell_open("https://redotfoundation.org/support");
12761276
}
12771277

12781278
// Object methods.

0 commit comments

Comments
 (0)