diff --git a/CHANGELOG.md b/CHANGELOG.md index ba692e6d2..576804024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ All notable changes to AET will be documented in this file. **List of changes that are finished but not yet released in any final version.** - [PR-479](https://github.com/Cognifide/aet/pull/479) Added Secure and HttpOnly flags for cookies. ([#477](https://github.com/Cognifide/aet/issues/477)) +- [PR-506](https://github.com/Cognifide/aet/pull/506) About tab ([#475](https://github.com/Cognifide/aet/issues/475)) ## Version 3.2.2 diff --git a/report/src/main/webapp/app/layout/toolbar/toolbarTop.view.html b/report/src/main/webapp/app/layout/toolbar/toolbarTop.view.html index 8bebf429d..1c881d88c 100644 --- a/report/src/main/webapp/app/layout/toolbar/toolbarTop.view.html +++ b/report/src/main/webapp/app/layout/toolbar/toolbarTop.view.html @@ -98,8 +98,15 @@
- diff --git a/report/src/main/webapp/app/services/metadataEndpoint.service.js b/report/src/main/webapp/app/services/metadataEndpoint.service.js index 187426e7c..135c4e3c0 100644 --- a/report/src/main/webapp/app/services/metadataEndpoint.service.js +++ b/report/src/main/webapp/app/services/metadataEndpoint.service.js @@ -23,7 +23,7 @@ define(['angularAMD', 'endpointConfiguration', 'requestParametersService'], /** * Service responsible for communication with AET metadata REST API endpoint. */ - function MetadataEndpointService($q, $http, endpointConfiguration, + function MetadataEndpointService($q, $rootScope, $http, endpointConfiguration, requestParametersService) { var service = { getMetadata: getMetadata, @@ -65,6 +65,7 @@ define(['angularAMD', 'endpointConfiguration', 'requestParametersService'], } }).then(function (data) { deferred.resolve(data.data); + $rootScope.applicationVersion = data.headers()['x-application-version']; return deferred.promise; }).catch(function (exception) { handleFailed('Failed to load report data!', exception); diff --git a/report/src/main/webapp/assets/img/cognifide.png b/report/src/main/webapp/assets/img/cognifide.png new file mode 100644 index 000000000..04cfd0c87 Binary files /dev/null and b/report/src/main/webapp/assets/img/cognifide.png differ diff --git a/report/src/main/webapp/assets/sass/_report.scss b/report/src/main/webapp/assets/sass/_report.scss index 8af5d7957..ec4fbb712 100644 --- a/report/src/main/webapp/assets/sass/_report.scss +++ b/report/src/main/webapp/assets/sass/_report.scss @@ -306,6 +306,21 @@ ul { } } +p.copyright { + padding-top: 10px; + font-style: italic; + text-align: center; + font-size: 12px; +} + +img.cognifide-logo { + padding-top: 15px; + display: block; + margin: 0 auto; + height: 10%; + width: 10%; +} + // cookies report .failed { diff --git a/report/src/main/webapp/assets/sass/_toolbar.scss b/report/src/main/webapp/assets/sass/_toolbar.scss index aa2deb669..fc121b57f 100644 --- a/report/src/main/webapp/assets/sass/_toolbar.scss +++ b/report/src/main/webapp/assets/sass/_toolbar.scss @@ -106,6 +106,10 @@ display: flex; justify-content: center; } + + .slim-padding { + padding: 6px; + } } &-generate-raport { diff --git a/report/src/main/webapp/report.html b/report/src/main/webapp/report.html index 6fd9e9b5a..0f6d9036b 100644 --- a/report/src/main/webapp/report.html +++ b/report/src/main/webapp/report.html @@ -75,6 +75,34 @@