From 1cdd600b07ceace5f1d3795b9543135a1f91153a Mon Sep 17 00:00:00 2001 From: Tristan Youngs Date: Fri, 17 Jan 2025 14:29:27 +0000 Subject: [PATCH] Change copyright year. (#336) --- backend/src/jv2backend/__init__.py | 2 +- backend/src/jv2backend/__main__.py | 2 +- backend/src/jv2backend/app.py | 2 +- backend/src/jv2backend/classes/collection.py | 2 +- backend/src/jv2backend/classes/integerRange.py | 2 +- backend/src/jv2backend/classes/journal.py | 2 +- backend/src/jv2backend/classes/requestData.py | 2 +- backend/src/jv2backend/main/generator.py | 2 +- backend/src/jv2backend/main/library.py | 2 +- backend/src/jv2backend/main/nexus.py | 2 +- backend/src/jv2backend/main/selector.py | 2 +- backend/src/jv2backend/main/userCache.py | 2 +- backend/src/jv2backend/routes/acquisition.py | 2 +- backend/src/jv2backend/routes/generate.py | 2 +- backend/src/jv2backend/routes/journal.py | 2 +- backend/src/jv2backend/routes/nexus.py | 2 +- backend/src/jv2backend/routes/server.py | 2 +- backend/src/jv2backend/tests/test_journal.py | 2 +- backend/src/jv2backend/tests/test_journalCollection.py | 2 +- backend/src/jv2backend/tests/test_networkJournals.py | 2 +- backend/src/jv2backend/tests/test_nexus.py | 2 +- backend/src/jv2backend/tests/test_requestData.py | 2 +- backend/src/jv2backend/tests/test_runRange.py | 2 +- backend/src/jv2backend/tests/test_utils.py | 2 +- backend/src/jv2backend/utils.py | 2 +- frontend/args.cpp | 2 +- frontend/args.h | 2 +- frontend/backend.cpp | 2 +- frontend/backend.h | 2 +- frontend/chartView.cpp | 2 +- frontend/chartView.h | 2 +- frontend/data.cpp | 2 +- frontend/errorHandling.cpp | 2 +- frontend/export.cpp | 2 +- frontend/filtering.cpp | 2 +- frontend/finding.cpp | 2 +- frontend/generation.cpp | 2 +- frontend/genericTreeModel.cpp | 2 +- frontend/genericTreeModel.h | 2 +- frontend/graphWidget.cpp | 2 +- frontend/graphWidget.h | 2 +- frontend/httpRequestWorker.cpp | 2 +- frontend/httpRequestWorker.h | 2 +- frontend/instrument.cpp | 2 +- frontend/instrument.h | 2 +- frontend/instrumentModel.cpp | 2 +- frontend/instrumentModel.h | 2 +- frontend/instruments.cpp | 2 +- frontend/journal.cpp | 2 +- frontend/journal.h | 2 +- frontend/journalModel.cpp | 2 +- frontend/journalModel.h | 2 +- frontend/journalSource.cpp | 2 +- frontend/journalSource.h | 2 +- frontend/journalSourceFilterProxy.cpp | 2 +- frontend/journalSourceFilterProxy.h | 2 +- frontend/journalSources.cpp | 2 +- frontend/journalSourcesDialog.cpp | 2 +- frontend/journalSourcesDialog.h | 2 +- frontend/lock.cpp | 2 +- frontend/lock.h | 2 +- frontend/main.cpp | 2 +- frontend/mainWindow.cpp | 2 +- frontend/mainWindow.h | 2 +- frontend/nexusInteraction.cpp | 2 +- frontend/optionalRef.h | 2 +- frontend/runDataFilterProxy.cpp | 2 +- frontend/runDataFilterProxy.h | 2 +- frontend/runDataModel.cpp | 2 +- frontend/runDataModel.h | 2 +- frontend/seLogChooserDialog.cpp | 2 +- frontend/seLogChooserDialog.h | 2 +- frontend/searchDialog.cpp | 2 +- frontend/searchDialog.h | 2 +- frontend/searching.cpp | 2 +- frontend/settings.cpp | 2 +- frontend/version.h | 2 +- frontend/visualisation.cpp | 2 +- 78 files changed, 78 insertions(+), 78 deletions(-) diff --git a/backend/src/jv2backend/__init__.py b/backend/src/jv2backend/__init__.py index 5c0cac10..322e7a21 100644 --- a/backend/src/jv2backend/__init__.py +++ b/backend/src/jv2backend/__init__.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors # Don't assume that the command which called the package is the main package # This is needed for nix diff --git a/backend/src/jv2backend/__main__.py b/backend/src/jv2backend/__main__.py index 440203cc..e212fc02 100644 --- a/backend/src/jv2backend/__main__.py +++ b/backend/src/jv2backend/__main__.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors # Don't assume that the command which called the package is the main package # This is needed for nix diff --git a/backend/src/jv2backend/app.py b/backend/src/jv2backend/app.py index 26f1eed6..59787774 100644 --- a/backend/src/jv2backend/app.py +++ b/backend/src/jv2backend/app.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors """Define the Flask instance and backend API routes""" import logging diff --git a/backend/src/jv2backend/classes/collection.py b/backend/src/jv2backend/classes/collection.py index 2c80b3a2..6fe2241f 100644 --- a/backend/src/jv2backend/classes/collection.py +++ b/backend/src/jv2backend/classes/collection.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors from __future__ import annotations import typing diff --git a/backend/src/jv2backend/classes/integerRange.py b/backend/src/jv2backend/classes/integerRange.py index b7e4e191..9c3d3929 100644 --- a/backend/src/jv2backend/classes/integerRange.py +++ b/backend/src/jv2backend/classes/integerRange.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors class IntegerRange: """Defines an inclusive integer range""" diff --git a/backend/src/jv2backend/classes/journal.py b/backend/src/jv2backend/classes/journal.py index bf253367..6116b925 100644 --- a/backend/src/jv2backend/classes/journal.py +++ b/backend/src/jv2backend/classes/journal.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors from __future__ import annotations import typing diff --git a/backend/src/jv2backend/classes/requestData.py b/backend/src/jv2backend/classes/requestData.py index 871849cd..edd6bd91 100644 --- a/backend/src/jv2backend/classes/requestData.py +++ b/backend/src/jv2backend/classes/requestData.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors import typing from jv2backend.utils import url_join diff --git a/backend/src/jv2backend/main/generator.py b/backend/src/jv2backend/main/generator.py index fe7b2a41..b41d3cdb 100644 --- a/backend/src/jv2backend/main/generator.py +++ b/backend/src/jv2backend/main/generator.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors import typing import logging diff --git a/backend/src/jv2backend/main/library.py b/backend/src/jv2backend/main/library.py index 62c4130c..6cdc529f 100644 --- a/backend/src/jv2backend/main/library.py +++ b/backend/src/jv2backend/main/library.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors from __future__ import annotations diff --git a/backend/src/jv2backend/main/nexus.py b/backend/src/jv2backend/main/nexus.py index 6aa05bac..41fbadac 100644 --- a/backend/src/jv2backend/main/nexus.py +++ b/backend/src/jv2backend/main/nexus.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors """A collection of function to return data for a NeXus file""" from pathlib import Path, PurePath diff --git a/backend/src/jv2backend/main/selector.py b/backend/src/jv2backend/main/selector.py index 57d7f91f..7163f113 100644 --- a/backend/src/jv2backend/main/selector.py +++ b/backend/src/jv2backend/main/selector.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors import datetime from jv2backend.classes.integerRange import IntegerRange diff --git a/backend/src/jv2backend/main/userCache.py b/backend/src/jv2backend/main/userCache.py index 71b269a5..e61dbc38 100644 --- a/backend/src/jv2backend/main/userCache.py +++ b/backend/src/jv2backend/main/userCache.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors from platformdirs import user_data_dir from pathlib import Path diff --git a/backend/src/jv2backend/routes/acquisition.py b/backend/src/jv2backend/routes/acquisition.py index 8eb4cd98..aee02584 100644 --- a/backend/src/jv2backend/routes/acquisition.py +++ b/backend/src/jv2backend/routes/acquisition.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors import logging from flask import Flask, jsonify, request, make_response diff --git a/backend/src/jv2backend/routes/generate.py b/backend/src/jv2backend/routes/generate.py index 4694e33e..8a975393 100644 --- a/backend/src/jv2backend/routes/generate.py +++ b/backend/src/jv2backend/routes/generate.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors import logging from flask import Flask, jsonify, request, make_response diff --git a/backend/src/jv2backend/routes/journal.py b/backend/src/jv2backend/routes/journal.py index 3247647f..d3652394 100644 --- a/backend/src/jv2backend/routes/journal.py +++ b/backend/src/jv2backend/routes/journal.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors """Defines the Flask endpoints that only access journal information""" import logging diff --git a/backend/src/jv2backend/routes/nexus.py b/backend/src/jv2backend/routes/nexus.py index 5659738d..ad636541 100644 --- a/backend/src/jv2backend/routes/nexus.py +++ b/backend/src/jv2backend/routes/nexus.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors """Defines the Flask endpoints that only access NeXuS information""" import logging diff --git a/backend/src/jv2backend/routes/server.py b/backend/src/jv2backend/routes/server.py index 61d09446..b16eec2a 100644 --- a/backend/src/jv2backend/routes/server.py +++ b/backend/src/jv2backend/routes/server.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors """Defines the Flask endpoints that are server-related""" from flask import Flask, jsonify diff --git a/backend/src/jv2backend/tests/test_journal.py b/backend/src/jv2backend/tests/test_journal.py index 0ff00699..7bab00bc 100644 --- a/backend/src/jv2backend/tests/test_journal.py +++ b/backend/src/jv2backend/tests/test_journal.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors from jv2backend.classes.journal import Journal, SourceType from jv2backend.utils import url_join diff --git a/backend/src/jv2backend/tests/test_journalCollection.py b/backend/src/jv2backend/tests/test_journalCollection.py index d3ac5bdb..1f939ce5 100644 --- a/backend/src/jv2backend/tests/test_journalCollection.py +++ b/backend/src/jv2backend/tests/test_journalCollection.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors from jv2backend.classes.collection import JournalCollection from jv2backend.classes.journal import Journal, SourceType diff --git a/backend/src/jv2backend/tests/test_networkJournals.py b/backend/src/jv2backend/tests/test_networkJournals.py index 9992478d..eba63c39 100644 --- a/backend/src/jv2backend/tests/test_networkJournals.py +++ b/backend/src/jv2backend/tests/test_networkJournals.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors import pytest import logging diff --git a/backend/src/jv2backend/tests/test_nexus.py b/backend/src/jv2backend/tests/test_nexus.py index b8c36d73..9546ce22 100644 --- a/backend/src/jv2backend/tests/test_nexus.py +++ b/backend/src/jv2backend/tests/test_nexus.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors from pathlib import Path import h5py as h5 diff --git a/backend/src/jv2backend/tests/test_requestData.py b/backend/src/jv2backend/tests/test_requestData.py index a6cacd12..e745e80d 100644 --- a/backend/src/jv2backend/tests/test_requestData.py +++ b/backend/src/jv2backend/tests/test_requestData.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors from jv2backend.classes.requestData import RequestData, InvalidRequest from jv2backend.main.library import JournalLibrary diff --git a/backend/src/jv2backend/tests/test_runRange.py b/backend/src/jv2backend/tests/test_runRange.py index f7de5924..8ff40269 100644 --- a/backend/src/jv2backend/tests/test_runRange.py +++ b/backend/src/jv2backend/tests/test_runRange.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors from jv2backend.classes.integerRange import IntegerRange diff --git a/backend/src/jv2backend/tests/test_utils.py b/backend/src/jv2backend/tests/test_utils.py index 32e75e0b..33a48be4 100644 --- a/backend/src/jv2backend/tests/test_utils.py +++ b/backend/src/jv2backend/tests/test_utils.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors import jv2backend.utils diff --git a/backend/src/jv2backend/utils.py b/backend/src/jv2backend/utils.py index d4660d41..2b3939ec 100644 --- a/backend/src/jv2backend/utils.py +++ b/backend/src/jv2backend/utils.py @@ -1,5 +1,5 @@ # SPDX-License-Identifier: GPL-3.0-or-later -# Copyright (c) 2024 Team JournalViewer and contributors +# Copyright (c) 2025 Team JournalViewer and contributors from typing import Any, Sequence from functools import reduce diff --git a/frontend/args.cpp b/frontend/args.cpp index 60f88b35..b7621703 100644 --- a/frontend/args.cpp +++ b/frontend/args.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "args.h" diff --git a/frontend/args.h b/frontend/args.h index face0808..a959c465 100644 --- a/frontend/args.h +++ b/frontend/args.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/backend.cpp b/frontend/backend.cpp index ea5be862..1b11fe86 100644 --- a/frontend/backend.cpp +++ b/frontend/backend.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "backend.h" #include "args.h" diff --git a/frontend/backend.h b/frontend/backend.h index e9cad671..a1af2293 100644 --- a/frontend/backend.h +++ b/frontend/backend.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/chartView.cpp b/frontend/chartView.cpp index b0411c62..37faac8e 100644 --- a/frontend/chartView.cpp +++ b/frontend/chartView.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "chartView.h" #include "httpRequestWorker.h" diff --git a/frontend/chartView.h b/frontend/chartView.h index 85f9a786..c7c69d56 100644 --- a/frontend/chartView.h +++ b/frontend/chartView.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/data.cpp b/frontend/data.cpp index d4562175..1ee29980 100644 --- a/frontend/data.cpp +++ b/frontend/data.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "mainWindow.h" #include diff --git a/frontend/errorHandling.cpp b/frontend/errorHandling.cpp index 8718bf20..2458746a 100644 --- a/frontend/errorHandling.cpp +++ b/frontend/errorHandling.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "mainWindow.h" #include diff --git a/frontend/export.cpp b/frontend/export.cpp index fd11141d..41e03b3c 100644 --- a/frontend/export.cpp +++ b/frontend/export.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "mainWindow.h" #include diff --git a/frontend/filtering.cpp b/frontend/filtering.cpp index 2b133719..fbea5814 100644 --- a/frontend/filtering.cpp +++ b/frontend/filtering.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "mainWindow.h" #include diff --git a/frontend/finding.cpp b/frontend/finding.cpp index 6f44d68b..1f651a53 100644 --- a/frontend/finding.cpp +++ b/frontend/finding.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "mainWindow.h" #include diff --git a/frontend/generation.cpp b/frontend/generation.cpp index 008a0c5c..db607d17 100644 --- a/frontend/generation.cpp +++ b/frontend/generation.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "mainWindow.h" #include diff --git a/frontend/genericTreeModel.cpp b/frontend/genericTreeModel.cpp index 51c200ea..54374ffe 100644 --- a/frontend/genericTreeModel.cpp +++ b/frontend/genericTreeModel.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "genericTreeModel.h" diff --git a/frontend/genericTreeModel.h b/frontend/genericTreeModel.h index 03fd87a9..0a10e1f6 100644 --- a/frontend/genericTreeModel.h +++ b/frontend/genericTreeModel.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/graphWidget.cpp b/frontend/graphWidget.cpp index fa6fdbc2..0bf347c8 100644 --- a/frontend/graphWidget.cpp +++ b/frontend/graphWidget.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "graphWidget.h" #include "chartView.h" diff --git a/frontend/graphWidget.h b/frontend/graphWidget.h index ceacab51..641dd4fc 100644 --- a/frontend/graphWidget.h +++ b/frontend/graphWidget.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/httpRequestWorker.cpp b/frontend/httpRequestWorker.cpp index e76e9764..af8788ed 100644 --- a/frontend/httpRequestWorker.cpp +++ b/frontend/httpRequestWorker.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "httpRequestWorker.h" #include diff --git a/frontend/httpRequestWorker.h b/frontend/httpRequestWorker.h index 78d75b3d..a5d557cb 100644 --- a/frontend/httpRequestWorker.h +++ b/frontend/httpRequestWorker.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/instrument.cpp b/frontend/instrument.cpp index 361e8193..11d46978 100644 --- a/frontend/instrument.cpp +++ b/frontend/instrument.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "instrument.h" #include diff --git a/frontend/instrument.h b/frontend/instrument.h index 2421da96..509273aa 100644 --- a/frontend/instrument.h +++ b/frontend/instrument.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/instrumentModel.cpp b/frontend/instrumentModel.cpp index 5fccec20..1ea10768 100644 --- a/frontend/instrumentModel.cpp +++ b/frontend/instrumentModel.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "instrumentModel.h" diff --git a/frontend/instrumentModel.h b/frontend/instrumentModel.h index 37f09d6d..e40fc056 100644 --- a/frontend/instrumentModel.h +++ b/frontend/instrumentModel.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/instruments.cpp b/frontend/instruments.cpp index 835e8ac1..59d3ed49 100644 --- a/frontend/instruments.cpp +++ b/frontend/instruments.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "mainWindow.h" #include diff --git a/frontend/journal.cpp b/frontend/journal.cpp index 55a8f8fc..e1782c6a 100644 --- a/frontend/journal.cpp +++ b/frontend/journal.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "journal.h" diff --git a/frontend/journal.h b/frontend/journal.h index ec98db5f..c8698e2e 100644 --- a/frontend/journal.h +++ b/frontend/journal.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/journalModel.cpp b/frontend/journalModel.cpp index 4a6f69dc..b89df818 100644 --- a/frontend/journalModel.cpp +++ b/frontend/journalModel.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "journalModel.h" diff --git a/frontend/journalModel.h b/frontend/journalModel.h index d0392edc..87aec533 100644 --- a/frontend/journalModel.h +++ b/frontend/journalModel.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/journalSource.cpp b/frontend/journalSource.cpp index f7928520..c8f82214 100644 --- a/frontend/journalSource.cpp +++ b/frontend/journalSource.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "journalSource.h" #include "instrument.h" diff --git a/frontend/journalSource.h b/frontend/journalSource.h index cac03694..b4e54af7 100644 --- a/frontend/journalSource.h +++ b/frontend/journalSource.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/journalSourceFilterProxy.cpp b/frontend/journalSourceFilterProxy.cpp index ef045a42..bcec3d4f 100644 --- a/frontend/journalSourceFilterProxy.cpp +++ b/frontend/journalSourceFilterProxy.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "journalSourceFilterProxy.h" #include "journalSourceModel.h" diff --git a/frontend/journalSourceFilterProxy.h b/frontend/journalSourceFilterProxy.h index 696126bd..de6eee9d 100644 --- a/frontend/journalSourceFilterProxy.h +++ b/frontend/journalSourceFilterProxy.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/journalSources.cpp b/frontend/journalSources.cpp index 6250b3b7..b177a7c5 100644 --- a/frontend/journalSources.cpp +++ b/frontend/journalSources.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "journalSourcesDialog.h" #include "mainWindow.h" diff --git a/frontend/journalSourcesDialog.cpp b/frontend/journalSourcesDialog.cpp index 01b3e006..b9850139 100644 --- a/frontend/journalSourcesDialog.cpp +++ b/frontend/journalSourcesDialog.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "journalSourcesDialog.h" #include diff --git a/frontend/journalSourcesDialog.h b/frontend/journalSourcesDialog.h index 477cd3de..2453ad33 100644 --- a/frontend/journalSourcesDialog.h +++ b/frontend/journalSourcesDialog.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/lock.cpp b/frontend/lock.cpp index 8a1441f5..84175e1b 100644 --- a/frontend/lock.cpp +++ b/frontend/lock.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "lock.h" #include diff --git a/frontend/lock.h b/frontend/lock.h index ce6abf2b..bec3272c 100644 --- a/frontend/lock.h +++ b/frontend/lock.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/main.cpp b/frontend/main.cpp index b354af52..9e4de128 100644 --- a/frontend/main.cpp +++ b/frontend/main.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "args.h" #include "mainWindow.h" diff --git a/frontend/mainWindow.cpp b/frontend/mainWindow.cpp index 83c01241..75b93b42 100644 --- a/frontend/mainWindow.cpp +++ b/frontend/mainWindow.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "mainWindow.h" #include "ui_mainWindow.h" diff --git a/frontend/mainWindow.h b/frontend/mainWindow.h index 057393cb..c335913b 100644 --- a/frontend/mainWindow.h +++ b/frontend/mainWindow.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/nexusInteraction.cpp b/frontend/nexusInteraction.cpp index 61d5bd11..1139cb14 100644 --- a/frontend/nexusInteraction.cpp +++ b/frontend/nexusInteraction.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "chartView.h" #include "graphWidget.h" diff --git a/frontend/optionalRef.h b/frontend/optionalRef.h index bd2d52a7..173001da 100644 --- a/frontend/optionalRef.h +++ b/frontend/optionalRef.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/runDataFilterProxy.cpp b/frontend/runDataFilterProxy.cpp index eeb1ea5c..477278e8 100644 --- a/frontend/runDataFilterProxy.cpp +++ b/frontend/runDataFilterProxy.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "runDataFilterProxy.h" #include "runDataModel.h" diff --git a/frontend/runDataFilterProxy.h b/frontend/runDataFilterProxy.h index 8da48a0f..0a4c29f1 100644 --- a/frontend/runDataFilterProxy.h +++ b/frontend/runDataFilterProxy.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/runDataModel.cpp b/frontend/runDataModel.cpp index 0405c6d0..8ebf05f0 100644 --- a/frontend/runDataModel.cpp +++ b/frontend/runDataModel.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "runDataModel.h" #include diff --git a/frontend/runDataModel.h b/frontend/runDataModel.h index 04008323..272b36a1 100644 --- a/frontend/runDataModel.h +++ b/frontend/runDataModel.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/seLogChooserDialog.cpp b/frontend/seLogChooserDialog.cpp index 7b8e8ff4..d1efb9b2 100644 --- a/frontend/seLogChooserDialog.cpp +++ b/frontend/seLogChooserDialog.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "seLogChooserDialog.h" diff --git a/frontend/seLogChooserDialog.h b/frontend/seLogChooserDialog.h index 3c6bd90f..284f58f7 100644 --- a/frontend/seLogChooserDialog.h +++ b/frontend/seLogChooserDialog.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/searchDialog.cpp b/frontend/searchDialog.cpp index d1e363f3..8b4804a8 100644 --- a/frontend/searchDialog.cpp +++ b/frontend/searchDialog.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "searchDialog.h" #include diff --git a/frontend/searchDialog.h b/frontend/searchDialog.h index c28422f3..b738de99 100644 --- a/frontend/searchDialog.h +++ b/frontend/searchDialog.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/searching.cpp b/frontend/searching.cpp index 051eb452..f0552141 100644 --- a/frontend/searching.cpp +++ b/frontend/searching.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "mainWindow.h" #include "searchDialog.h" diff --git a/frontend/settings.cpp b/frontend/settings.cpp index 4e0d2e22..ecea20e1 100644 --- a/frontend/settings.cpp +++ b/frontend/settings.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "args.h" #include "mainWindow.h" diff --git a/frontend/version.h b/frontend/version.h index 96826439..5c99a87b 100644 --- a/frontend/version.h +++ b/frontend/version.h @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #pragma once diff --git a/frontend/visualisation.cpp b/frontend/visualisation.cpp index 1780456e..fed40345 100644 --- a/frontend/visualisation.cpp +++ b/frontend/visualisation.cpp @@ -1,5 +1,5 @@ // SPDX-License-Identifier: GPL-3.0-or-later -// Copyright (c) 2024 Team JournalViewer and contributors +// Copyright (c) 2025 Team JournalViewer and contributors #include "chartView.h" #include "mainWindow.h"