You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-28 16:07:14 +00:00
Separate version hash from version number in editor and project manager
When copy-pasting the version from About dialog to bug reports at GitHub, this makes the version hash linkable to commits at GitHub.
This commit is contained in:
@@ -2621,7 +2621,7 @@ ProjectManager::ProjectManager() {
|
||||
version_btn = memnew(LinkButton);
|
||||
String hash = String(VERSION_HASH);
|
||||
if (hash.length() != 0) {
|
||||
hash = "." + hash.left(9);
|
||||
hash = " " + vformat("[%s]", hash.left(9));
|
||||
}
|
||||
version_btn->set_text("v" VERSION_FULL_BUILD + hash);
|
||||
// Fade the version label to be less prominent, but still readable.
|
||||
|
||||
Reference in New Issue
Block a user