donate-cpu-server.py: added daca errors to important errors in overview (#3761)

This commit is contained in:
Oliver Stöneberg 2022-01-27 17:54:44 +01:00 committed by GitHub
parent a2a9c90142
commit 8764110562
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -25,7 +25,7 @@ import html as html_lib
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
# changes)
SERVER_VERSION = "1.3.22"
SERVER_VERSION = "1.3.23"
OLD_VERSION = '2.6'
@ -86,6 +86,8 @@ def overviewReport() -> str:
html += '<a href="head-cppcheckError">cppcheckError</a><br>\n'
html += '<a href="head-internalAstError">internalAstError</a><br>\n'
html += '<a href="head-syntaxError">syntaxError</a><br>\n'
html += '<a href="head-DacaWrongData">DacaWrongData</a><br>\n'
html += '<a href="head-dacaWrongSplitTemplateRightAngleBrackets">dacaWrongSplitTemplateRightAngleBrackets</a><br>\n'
html += '<br>\n'
html += 'version ' + SERVER_VERSION + '\n'
html += '</body></html>'