From be73eb3c7c02bf6c639b7af5239413356e8024f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Fri, 21 Jan 2022 15:46:29 +0100 Subject: [PATCH] donate-cpu-server.py: added links to some important errors to overview (#3731) --- tools/donate-cpu-server.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/donate-cpu-server.py b/tools/donate-cpu-server.py index b9586354f..abf9699b0 100755 --- a/tools/donate-cpu-server.py +++ b/tools/donate-cpu-server.py @@ -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 += 'checkLibraryNoReturn report
\n' html += 'checkLibraryUseIgnore report
\n' html += '
\n' + html += 'Important errors:
\n' + html += 'cppcheckError
\n' + html += 'internalAstError
\n' + html += 'syntaxError
\n' + html += '
\n' html += 'version ' + SERVER_VERSION + '\n' html += '' return html