diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-08 17:03:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-08 17:03:30 +0200 |
commit | 006cb7def4918ec61df8bfb7d5e672eb8ee71258 (patch) | |
tree | d2592a4cb534628c629c9b5d638a95cbdaa9d7f0 | |
parent | affb3ce1b7e5ac9c6ecf3d714e7aa19587850b25 (diff) | |
parent | 293550f56ad732ce27d042f6fca8fe8476669d15 (diff) |
Merge pull request #49405 from Xrayez/version-hash-dot-to-space
Separate version hash from version number in editor and project manager
-rw-r--r-- | editor/editor_about.cpp | 2 | ||||
-rw-r--r-- | editor/editor_node.cpp | 2 | ||||
-rw-r--r-- | editor/project_manager.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index 7527514dca..b8504ad02a 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -141,7 +141,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. diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 2e6ec88d8c..1c2fd50f0b 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -6632,7 +6632,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); diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp index 9ed9bdcb96..1b596ce599 100644 --- a/editor/project_manager.cpp +++ b/editor/project_manager.cpp @@ -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. |