summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorSpartan322 <Megacake1234@gmail.com>2024-10-11 16:31:44 -0400
committerSpartan322 <Megacake1234@gmail.com>2024-10-14 10:07:25 -0400
commit361170f6dad7e1bb873f72b17def01980162fc11 (patch)
tree7561ecf5491dd24ec60b27b9c94172ac4b2e3f52 /core
parent83d65738b06986e5aa0943cae01e357133e04a75 (diff)
downloadredot-engine-361170f6dad7e1bb873f72b17def01980162fc11.tar.gz
Bump version to 4.4-alpha.2
Add status_version to version.py Update Engine.xml example for get_godot_compatible_version_info
Diffstat (limited to 'core')
-rw-r--r--core/SCsub1
-rw-r--r--core/config/engine.cpp10
2 files changed, 10 insertions, 1 deletions
diff --git a/core/SCsub b/core/SCsub
index 3570f0dc15..1c01bbbef6 100644
--- a/core/SCsub
+++ b/core/SCsub
@@ -186,6 +186,7 @@ def version_info_builder(target, source, env):
#define VERSION_MINOR {minor}
#define VERSION_PATCH {patch}
#define VERSION_STATUS "{status}"
+#define VERSION_STATUS_VERSION {status_version}
#define VERSION_BUILD "{build}"
#define VERSION_MODULE_CONFIG "{module_config}"
#define VERSION_WEBSITE "{website}"
diff --git a/core/config/engine.cpp b/core/config/engine.cpp
index c0d7389715..0ad659629a 100644
--- a/core/config/engine.cpp
+++ b/core/config/engine.cpp
@@ -126,6 +126,8 @@ Dictionary Engine::get_version_info() const {
dict["status"] = VERSION_STATUS;
dict["build"] = VERSION_BUILD;
+ dict["status_version"] = dict["status"] != "stable" ? VERSION_STATUS_VERSION : 0;
+
String hash = String(VERSION_HASH);
dict["hash"] = hash.is_empty() ? String("unknown") : hash;
@@ -135,7 +137,13 @@ Dictionary Engine::get_version_info() const {
if ((int)dict["patch"] != 0) {
stringver += "." + String(dict["patch"]);
}
- stringver += "-" + String(dict["status"]) + " (" + String(dict["build"]) + ")";
+ stringver += "-" + String(dict["status"]);
+
+ if ((int)dict["status_version"] != 0) {
+ stringver += "." + String(dict["status_version"]);
+ }
+
+ stringver += " (" + String(dict["build"]) + ")";
dict["string"] = stringver;
return dict;