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

Merge pull request #36218 from akien-mga/doc-version-branch

doc: Only encode version branch (x.y) in class header
This commit is contained in:
Rémi Verschelde
2020-02-14 18:40:24 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -1032,7 +1032,7 @@ Error DocData::save_classes(const String &p_default_path, const Map<String, Stri
String header = "<class name=\"" + c.name + "\""; String header = "<class name=\"" + c.name + "\"";
if (c.inherits != "") if (c.inherits != "")
header += " inherits=\"" + c.inherits + "\""; header += " inherits=\"" + c.inherits + "\"";
header += String(" version=\"") + VERSION_NUMBER + "\""; header += String(" version=\"") + VERSION_BRANCH + "\"";
header += ">"; header += ">";
_write_string(f, 0, header); _write_string(f, 0, header);

View File

@@ -83,7 +83,7 @@ void DocDump::dump(const String &p_file) {
FileAccess *f = FileAccess::open(p_file, FileAccess::WRITE); FileAccess *f = FileAccess::open(p_file, FileAccess::WRITE);
_write_string(f, 0, "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>"); _write_string(f, 0, "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");
_write_string(f, 0, String("<doc version=\"") + VERSION_NUMBER + "\" name=\"Engine Types\">"); _write_string(f, 0, String("<doc version=\"") + VERSION_BRANCH + "\" name=\"Engine Types\">");
while (class_list.size()) { while (class_list.size()) {