1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-17 14:11:06 +00:00

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.
This commit is contained in:
Rémi Verschelde
2017-11-15 18:37:54 +01:00
parent 4d08e7c420
commit 967bfb0c4a
475 changed files with 475 additions and 475 deletions

View File

@@ -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>");