Skip to content

Commit

Permalink
Pushing Changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bioblaze committed Oct 15, 2024
1 parent 15a2a2e commit 60caf8d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions editor/export/export_template_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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://blazium.app/mirrorlist/" + current_version + ".json";
request_mirrors->request(mirrors_metadata_url);
}

Expand Down Expand Up @@ -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("Blazium Export Templates"));
install_file_dialog->connect("file_selected", callable_mp(this, &ExportTemplateManager::_install_file_selected).bind(false));
add_child(install_file_dialog);

Expand Down
4 changes: 2 additions & 2 deletions modules/regex/tests/test_regex.h
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ TEST_CASE("[RegEx] Complex Grouping") {
CHECK(expr->get_string(0) == "https://docs.blazium.app");

CHECK(expr->get_string(1) == "docs");
CHECK(expr->get_string(2) == "godotengine");
CHECK(expr->get_string(3) == "org");
CHECK(expr->get_string(2) == "blazium");
CHECK(expr->get_string(3) == "app");
}

TEST_CASE("[RegEx] Number Expression") {
Expand Down
6 changes: 3 additions & 3 deletions version.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
short_name = "godot"
name = "Godot Engine"
short_name = "blazium"
name = "Blazium Engine"
major = 4
minor = 3
patch = 1
status = "rc"
module_config = ""
website = "https://godotengine.org"
website = "https://blazium.app"
docs = "4.3"

0 comments on commit 60caf8d

Please sign in to comment.