mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08: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. (cherry picked from commit 293550f56ad732ce27d042f6fca8fe8476669d15)
This commit is contained in:
parent
bdc8d29749
commit
6aed7e349f
@ -136,7 +136,7 @@ EditorAbout::EditorAbout() {
|
||||
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(VERSION_FULL_NAME + hash);
|
||||
// Set the text to copy in metadata as it slightly differs from the button's text.
|
||||
|
@ -6583,7 +6583,7 @@ EditorNode::EditorNode() {
|
||||
version_btn->set_text(VERSION_FULL_CONFIG);
|
||||
String hash = String(VERSION_HASH);
|
||||
if (hash.length() != 0) {
|
||||
hash = "." + hash.left(9);
|
||||
hash = " " + vformat("[%s]", hash.left(9));
|
||||
}
|
||||
// Set the text to copy in metadata as it slightly differs from the button's text.
|
||||
version_btn->set_meta(META_TEXT_TO_COPY, "v" VERSION_FULL_BUILD + hash);
|
||||
|
@ -2576,7 +2576,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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user