donate-cpu-server.py: added links to some important errors to overview (#3731)
This commit is contained in:
parent
a7dbd288c4
commit
be73eb3c7c
|
@ -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.21"
|
||||
SERVER_VERSION = "1.3.22"
|
||||
|
||||
OLD_VERSION = '2.6'
|
||||
|
||||
|
@ -82,6 +82,11 @@ def overviewReport() -> str:
|
|||
html += '<a href="check_library_noreturn_report.html">checkLibraryNoReturn report</a><br>\n'
|
||||
html += '<a href="check_library_use_ignore_report.html">checkLibraryUseIgnore report</a><br>\n'
|
||||
html += '<br>\n'
|
||||
html += 'Important errors:<br>\n'
|
||||
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 += '<br>\n'
|
||||
html += 'version ' + SERVER_VERSION + '\n'
|
||||
html += '</body></html>'
|
||||
return html
|
||||
|
|
Loading…
Reference in New Issue