Skip to content

Commit

Permalink
Focused on Specific things URLs and such.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bioblaze committed Oct 15, 2024
1 parent da5a185 commit 84e4c6f
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 23 deletions.
2 changes: 1 addition & 1 deletion core/config/project_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,7 @@ ProjectSettings::ProjectSettings() {
GLOBAL_DEF("debug/settings/crash_handler/message",
String("Please include this when reporting the bug to the project developer."));
GLOBAL_DEF("debug/settings/crash_handler/message.editor",
String("Please include this when reporting the bug on: https://github.com/godotengine/godot/issues"));
String("Please include this when reporting the bug on: https://github.com/blazium-engine/blazium/issues"));
GLOBAL_DEF_RST(PropertyInfo(Variant::INT, "rendering/occlusion_culling/bvh_build_quality", PROPERTY_HINT_ENUM, "Low,Medium,High"), 2);
GLOBAL_DEF_RST("rendering/occlusion_culling/jitter_projection", true);

Expand Down
2 changes: 1 addition & 1 deletion doc/classes/@GlobalScope.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2754,7 +2754,7 @@
</constant>
<constant name="ERR_BUG" value="47" enum="Error">
Bug error, caused by an implementation issue in the method.
[b]Note:[/b] If a built-in method returns this code, please open an issue on [url=https://github.com/godotengine/godot/issues]the GitHub Issue Tracker[/url].
[b]Note:[/b] If a built-in method returns this code, please open an issue on [url=https://github.com/blazium-engine/blazium/issues]the GitHub Issue Tracker[/url].
</constant>
<constant name="ERR_PRINTER_ON_FIRE" value="48" enum="Error">
Printer on fire error (This is an easter egg, no built-in methods return this error code).
Expand Down
6 changes: 3 additions & 3 deletions doc/tools/make_rst.py
Original file line number Diff line number Diff line change
Expand Up @@ -928,8 +928,8 @@ def make_rst_class(class_def: ClassDef, state: State, dry_run: bool, output_dir:

git_branch = get_git_branch()
source_xml_path = os.path.relpath(class_def.filepath, root_directory).replace("\\", "/")
source_github_url = f"https://github.com/godotengine/godot/tree/{git_branch}/{source_xml_path}"
generator_github_url = f"https://github.com/godotengine/godot/tree/{git_branch}/doc/tools/make_rst.py"
source_github_url = f"https://github.com/blazium-engine/blazium/tree/{git_branch}/{source_xml_path}"
generator_github_url = f"https://github.com/blazium-engine/blazium/tree/{git_branch}/doc/tools/make_rst.py"

f.write(".. DO NOT EDIT THIS FILE!!!\n")
f.write(".. Generated automatically from Godot engine sources.\n")
Expand Down Expand Up @@ -1751,7 +1751,7 @@ def make_rst_index(grouped_classes: Dict[str, List[str]], dry_run: bool, output_
# Also provide links to the source files for reference.

git_branch = get_git_branch()
generator_github_url = f"https://github.com/godotengine/godot/tree/{git_branch}/doc/tools/make_rst.py"
generator_github_url = f"https://github.com/blazium-engine/blazium/tree/{git_branch}/doc/tools/make_rst.py"

f.write(".. DO NOT EDIT THIS FILE!!!\n")
f.write(".. Generated automatically from Godot engine sources.\n")
Expand Down
2 changes: 1 addition & 1 deletion editor/debugger/script_editor_debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1697,7 +1697,7 @@ void ScriptEditorDebugger::_item_menu_id_pressed(int p_option) {
// Construct a GitHub repository URL and open it in the user's default web browser.
// If the commit hash is available, use it for greater accuracy. Otherwise fall back to tagged release.
String git_ref = String(VERSION_HASH).is_empty() ? String(VERSION_NUMBER) + "-stable" : String(VERSION_HASH);
OS::get_singleton()->shell_open(vformat("https://github.com/godotengine/godot/blob/%s/%s#L%d",
OS::get_singleton()->shell_open(vformat("https://github.com/blazium-engine/blazium/blob/%s/%s#L%d",
git_ref, file, line_number));
} break;
case ACTION_DELETE_BREAKPOINT: {
Expand Down
2 changes: 1 addition & 1 deletion editor/doc_tools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,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/blazium-engine/blazium/master/doc/class.xsd";
}
header += vformat(
R"( xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="%s">)",
Expand Down
12 changes: 6 additions & 6 deletions editor/editor_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3165,29 +3165,29 @@ 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://chat.blazium.app");
} break;
case HELP_REPORT_A_BUG: {
OS::get_singleton()->shell_open("https://github.com/godotengine/godot/issues");
OS::get_singleton()->shell_open("https://github.com/blazium-engine/blazium/issues");
} break;
case HELP_COPY_SYSTEM_INFO: {
String info = _get_system_info();
DisplayServer::get_singleton()->clipboard_set(info);
} break;
case HELP_SUGGEST_A_FEATURE: {
OS::get_singleton()->shell_open("https://github.com/godotengine/godot-proposals#readme");
OS::get_singleton()->shell_open("https://chat.blazium.app");
} break;
case HELP_SEND_DOCS_FEEDBACK: {
OS::get_singleton()->shell_open("https://github.com/godotengine/godot-docs/issues");
OS::get_singleton()->shell_open("https://github.com/blazium-engine/blazium-docs/issues");
} break;
case HELP_COMMUNITY: {
OS::get_singleton()->shell_open("https://godotengine.org/community");
OS::get_singleton()->shell_open("https://chat.blazium.app");
} 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://chat.blazium.app");
} break;
case SET_RENDERER_NAME_SAVE_AND_RESTART: {
ProjectSettings::get_singleton()->set("rendering/renderer/rendering_method", renderer_request);
Expand Down
8 changes: 4 additions & 4 deletions misc/dist/linux/org.godotengine.Godot.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
</screenshot>
</screenshots>
<url type="homepage">https://godotengine.org</url>
<url type="bugtracker">https://github.com/godotengine/godot/issues</url>
<url type="faq">https://docs.godotengine.org/en/latest/about/faq.html</url>
<url type="help">https://docs.godotengine.org</url>
<url type="donation">https://godotengine.org/donate</url>
<url type="bugtracker">https://github.com/blazium-engine/blazium/issues</url>
<url type="faq">https://docs.blazium.app/about/faq.html</url>
<url type="help">https://docs.blazium.app</url>
<url type="donation">https://chat.blazium.app</url>
<url type="translate">https://hosted.weblate.org/projects/godot-engine/godot</url>
<developer_name>The Godot Engine Community</developer_name>
<update_contact>akien_at_godotengine_dot_org</update_contact>
Expand Down
17 changes: 11 additions & 6 deletions platform/android/java/scripts/publish-module.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ afterEvaluate {
// Mostly self-explanatory metadata
pom {
name = PUBLISH_ARTIFACT_ID
description = 'Godot Engine Android Library'
url = 'https://godotengine.org/'
description = 'Blazium Engine Android Library'
url = 'https://blazium.app/'
licenses {
license {
name = 'MIT License'
url = 'https://github.com/godotengine/godot/blob/master/LICENSE.txt'
url = 'https://github.com/blazium-engine/blazium/blob/master/LICENSE.txt'
}
}
developers {
Expand All @@ -43,15 +43,20 @@ afterEvaluate {
name = 'Rémi Verschelde'
email = 'rverschelde@gmail.com'
}
developer {
id = 'bioblaze'
name = 'Bioblaze Payne'
email = 'bioblazepayne@gmail.com'
}
// Add all other devs here...
}

// Version control info - if you're using GitHub, follow the
// format as seen here
scm {
connection = 'scm:git:github.com/godotengine/godot.git'
developerConnection = 'scm:git:ssh://github.com/godotengine/godot.git'
url = 'https://github.com/godotengine/godot/tree/master'
connection = 'scm:git:github.com/blazium-engine/blazium.git'
developerConnection = 'scm:git:ssh://github.com/blazium-engine/blazium.git'
url = 'https://github.com/blazium-engine/blazium/tree/master'
}
}
}
Expand Down

0 comments on commit 84e4c6f

Please sign in to comment.