diff options
Diffstat (limited to 'editor/export/export_template_manager.cpp')
-rw-r--r-- | editor/export/export_template_manager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/export/export_template_manager.cpp b/editor/export/export_template_manager.cpp index a6f6c87ee1..83c0ac7d43 100644 --- a/editor/export/export_template_manager.cpp +++ b/editor/export/export_template_manager.cpp @@ -236,7 +236,7 @@ void ExportTemplateManager::_refresh_mirrors() { is_refreshing_mirrors = true; String current_version = VERSION_FULL_CONFIG; - const String mirrors_metadata_url = "https://godotengine.org/mirrorlist/" + current_version + ".json"; + const String mirrors_metadata_url = "https://redotengine.org/mirrorlist/" + current_version + ".json"; request_mirrors->request(mirrors_metadata_url); } @@ -681,7 +681,7 @@ String ExportTemplateManager::get_android_source_zip(const Ref<EditorExportPrese } String ExportTemplateManager::get_android_template_identifier(const Ref<EditorExportPreset> &p_preset) { - // The template identifier is the Godot version for the default template, and the full path plus md5 hash for custom templates. + // The template identifier is the Redot version for the default template, and the full path plus md5 hash for custom templates. if (p_preset.is_valid()) { String android_source_zip = p_preset->get("gradle_build/android_source_template"); if (!android_source_zip.is_empty()) { @@ -1058,7 +1058,7 @@ ExportTemplateManager::ExportTemplateManager() { install_file_dialog->set_access(FileDialog::ACCESS_FILESYSTEM); install_file_dialog->set_file_mode(FileDialog::FILE_MODE_OPEN_FILE); install_file_dialog->set_current_dir(EditorSettings::get_singleton()->get_meta("export_template_download_directory", "")); - install_file_dialog->add_filter("*.tpz", TTR("Godot Export Templates")); + install_file_dialog->add_filter("*.tpz", TTR("Redot Export Templates")); install_file_dialog->connect("file_selected", callable_mp(this, &ExportTemplateManager::_install_file_selected).bind(false)); add_child(install_file_dialog); |