From e51328811a8f9b0ffbd255aac1b09398f6c37ebf Mon Sep 17 00:00:00 2001 From: Raul Metsma Date: Fri, 26 Jan 2024 13:43:23 +0200 Subject: [PATCH] Increase version number and copyright year WE2-858 Signed-off-by: Raul Metsma --- .github/workflows/cmake-linux-codeql.yml | 2 +- .github/workflows/cmake-linux-coverity.yml | 3 ++- .github/workflows/cmake-linux-fedora.yml | 9 +++++---- .github/workflows/cmake-linux-ubuntu.yml | 5 +++-- .github/workflows/cmake-macos.yml | 10 +++++----- .github/workflows/cmake-windows.yml | 9 +++++---- CMakeLists.txt | 2 +- LICENSE | 2 +- debian/copyright | 2 +- src/app/getcommandhandler.cpp | 2 +- src/app/main.cpp | 2 +- src/app/web-eid.rc | 2 +- src/controller/application.cpp | 2 +- src/controller/application.hpp | 2 +- src/controller/application.mm | 2 +- src/controller/certandpininfo.hpp | 2 +- src/controller/command-handlers/authenticate.cpp | 2 +- src/controller/command-handlers/authenticate.hpp | 2 +- src/controller/command-handlers/certificatereader.cpp | 2 +- src/controller/command-handlers/certificatereader.hpp | 2 +- src/controller/command-handlers/getcertificate.cpp | 2 +- src/controller/command-handlers/getcertificate.hpp | 2 +- src/controller/command-handlers/sign.cpp | 2 +- src/controller/command-handlers/sign.hpp | 2 +- src/controller/command-handlers/signauthutils.cpp | 2 +- src/controller/command-handlers/signauthutils.hpp | 2 +- src/controller/commandhandler.hpp | 2 +- src/controller/commands.cpp | 2 +- src/controller/commands.hpp | 2 +- src/controller/controller.cpp | 2 +- src/controller/controller.hpp | 2 +- src/controller/inputoutputmode.cpp | 2 +- src/controller/inputoutputmode.hpp | 2 +- src/controller/logging.cpp | 2 +- src/controller/logging.hpp | 2 +- src/controller/qeid.hpp | 2 +- src/controller/retriableerror.cpp | 2 +- src/controller/retriableerror.hpp | 2 +- src/controller/threads/cardeventmonitorthread.hpp | 2 +- src/controller/threads/commandhandlerconfirmthread.hpp | 2 +- src/controller/threads/commandhandlerrunthread.hpp | 2 +- src/controller/threads/controllerchildthread.hpp | 2 +- src/controller/threads/waitforcardthread.hpp | 2 +- src/controller/ui.hpp | 2 +- src/controller/utils/utils.hpp | 2 +- src/controller/writeresponse.cpp | 2 +- src/controller/writeresponse.hpp | 2 +- src/mac/js | 2 +- src/mac/main.mm | 2 +- src/mac/safari-extension.mm | 2 +- src/mac/shared.hpp | 2 +- src/ui/certificatewidget.cpp | 2 +- src/ui/certificatewidget.hpp | 2 +- src/ui/punycode.hpp | 2 +- src/ui/ui.cpp | 2 +- src/ui/webeiddialog.cpp | 2 +- src/ui/webeiddialog.hpp | 2 +- tests/mock-ui/mock-ui.cpp | 2 +- tests/mock-ui/mock-ui.hpp | 2 +- tests/tests/changecertificatevaliduntil.hpp | 2 +- tests/tests/getcommandhandler-mock.cpp | 2 +- tests/tests/getcommandhandler-mock.hpp | 2 +- tests/tests/main.cpp | 2 +- 63 files changed, 78 insertions(+), 74 deletions(-) diff --git a/.github/workflows/cmake-linux-codeql.yml b/.github/workflows/cmake-linux-codeql.yml index 9ad0e645..72b3ec8f 100644 --- a/.github/workflows/cmake-linux-codeql.yml +++ b/.github/workflows/cmake-linux-codeql.yml @@ -16,7 +16,7 @@ jobs: - name: Install dependencies run: sudo apt update -qq && sudo apt install --no-install-recommends -y cmake libpcsclite-dev libgtest-dev libgl-dev libqt6svg6-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive diff --git a/.github/workflows/cmake-linux-coverity.yml b/.github/workflows/cmake-linux-coverity.yml index 3c72bb95..e4a2ddfb 100644 --- a/.github/workflows/cmake-linux-coverity.yml +++ b/.github/workflows/cmake-linux-coverity.yml @@ -11,6 +11,7 @@ env: BUILD_TYPE: RelWithDebInfo TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} PROJECTNAME: web-eid/web-eid-app + CMAKE_BUILD_PARALLEL_LEVEL: 3 jobs: coverity: @@ -22,7 +23,7 @@ jobs: - name: Install dependencies run: sudo apt update -qq && sudo apt install --no-install-recommends -y cmake libpcsclite-dev libgtest-dev libgl-dev libqt6svg6-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive diff --git a/.github/workflows/cmake-linux-fedora.yml b/.github/workflows/cmake-linux-fedora.yml index 911a4d5c..1ac7374d 100644 --- a/.github/workflows/cmake-linux-fedora.yml +++ b/.github/workflows/cmake-linux-fedora.yml @@ -6,17 +6,18 @@ env: BUILD_TYPE: RelWithDebInfo BUILD_NUMBER: ${{github.run_number}} QT_QPA_PLATFORM: offscreen + CMAKE_BUILD_PARALLEL_LEVEL: 3 jobs: build: runs-on: ubuntu-latest - container: 'fedora:36' + container: 'fedora:39' steps: - name: Install Deps - run: dnf install -y git gcc-c++ cmake rpm-build openssl-devel pcsc-lite-devel qt5-qtsvg-devel qt5-linguist gtest-devel + run: dnf install -y git gcc-c++ cmake rpm-build openssl-devel pcsc-lite-devel qt6-qtsvg-devel qt6-qttools-devel gtest-devel - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive @@ -26,7 +27,7 @@ jobs: - name: Build run: cmake --build build --config $BUILD_TYPE --target package - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: web-eid-app-fedora-build-${{github.run_number}} path: build/*rpm diff --git a/.github/workflows/cmake-linux-ubuntu.yml b/.github/workflows/cmake-linux-ubuntu.yml index 4b305de0..294cb043 100644 --- a/.github/workflows/cmake-linux-ubuntu.yml +++ b/.github/workflows/cmake-linux-ubuntu.yml @@ -9,6 +9,7 @@ env: DEBIAN_FRONTEND: noninteractive DEBFULLNAME: GitHub build DEBEMAIL: github-action@github + CMAKE_BUILD_PARALLEL_LEVEL: 3 jobs: build: @@ -32,7 +33,7 @@ jobs: if: matrix.container != 'ubuntu:20.04' run: apt update -qq && apt install --no-install-recommends -y git lsb-release fakeroot build-essential devscripts debhelper pkg-config cmake libpcsclite-dev libssl-dev libgtest-dev libgl-dev libqt6svg6-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools libqt6core5compat6-dev - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive @@ -45,7 +46,7 @@ jobs: # Debian creates artifacts outside of project dir, copy them back to make them available in the build artifacts cp -r ../web-eid*.* build/src/app - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: web-eid-app-ubuntu-build-${{matrix.name}}-${{github.run_number}} path: build/src/app/*.*deb diff --git a/.github/workflows/cmake-macos.yml b/.github/workflows/cmake-macos.yml index b2018b8d..fc438a51 100644 --- a/.github/workflows/cmake-macos.yml +++ b/.github/workflows/cmake-macos.yml @@ -9,8 +9,8 @@ env: OPENSSL_ROOT_DIR: ${{ github.workspace }}/openssl-binary GTest_ROOT: ${{ github.workspace }}/gtest-binary QT_QPA_PLATFORM: offscreen - MAKEFLAGS: -j3 - MACOSX_DEPLOYMENT_TARGET: 10.16 + CMAKE_BUILD_PARALLEL_LEVEL: 3 + MACOSX_DEPLOYMENT_TARGET: 11.0 jobs: build: @@ -23,7 +23,7 @@ jobs: submodules: recursive - name: Cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache with: path: | @@ -60,7 +60,7 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v3 with: - version: 6.5.3 + version: 6.6.1 arch: clang_64 - name: Configure @@ -76,7 +76,7 @@ jobs: # run: ctest -V -C ${BUILD_TYPE} --test-dir ${BUILD_DIR} - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: web-eid-app-macos-build-${{github.run_number}} path: | diff --git a/.github/workflows/cmake-windows.yml b/.github/workflows/cmake-windows.yml index 18e6251a..ff9ff463 100644 --- a/.github/workflows/cmake-windows.yml +++ b/.github/workflows/cmake-windows.yml @@ -5,6 +5,7 @@ on: [push, pull_request] env: BUILD_TYPE: RelWithDebInfo BUILD_NUMBER: ${{github.run_number}} + CMAKE_BUILD_PARALLEL_LEVEL: 3 jobs: build: @@ -12,7 +13,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive @@ -21,12 +22,12 @@ jobs: with: vcpkgArguments: gtest openssl vcpkgTriplet: x64-windows - vcpkgGitCommitId: 9b9c2758ece1d8ac0de90589730bb5ccf45c0874 + vcpkgGitCommitId: 18b028fe785e707265fa0e35590b7537ae1d12ea - name: Install Qt uses: jurplel/install-qt-action@v3 with: - version: 6.5.2 + version: 6.6.1 arch: win64_msvc2019_64 - name: Setup MS Visual C++ dev env @@ -50,7 +51,7 @@ jobs: run: ctest -V -C ${env:BUILD_TYPE} --test-dir build - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: web-eid-app-windows-build-${{github.run_number}} path: | diff --git a/CMakeLists.txt b/CMakeLists.txt index 6be3a5c5..4f98005c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ elseif($ENV{CI_PIPELINE_IID}) else() set(BUILD_NUMBER 0) endif() -project(web-eid VERSION 2.5.0.${BUILD_NUMBER}) +project(web-eid VERSION 2.6.0.${BUILD_NUMBER}) set(MACOSX_BUNDLE_SHORT_VERSION_STRING "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") set(MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION_TWEAK}) diff --git a/LICENSE b/LICENSE index 326ac324..03b6ac6d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2023 Estonian Information System Authority +Copyright (c) 2020-2024 Estonian Information System Authority Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/debian/copyright b/debian/copyright index 95b1b453..070450d1 100644 --- a/debian/copyright +++ b/debian/copyright @@ -4,7 +4,7 @@ Upstream-Contact: info@ria.ee Source: https://github.com/web-eid/web-eid-app Files: * -Copyright: 2019-2023 Estonian Information System Authority +Copyright: 2019-2024 Estonian Information System Authority License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/app/getcommandhandler.cpp b/src/app/getcommandhandler.cpp index 7a121dc7..d282a602 100644 --- a/src/app/getcommandhandler.cpp +++ b/src/app/getcommandhandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/app/main.cpp b/src/app/main.cpp index dd36fb13..cb48e211 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/app/web-eid.rc b/src/app/web-eid.rc index a3bad629..69d527d4 100644 --- a/src/app/web-eid.rc +++ b/src/app/web-eid.rc @@ -24,7 +24,7 @@ BEGIN VALUE "FileDescription", "Web eID app" VALUE "FileVersion", VER_STR(PROJECT_VERSION_MAJOR.PROJECT_VERSION_MINOR.PROJECT_VERSION_PATCH+PROJECT_VERSION_TWEAK) VALUE "InternalName", "web-eid" - VALUE "LegalCopyright", "Copyright (C) 2020-2023 Estonian Information System Authority" + VALUE "LegalCopyright", "Copyright (C) 2020-2024 Estonian Information System Authority" VALUE "OriginalFilename", "web-eid.exe" VALUE "ProductName", "Web eID app" VALUE "ProductVersion", VER_STR(PROJECT_VERSION_MAJOR.PROJECT_VERSION_MINOR.PROJECT_VERSION_PATCH+PROJECT_VERSION_TWEAK) diff --git a/src/controller/application.cpp b/src/controller/application.cpp index c8a56f37..ade4fac3 100644 --- a/src/controller/application.cpp +++ b/src/controller/application.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2023 Estonian Information System Authority + * Copyright (c) 2021-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/application.hpp b/src/controller/application.hpp index 2e05f737..f2b92f17 100644 --- a/src/controller/application.hpp +++ b/src/controller/application.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2023 Estonian Information System Authority + * Copyright (c) 2021-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/application.mm b/src/controller/application.mm index eb9c2478..4f66d1a3 100644 --- a/src/controller/application.mm +++ b/src/controller/application.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022-2023 The Web eID Project + * Copyright (c) 2022-2024 The Web eID Project * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/certandpininfo.hpp b/src/controller/certandpininfo.hpp index ad0a8831..27aa67d1 100644 --- a/src/controller/certandpininfo.hpp +++ b/src/controller/certandpininfo.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/command-handlers/authenticate.cpp b/src/controller/command-handlers/authenticate.cpp index e87787bd..51b39328 100644 --- a/src/controller/command-handlers/authenticate.cpp +++ b/src/controller/command-handlers/authenticate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/command-handlers/authenticate.hpp b/src/controller/command-handlers/authenticate.hpp index 163dd33c..2034198c 100644 --- a/src/controller/command-handlers/authenticate.hpp +++ b/src/controller/command-handlers/authenticate.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/command-handlers/certificatereader.cpp b/src/controller/command-handlers/certificatereader.cpp index 3ef1df10..c04c5cd8 100644 --- a/src/controller/command-handlers/certificatereader.cpp +++ b/src/controller/command-handlers/certificatereader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/command-handlers/certificatereader.hpp b/src/controller/command-handlers/certificatereader.hpp index 03835e52..8d006c8c 100644 --- a/src/controller/command-handlers/certificatereader.hpp +++ b/src/controller/command-handlers/certificatereader.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/command-handlers/getcertificate.cpp b/src/controller/command-handlers/getcertificate.cpp index 690b5d94..f51a168a 100644 --- a/src/controller/command-handlers/getcertificate.cpp +++ b/src/controller/command-handlers/getcertificate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/command-handlers/getcertificate.hpp b/src/controller/command-handlers/getcertificate.hpp index e919dbe6..440fb279 100644 --- a/src/controller/command-handlers/getcertificate.hpp +++ b/src/controller/command-handlers/getcertificate.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/command-handlers/sign.cpp b/src/controller/command-handlers/sign.cpp index 42277b2d..9c66c747 100644 --- a/src/controller/command-handlers/sign.cpp +++ b/src/controller/command-handlers/sign.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/command-handlers/sign.hpp b/src/controller/command-handlers/sign.hpp index de8e63bd..08211538 100644 --- a/src/controller/command-handlers/sign.hpp +++ b/src/controller/command-handlers/sign.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/command-handlers/signauthutils.cpp b/src/controller/command-handlers/signauthutils.cpp index b2ec6bcf..89d2429d 100644 --- a/src/controller/command-handlers/signauthutils.cpp +++ b/src/controller/command-handlers/signauthutils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/command-handlers/signauthutils.hpp b/src/controller/command-handlers/signauthutils.hpp index 2e808bc2..6019e785 100644 --- a/src/controller/command-handlers/signauthutils.hpp +++ b/src/controller/command-handlers/signauthutils.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/commandhandler.hpp b/src/controller/commandhandler.hpp index 765c6084..b1b04608 100644 --- a/src/controller/commandhandler.hpp +++ b/src/controller/commandhandler.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/commands.cpp b/src/controller/commands.cpp index 953ebb37..d484bbbc 100644 --- a/src/controller/commands.cpp +++ b/src/controller/commands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/commands.hpp b/src/controller/commands.hpp index 7b5c2939..b46ad429 100644 --- a/src/controller/commands.hpp +++ b/src/controller/commands.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/controller.cpp b/src/controller/controller.cpp index e82dfcac..342010fd 100644 --- a/src/controller/controller.cpp +++ b/src/controller/controller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/controller.hpp b/src/controller/controller.hpp index ae973f7c..e4af4828 100644 --- a/src/controller/controller.hpp +++ b/src/controller/controller.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/inputoutputmode.cpp b/src/controller/inputoutputmode.cpp index aa44e469..2d5480b5 100644 --- a/src/controller/inputoutputmode.cpp +++ b/src/controller/inputoutputmode.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/inputoutputmode.hpp b/src/controller/inputoutputmode.hpp index 4399f72b..1654469a 100644 --- a/src/controller/inputoutputmode.hpp +++ b/src/controller/inputoutputmode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/logging.cpp b/src/controller/logging.cpp index 4b45cee8..fb18d3e7 100644 --- a/src/controller/logging.cpp +++ b/src/controller/logging.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/logging.hpp b/src/controller/logging.hpp index ab251ea8..60819862 100644 --- a/src/controller/logging.hpp +++ b/src/controller/logging.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/qeid.hpp b/src/controller/qeid.hpp index 94072640..06c22093 100644 --- a/src/controller/qeid.hpp +++ b/src/controller/qeid.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/retriableerror.cpp b/src/controller/retriableerror.cpp index 6354ae8c..9b6c083f 100644 --- a/src/controller/retriableerror.cpp +++ b/src/controller/retriableerror.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/retriableerror.hpp b/src/controller/retriableerror.hpp index f406bc9f..161173b0 100644 --- a/src/controller/retriableerror.hpp +++ b/src/controller/retriableerror.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/threads/cardeventmonitorthread.hpp b/src/controller/threads/cardeventmonitorthread.hpp index 2d8e12c5..f1087030 100644 --- a/src/controller/threads/cardeventmonitorthread.hpp +++ b/src/controller/threads/cardeventmonitorthread.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2023 Estonian Information System Authority + * Copyright (c) 2021-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/threads/commandhandlerconfirmthread.hpp b/src/controller/threads/commandhandlerconfirmthread.hpp index 49a1c405..861bd3da 100644 --- a/src/controller/threads/commandhandlerconfirmthread.hpp +++ b/src/controller/threads/commandhandlerconfirmthread.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/threads/commandhandlerrunthread.hpp b/src/controller/threads/commandhandlerrunthread.hpp index 96545753..8deeccd3 100644 --- a/src/controller/threads/commandhandlerrunthread.hpp +++ b/src/controller/threads/commandhandlerrunthread.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/threads/controllerchildthread.hpp b/src/controller/threads/controllerchildthread.hpp index 5d0029ee..c7e2a7fb 100644 --- a/src/controller/threads/controllerchildthread.hpp +++ b/src/controller/threads/controllerchildthread.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/threads/waitforcardthread.hpp b/src/controller/threads/waitforcardthread.hpp index a00205b9..81458903 100644 --- a/src/controller/threads/waitforcardthread.hpp +++ b/src/controller/threads/waitforcardthread.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/ui.hpp b/src/controller/ui.hpp index cf3a6791..e90bb46f 100644 --- a/src/controller/ui.hpp +++ b/src/controller/ui.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/utils/utils.hpp b/src/controller/utils/utils.hpp index da551c3c..04c399b2 100644 --- a/src/controller/utils/utils.hpp +++ b/src/controller/utils/utils.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/writeresponse.cpp b/src/controller/writeresponse.cpp index 631bd8d7..270f5e57 100644 --- a/src/controller/writeresponse.cpp +++ b/src/controller/writeresponse.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/controller/writeresponse.hpp b/src/controller/writeresponse.hpp index 579c20a7..7e16d31c 100644 --- a/src/controller/writeresponse.hpp +++ b/src/controller/writeresponse.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/mac/js b/src/mac/js index 351a0cb4..2b1a9cea 160000 --- a/src/mac/js +++ b/src/mac/js @@ -1 +1 @@ -Subproject commit 351a0cb491bd8ef9506ac85a6fe4742fb45b3fb1 +Subproject commit 2b1a9cea6e4d12f1f586effc444d5c443f00a94b diff --git a/src/mac/main.mm b/src/mac/main.mm index 0e801e4a..ba4c359c 100644 --- a/src/mac/main.mm +++ b/src/mac/main.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/mac/safari-extension.mm b/src/mac/safari-extension.mm index 149b78c6..01a5c054 100644 --- a/src/mac/safari-extension.mm +++ b/src/mac/safari-extension.mm @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/mac/shared.hpp b/src/mac/shared.hpp index a3a82cd2..f0c5bca8 100644 --- a/src/mac/shared.hpp +++ b/src/mac/shared.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/ui/certificatewidget.cpp b/src/ui/certificatewidget.cpp index 0e07066c..c3bb0956 100644 --- a/src/ui/certificatewidget.cpp +++ b/src/ui/certificatewidget.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2023 Estonian Information System Authority + * Copyright (c) 2021-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/ui/certificatewidget.hpp b/src/ui/certificatewidget.hpp index 7c031593..44c8e4a1 100644 --- a/src/ui/certificatewidget.hpp +++ b/src/ui/certificatewidget.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2021-2023 Estonian Information System Authority + * Copyright (c) 2021-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/ui/punycode.hpp b/src/ui/punycode.hpp index 091a40e4..053ea04e 100644 --- a/src/ui/punycode.hpp +++ b/src/ui/punycode.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/ui/ui.cpp b/src/ui/ui.cpp index c553be71..b8c465d0 100644 --- a/src/ui/ui.cpp +++ b/src/ui/ui.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/ui/webeiddialog.cpp b/src/ui/webeiddialog.cpp index f41f010f..3c1fc6c1 100644 --- a/src/ui/webeiddialog.cpp +++ b/src/ui/webeiddialog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/src/ui/webeiddialog.hpp b/src/ui/webeiddialog.hpp index 15a2703c..e69d44fe 100644 --- a/src/ui/webeiddialog.hpp +++ b/src/ui/webeiddialog.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mock-ui/mock-ui.cpp b/tests/mock-ui/mock-ui.cpp index 1970c8aa..aaf1bc56 100644 --- a/tests/mock-ui/mock-ui.cpp +++ b/tests/mock-ui/mock-ui.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/mock-ui/mock-ui.hpp b/tests/mock-ui/mock-ui.hpp index 7db146e4..a4078c01 100644 --- a/tests/mock-ui/mock-ui.hpp +++ b/tests/mock-ui/mock-ui.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/tests/changecertificatevaliduntil.hpp b/tests/tests/changecertificatevaliduntil.hpp index 734d5fa5..b6619dea 100644 --- a/tests/tests/changecertificatevaliduntil.hpp +++ b/tests/tests/changecertificatevaliduntil.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/tests/getcommandhandler-mock.cpp b/tests/tests/getcommandhandler-mock.cpp index cebdbdc5..4cb42705 100644 --- a/tests/tests/getcommandhandler-mock.cpp +++ b/tests/tests/getcommandhandler-mock.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/tests/getcommandhandler-mock.hpp b/tests/tests/getcommandhandler-mock.hpp index a5a6bc76..40e203be 100644 --- a/tests/tests/getcommandhandler-mock.hpp +++ b/tests/tests/getcommandhandler-mock.hpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal diff --git a/tests/tests/main.cpp b/tests/tests/main.cpp index 03c3698e..281d6a51 100644 --- a/tests/tests/main.cpp +++ b/tests/tests/main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2020-2023 Estonian Information System Authority + * Copyright (c) 2020-2024 Estonian Information System Authority * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal