diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-15 18:37:54 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-15 20:41:16 +0100 |
commit | 967bfb0c4a1db5adb10d40f66bb8542ec25e1694 (patch) | |
tree | 6875f0de190ff46819becf9fe4a7736cbfea87c8 /editor/doc/doc_data.cpp | |
parent | 4d08e7c4204ff3fa0e17e0de7e5a08ef03968202 (diff) | |
download | redot-engine-967bfb0c4a1db5adb10d40f66bb8542ec25e1694.tar.gz |
doc: Remove revision.module_config from version string
It is now "3.0-alpha" instead of "3.0.alpha.custom_build{,.mono}",
limits unnecessary diffs.
Diffstat (limited to 'editor/doc/doc_data.cpp')
-rw-r--r-- | editor/doc/doc_data.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/doc/doc_data.cpp b/editor/doc/doc_data.cpp index 0f113b11e6..2a0cd00c27 100644 --- a/editor/doc/doc_data.cpp +++ b/editor/doc/doc_data.cpp @@ -951,7 +951,7 @@ Error DocData::save_classes(const String &p_default_path, const Map<String, Stri if (c.category == "") category = "Core"; header += " category=\"" + category + "\""; - header += " version=\"" + String(VERSION_MKSTRING) + "\""; + header += String(" version=\"") + _MKSTR(VERSION_MAJOR) + "." + _MKSTR(VERSION_MINOR) + "-" + _MKSTR(VERSION_STATUS) + "\""; header += ">"; _write_string(f, 0, header); _write_string(f, 1, "<brief_description>"); |