diff --git a/.gitignore b/.gitignore index 66333853f..167ff1479 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# Copyright 2023-2024, Helmholtz-Zentrum Hereon +# Copyright 2023-2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: CC0-1.0 # local IDE metadata files diff --git a/MANIFEST.in b/MANIFEST.in index fe75a4777..a613d4971 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ -# Copyright 2021 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2021 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: CC0-1.0 # Patterns to exclude from any directory diff --git a/README.md b/README.md index 41cabb3c0..2d35bfc4c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ diff --git a/formatter.py b/formatter.py index ee483f7cf..2f839aa08 100644 --- a/formatter.py +++ b/formatter.py @@ -95,6 +95,7 @@ "pydidas.egg-info", "dist", "sphinx", + ".pytest_cache", ] _FILES_TO_SKIP = [".coverage"] diff --git a/pyproject.toml b/pyproject.toml index a154e5f18..cdcf13245 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,4 @@ -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: CC0-1.0 [build-system] diff --git a/requirements.in b/requirements.in index 4bd80e72e..1d290bd28 100644 --- a/requirements.in +++ b/requirements.in @@ -1,4 +1,4 @@ -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: CC0-1.0 pyFAI==2024.9.0 diff --git a/resources/code_examples/dev_guide_app_example.py b/resources/code_examples/dev_guide_app_example.py index 8130968a7..91e7b701e 100644 --- a/resources/code_examples/dev_guide_app_example.py +++ b/resources/code_examples/dev_guide_app_example.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -16,7 +16,7 @@ # along with Pydidas. If not, see . __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/resources/code_examples/dev_guide_multiprocessing_app_runner.py b/resources/code_examples/dev_guide_multiprocessing_app_runner.py index 7f011da31..27e7526ea 100644 --- a/resources/code_examples/dev_guide_multiprocessing_app_runner.py +++ b/resources/code_examples/dev_guide_multiprocessing_app_runner.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -16,7 +16,7 @@ # along with Pydidas. If not, see . __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/resources/code_examples/dev_guide_multiprocessing_worker_controller.py b/resources/code_examples/dev_guide_multiprocessing_worker_controller.py index 0ec15cc17..58d3dbe5b 100644 --- a/resources/code_examples/dev_guide_multiprocessing_worker_controller.py +++ b/resources/code_examples/dev_guide_multiprocessing_worker_controller.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -16,7 +16,7 @@ # along with Pydidas. If not, see . __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/__init__.py b/src/pydidas/__init__.py index 4df74e58f..fad5b14e5 100644 --- a/src/pydidas/__init__.py +++ b/src/pydidas/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -23,7 +23,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/apps/__init__.py b/src/pydidas/apps/__init__.py index df0eb0fff..516886d44 100644 --- a/src/pydidas/apps/__init__.py +++ b/src/pydidas/apps/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/apps/composite_creator_app.py b/src/pydidas/apps/composite_creator_app.py index c39a86cee..27155b9a8 100644 --- a/src/pydidas/apps/composite_creator_app.py +++ b/src/pydidas/apps/composite_creator_app.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/apps/directory_spy_app.py b/src/pydidas/apps/directory_spy_app.py index 536ec95df..e7e6c0bfa 100644 --- a/src/pydidas/apps/directory_spy_app.py +++ b/src/pydidas/apps/directory_spy_app.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/apps/execute_workflow_app.py b/src/pydidas/apps/execute_workflow_app.py index ca50c7801..3fd03d911 100644 --- a/src/pydidas/apps/execute_workflow_app.py +++ b/src/pydidas/apps/execute_workflow_app.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/apps/execute_workflow_runner.py b/src/pydidas/apps/execute_workflow_runner.py index c7bb172ab..c74cb1131 100644 --- a/src/pydidas/apps/execute_workflow_runner.py +++ b/src/pydidas/apps/execute_workflow_runner.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/apps/parsers/__init__.py b/src/pydidas/apps/parsers/__init__.py index 49f7bc538..492e1e41d 100644 --- a/src/pydidas/apps/parsers/__init__.py +++ b/src/pydidas/apps/parsers/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/apps/parsers/_composite_creator_app_parser.py b/src/pydidas/apps/parsers/_composite_creator_app_parser.py index a8d59920e..3c223e63e 100644 --- a/src/pydidas/apps/parsers/_composite_creator_app_parser.py +++ b/src/pydidas/apps/parsers/_composite_creator_app_parser.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/apps/parsers/_directory_spy_app_parser.py b/src/pydidas/apps/parsers/_directory_spy_app_parser.py index f25dea0f2..04bd80b79 100644 --- a/src/pydidas/apps/parsers/_directory_spy_app_parser.py +++ b/src/pydidas/apps/parsers/_directory_spy_app_parser.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/apps/parsers/_execute_workflow_app_parser.py b/src/pydidas/apps/parsers/_execute_workflow_app_parser.py index 45813cef7..1116774c4 100644 --- a/src/pydidas/apps/parsers/_execute_workflow_app_parser.py +++ b/src/pydidas/apps/parsers/_execute_workflow_app_parser.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/__init__.py b/src/pydidas/contexts/__init__.py index 45dda5ed3..879a75c03 100644 --- a/src/pydidas/contexts/__init__.py +++ b/src/pydidas/contexts/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/diff_exp/__init__.py b/src/pydidas/contexts/diff_exp/__init__.py index a11d84e26..797cc65d7 100644 --- a/src/pydidas/contexts/diff_exp/__init__.py +++ b/src/pydidas/contexts/diff_exp/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -23,7 +23,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/diff_exp/diff_exp.py b/src/pydidas/contexts/diff_exp/diff_exp.py index ba958d2ec..af706d647 100644 --- a/src/pydidas/contexts/diff_exp/diff_exp.py +++ b/src/pydidas/contexts/diff_exp/diff_exp.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/diff_exp/diff_exp_context.py b/src/pydidas/contexts/diff_exp/diff_exp_context.py index f1b58623c..5359902e4 100644 --- a/src/pydidas/contexts/diff_exp/diff_exp_context.py +++ b/src/pydidas/contexts/diff_exp/diff_exp_context.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/diff_exp/diff_exp_io.py b/src/pydidas/contexts/diff_exp/diff_exp_io.py index 7f851512f..ed2f5c7aa 100644 --- a/src/pydidas/contexts/diff_exp/diff_exp_io.py +++ b/src/pydidas/contexts/diff_exp/diff_exp_io.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/diff_exp/diff_exp_io_base.py b/src/pydidas/contexts/diff_exp/diff_exp_io_base.py index a201c4150..2b302f84f 100644 --- a/src/pydidas/contexts/diff_exp/diff_exp_io_base.py +++ b/src/pydidas/contexts/diff_exp/diff_exp_io_base.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/diff_exp/diff_exp_io_poni.py b/src/pydidas/contexts/diff_exp/diff_exp_io_poni.py index ff04969ed..9f2eaad06 100644 --- a/src/pydidas/contexts/diff_exp/diff_exp_io_poni.py +++ b/src/pydidas/contexts/diff_exp/diff_exp_io_poni.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/diff_exp/diff_exp_io_yaml.py b/src/pydidas/contexts/diff_exp/diff_exp_io_yaml.py index 8a6998288..094c999c6 100644 --- a/src/pydidas/contexts/diff_exp/diff_exp_io_yaml.py +++ b/src/pydidas/contexts/diff_exp/diff_exp_io_yaml.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/scan/__init__.py b/src/pydidas/contexts/scan/__init__.py index 14e3bdf96..2c8e4985d 100644 --- a/src/pydidas/contexts/scan/__init__.py +++ b/src/pydidas/contexts/scan/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/scan/scan.py b/src/pydidas/contexts/scan/scan.py index cac0362df..807ace744 100644 --- a/src/pydidas/contexts/scan/scan.py +++ b/src/pydidas/contexts/scan/scan.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/scan/scan_context.py b/src/pydidas/contexts/scan/scan_context.py index 39da04bae..8894375c5 100644 --- a/src/pydidas/contexts/scan/scan_context.py +++ b/src/pydidas/contexts/scan/scan_context.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/scan/scan_io.py b/src/pydidas/contexts/scan/scan_io.py index 5c0cc98f7..bcfc109c9 100644 --- a/src/pydidas/contexts/scan/scan_io.py +++ b/src/pydidas/contexts/scan/scan_io.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/scan/scan_io_base.py b/src/pydidas/contexts/scan/scan_io_base.py index b91402487..7bd2ef057 100644 --- a/src/pydidas/contexts/scan/scan_io_base.py +++ b/src/pydidas/contexts/scan/scan_io_base.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/contexts/scan/scan_io_yaml.py b/src/pydidas/contexts/scan/scan_io_yaml.py index 00d00f084..67804d50d 100644 --- a/src/pydidas/contexts/scan/scan_io_yaml.py +++ b/src/pydidas/contexts/scan/scan_io_yaml.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/__init__.py b/src/pydidas/core/__init__.py index 8f6a2c253..869caf381 100644 --- a/src/pydidas/core/__init__.py +++ b/src/pydidas/core/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/base_app.py b/src/pydidas/core/base_app.py index 40aec2cc3..594a6f601 100644 --- a/src/pydidas/core/base_app.py +++ b/src/pydidas/core/base_app.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/__init__.py b/src/pydidas/core/constants/__init__.py index f50ef24f9..51a03d7b2 100644 --- a/src/pydidas/core/constants/__init__.py +++ b/src/pydidas/core/constants/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/colors.py b/src/pydidas/core/constants/colors.py index 74c832309..50f2746d9 100644 --- a/src/pydidas/core/constants/colors.py +++ b/src/pydidas/core/constants/colors.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/constants.py b/src/pydidas/core/constants/constants.py index 679dd2441..e4ee905f9 100644 --- a/src/pydidas/core/constants/constants.py +++ b/src/pydidas/core/constants/constants.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/file_extensions.py b/src/pydidas/core/constants/file_extensions.py index 458bd8308..44d1b6f86 100644 --- a/src/pydidas/core/constants/file_extensions.py +++ b/src/pydidas/core/constants/file_extensions.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/gui_constants.py b/src/pydidas/core/constants/gui_constants.py index 09e80d1be..2bb6cfc08 100644 --- a/src/pydidas/core/constants/gui_constants.py +++ b/src/pydidas/core/constants/gui_constants.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/image_ops.py b/src/pydidas/core/constants/image_ops.py index b12a4fd88..649e819ba 100644 --- a/src/pydidas/core/constants/image_ops.py +++ b/src/pydidas/core/constants/image_ops.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/links.py b/src/pydidas/core/constants/links.py index 727fb122a..e05871178 100644 --- a/src/pydidas/core/constants/links.py +++ b/src/pydidas/core/constants/links.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/main_menu_actions.py b/src/pydidas/core/constants/main_menu_actions.py index f790243de..f6c9037d3 100644 --- a/src/pydidas/core/constants/main_menu_actions.py +++ b/src/pydidas/core/constants/main_menu_actions.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/numpy_names.py b/src/pydidas/core/constants/numpy_names.py index d9d424d5f..4c4081715 100644 --- a/src/pydidas/core/constants/numpy_names.py +++ b/src/pydidas/core/constants/numpy_names.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/paths.py b/src/pydidas/core/constants/paths.py index 1f03d597c..d7cd50e01 100644 --- a/src/pydidas/core/constants/paths.py +++ b/src/pydidas/core/constants/paths.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/pyfai_names.py b/src/pydidas/core/constants/pyfai_names.py index f890ee7b0..3ca0c7a43 100644 --- a/src/pydidas/core/constants/pyfai_names.py +++ b/src/pydidas/core/constants/pyfai_names.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/q_settings.py b/src/pydidas/core/constants/q_settings.py index ed349daed..dddf080a8 100644 --- a/src/pydidas/core/constants/q_settings.py +++ b/src/pydidas/core/constants/q_settings.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -26,7 +26,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/qt_presets.py b/src/pydidas/core/constants/qt_presets.py index 654146fcf..8abaadb3f 100644 --- a/src/pydidas/core/constants/qt_presets.py +++ b/src/pydidas/core/constants/qt_presets.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/constants/unicode_letters.py b/src/pydidas/core/constants/unicode_letters.py index c3269a17e..5622920e5 100644 --- a/src/pydidas/core/constants/unicode_letters.py +++ b/src/pydidas/core/constants/unicode_letters.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/dataset.py b/src/pydidas/core/dataset.py index a0b633fe4..248da6335 100644 --- a/src/pydidas/core/dataset.py +++ b/src/pydidas/core/dataset.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/exceptions.py b/src/pydidas/core/exceptions.py index bc591b045..94bada112 100644 --- a/src/pydidas/core/exceptions.py +++ b/src/pydidas/core/exceptions.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/__init__.py b/src/pydidas/core/fitting/__init__.py index e49490d24..32842b290 100644 --- a/src/pydidas/core/fitting/__init__.py +++ b/src/pydidas/core/fitting/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/double_gaussian.py b/src/pydidas/core/fitting/double_gaussian.py index efa5e71a8..5f11258c5 100644 --- a/src/pydidas/core/fitting/double_gaussian.py +++ b/src/pydidas/core/fitting/double_gaussian.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/double_lorentzian.py b/src/pydidas/core/fitting/double_lorentzian.py index 63468ec21..fa0052e58 100644 --- a/src/pydidas/core/fitting/double_lorentzian.py +++ b/src/pydidas/core/fitting/double_lorentzian.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/double_voigt.py b/src/pydidas/core/fitting/double_voigt.py index 22b9a7203..47eb994b8 100644 --- a/src/pydidas/core/fitting/double_voigt.py +++ b/src/pydidas/core/fitting/double_voigt.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/fit_func_base.py b/src/pydidas/core/fitting/fit_func_base.py index f687f89f9..24d3bb262 100644 --- a/src/pydidas/core/fitting/fit_func_base.py +++ b/src/pydidas/core/fitting/fit_func_base.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/fit_func_meta.py b/src/pydidas/core/fitting/fit_func_meta.py index 16c3be44e..1cd050957 100644 --- a/src/pydidas/core/fitting/fit_func_meta.py +++ b/src/pydidas/core/fitting/fit_func_meta.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/gaussian.py b/src/pydidas/core/fitting/gaussian.py index 28e088ef1..ce415259e 100644 --- a/src/pydidas/core/fitting/gaussian.py +++ b/src/pydidas/core/fitting/gaussian.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/lorentzian.py b/src/pydidas/core/fitting/lorentzian.py index 36fbd6b0b..948947ce2 100644 --- a/src/pydidas/core/fitting/lorentzian.py +++ b/src/pydidas/core/fitting/lorentzian.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/multi_peak_mixin.py b/src/pydidas/core/fitting/multi_peak_mixin.py index 50e5e7aed..014edc011 100644 --- a/src/pydidas/core/fitting/multi_peak_mixin.py +++ b/src/pydidas/core/fitting/multi_peak_mixin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/triple_gaussian.py b/src/pydidas/core/fitting/triple_gaussian.py index 568a8d639..b394a98bc 100644 --- a/src/pydidas/core/fitting/triple_gaussian.py +++ b/src/pydidas/core/fitting/triple_gaussian.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/triple_lorentzian.py b/src/pydidas/core/fitting/triple_lorentzian.py index 504d02ada..60a1e9967 100644 --- a/src/pydidas/core/fitting/triple_lorentzian.py +++ b/src/pydidas/core/fitting/triple_lorentzian.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/triple_voigt.py b/src/pydidas/core/fitting/triple_voigt.py index 67ef34fbf..c4efad8b9 100644 --- a/src/pydidas/core/fitting/triple_voigt.py +++ b/src/pydidas/core/fitting/triple_voigt.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/fitting/voigt.py b/src/pydidas/core/fitting/voigt.py index 6dca8fcae..06024f52d 100644 --- a/src/pydidas/core/fitting/voigt.py +++ b/src/pydidas/core/fitting/voigt.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_parameters.py b/src/pydidas/core/generic_parameters.py index 414bfaf68..87e7910fe 100644 --- a/src/pydidas/core/generic_parameters.py +++ b/src/pydidas/core/generic_parameters.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __version__ = "0.0.0" __maintainer__ = "Malte Storm" diff --git a/src/pydidas/core/generic_params/__init__.py b/src/pydidas/core/generic_params/__init__.py index 4273634f8..280c98fb6 100644 --- a/src/pydidas/core/generic_params/__init__.py +++ b/src/pydidas/core/generic_params/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/generic_params.py b/src/pydidas/core/generic_params/generic_params.py index 52ff2ad49..dc93300e0 100644 --- a/src/pydidas/core/generic_params/generic_params.py +++ b/src/pydidas/core/generic_params/generic_params.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm, Nonni Heere" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/generic_params_data_import.py b/src/pydidas/core/generic_params/generic_params_data_import.py index fe12a7b3c..81f9b4604 100644 --- a/src/pydidas/core/generic_params/generic_params_data_import.py +++ b/src/pydidas/core/generic_params/generic_params_data_import.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/generic_params_experiment.py b/src/pydidas/core/generic_params/generic_params_experiment.py index 09d439543..276ec0119 100644 --- a/src/pydidas/core/generic_params/generic_params_experiment.py +++ b/src/pydidas/core/generic_params/generic_params_experiment.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/generic_params_fit.py b/src/pydidas/core/generic_params/generic_params_fit.py index 7c87669b7..724337ddf 100644 --- a/src/pydidas/core/generic_params/generic_params_fit.py +++ b/src/pydidas/core/generic_params/generic_params_fit.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/generic_params_image_ops.py b/src/pydidas/core/generic_params/generic_params_image_ops.py index 410035e40..3ffb4ce52 100644 --- a/src/pydidas/core/generic_params/generic_params_image_ops.py +++ b/src/pydidas/core/generic_params/generic_params_image_ops.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/generic_params_other.py b/src/pydidas/core/generic_params/generic_params_other.py index 44a606781..96210a79a 100644 --- a/src/pydidas/core/generic_params/generic_params_other.py +++ b/src/pydidas/core/generic_params/generic_params_other.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/generic_params_proc.py b/src/pydidas/core/generic_params/generic_params_proc.py index 38c238163..88e0ade45 100644 --- a/src/pydidas/core/generic_params/generic_params_proc.py +++ b/src/pydidas/core/generic_params/generic_params_proc.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Nonni Heere" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/generic_params_pyfai.py b/src/pydidas/core/generic_params/generic_params_pyfai.py index a54772bd2..ad1722b9a 100644 --- a/src/pydidas/core/generic_params/generic_params_pyfai.py +++ b/src/pydidas/core/generic_params/generic_params_pyfai.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/generic_params_scan.py b/src/pydidas/core/generic_params/generic_params_scan.py index 3c670cc40..2135775d6 100644 --- a/src/pydidas/core/generic_params/generic_params_scan.py +++ b/src/pydidas/core/generic_params/generic_params_scan.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/generic_params_settings.py b/src/pydidas/core/generic_params/generic_params_settings.py index 6ce527777..565716637 100644 --- a/src/pydidas/core/generic_params/generic_params_settings.py +++ b/src/pydidas/core/generic_params/generic_params_settings.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/generic_params/param_lists.py b/src/pydidas/core/generic_params/param_lists.py index ece6b4523..f4fd3d89a 100644 --- a/src/pydidas/core/generic_params/param_lists.py +++ b/src/pydidas/core/generic_params/param_lists.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/hdf5_key.py b/src/pydidas/core/hdf5_key.py index a117e7668..08b5288c6 100644 --- a/src/pydidas/core/hdf5_key.py +++ b/src/pydidas/core/hdf5_key.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/io_registry/__init__.py b/src/pydidas/core/io_registry/__init__.py index c68980fa5..94c05a721 100644 --- a/src/pydidas/core/io_registry/__init__.py +++ b/src/pydidas/core/io_registry/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/io_registry/generic_io_base.py b/src/pydidas/core/io_registry/generic_io_base.py index 6bf46fcfc..fe9e503f5 100644 --- a/src/pydidas/core/io_registry/generic_io_base.py +++ b/src/pydidas/core/io_registry/generic_io_base.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/io_registry/generic_io_meta.py b/src/pydidas/core/io_registry/generic_io_meta.py index ba4a965e9..49c7f80a0 100644 --- a/src/pydidas/core/io_registry/generic_io_meta.py +++ b/src/pydidas/core/io_registry/generic_io_meta.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/object_with_parameter_collection.py b/src/pydidas/core/object_with_parameter_collection.py index e459bc6b9..ed061cae7 100644 --- a/src/pydidas/core/object_with_parameter_collection.py +++ b/src/pydidas/core/object_with_parameter_collection.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/parameter.py b/src/pydidas/core/parameter.py index a01f50e0b..1034a2ebd 100644 --- a/src/pydidas/core/parameter.py +++ b/src/pydidas/core/parameter.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/parameter_collection.py b/src/pydidas/core/parameter_collection.py index f6d4c74e5..0ed065434 100644 --- a/src/pydidas/core/parameter_collection.py +++ b/src/pydidas/core/parameter_collection.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -23,7 +23,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/parameter_collection_mixin.py b/src/pydidas/core/parameter_collection_mixin.py index 6b5a4d744..aa7ba39c8 100644 --- a/src/pydidas/core/parameter_collection_mixin.py +++ b/src/pydidas/core/parameter_collection_mixin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ class functionality to make simplified use of the pydidas ParameterCollection. """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/pydidas_q_settings.py b/src/pydidas/core/pydidas_q_settings.py index c5f60caa1..a4a985830 100644 --- a/src/pydidas/core/pydidas_q_settings.py +++ b/src/pydidas/core/pydidas_q_settings.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/pydidas_q_settings_mixin.py b/src/pydidas/core/pydidas_q_settings_mixin.py index ce4cef8a4..0dc8cb2f4 100644 --- a/src/pydidas/core/pydidas_q_settings_mixin.py +++ b/src/pydidas/core/pydidas_q_settings_mixin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/singleton_factory.py b/src/pydidas/core/singleton_factory.py index 63a02f752..46e77b33b 100644 --- a/src/pydidas/core/singleton_factory.py +++ b/src/pydidas/core/singleton_factory.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL 3.0" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/__init__.py b/src/pydidas/core/utils/__init__.py index f0ef615d9..c0d6da728 100644 --- a/src/pydidas/core/utils/__init__.py +++ b/src/pydidas/core/utils/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/clipboard_.py b/src/pydidas/core/utils/clipboard_.py index 57da12d55..432739a86 100644 --- a/src/pydidas/core/utils/clipboard_.py +++ b/src/pydidas/core/utils/clipboard_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/dataset_utils.py b/src/pydidas/core/utils/dataset_utils.py index 4888d10ce..4b835abc4 100644 --- a/src/pydidas/core/utils/dataset_utils.py +++ b/src/pydidas/core/utils/dataset_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/decorators.py b/src/pydidas/core/utils/decorators.py index 89aeba4d4..21167bf95 100644 --- a/src/pydidas/core/utils/decorators.py +++ b/src/pydidas/core/utils/decorators.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/dectris_utils.py b/src/pydidas/core/utils/dectris_utils.py index f86b96915..ee3804765 100644 --- a/src/pydidas/core/utils/dectris_utils.py +++ b/src/pydidas/core/utils/dectris_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/file_checks.py b/src/pydidas/core/utils/file_checks.py index 2698b4914..fe8483442 100644 --- a/src/pydidas/core/utils/file_checks.py +++ b/src/pydidas/core/utils/file_checks.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/file_utils.py b/src/pydidas/core/utils/file_utils.py index 6d61d87e0..b990519b6 100644 --- a/src/pydidas/core/utils/file_utils.py +++ b/src/pydidas/core/utils/file_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/format_arguments_.py b/src/pydidas/core/utils/format_arguments_.py index b0880e78e..07a102d28 100644 --- a/src/pydidas/core/utils/format_arguments_.py +++ b/src/pydidas/core/utils/format_arguments_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/get_documentation_targets.py b/src/pydidas/core/utils/get_documentation_targets.py index f3e5f1ddb..a0bcef37e 100644 --- a/src/pydidas/core/utils/get_documentation_targets.py +++ b/src/pydidas/core/utils/get_documentation_targets.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/hdf5_dataset_utils.py b/src/pydidas/core/utils/hdf5_dataset_utils.py index f276baab5..7bd00dd65 100644 --- a/src/pydidas/core/utils/hdf5_dataset_utils.py +++ b/src/pydidas/core/utils/hdf5_dataset_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/image_utils.py b/src/pydidas/core/utils/image_utils.py index 884ea008d..5251b3112 100644 --- a/src/pydidas/core/utils/image_utils.py +++ b/src/pydidas/core/utils/image_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/iterable_utils.py b/src/pydidas/core/utils/iterable_utils.py index 87409a3f7..6f80c67ad 100644 --- a/src/pydidas/core/utils/iterable_utils.py +++ b/src/pydidas/core/utils/iterable_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/logger.py b/src/pydidas/core/utils/logger.py index 8d699261b..d4c7beca1 100644 --- a/src/pydidas/core/utils/logger.py +++ b/src/pydidas/core/utils/logger.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/math_utils.py b/src/pydidas/core/utils/math_utils.py index dc3b5dfb0..54d5bcd19 100644 --- a/src/pydidas/core/utils/math_utils.py +++ b/src/pydidas/core/utils/math_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/no_print.py b/src/pydidas/core/utils/no_print.py index 3499c92cf..ad88deecd 100644 --- a/src/pydidas/core/utils/no_print.py +++ b/src/pydidas/core/utils/no_print.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/numpy_parser.py b/src/pydidas/core/utils/numpy_parser.py index 6e3cd3f97..76efc91e2 100644 --- a/src/pydidas/core/utils/numpy_parser.py +++ b/src/pydidas/core/utils/numpy_parser.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/qt_utilities.py b/src/pydidas/core/utils/qt_utilities.py index 92863a200..8737ad660 100644 --- a/src/pydidas/core/utils/qt_utilities.py +++ b/src/pydidas/core/utils/qt_utilities.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/rebin_.py b/src/pydidas/core/utils/rebin_.py index 2b7671f4c..3e37f77aa 100644 --- a/src/pydidas/core/utils/rebin_.py +++ b/src/pydidas/core/utils/rebin_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/show_busy_mouse.py b/src/pydidas/core/utils/show_busy_mouse.py index 0091d473c..7522e3c18 100644 --- a/src/pydidas/core/utils/show_busy_mouse.py +++ b/src/pydidas/core/utils/show_busy_mouse.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/sphinx_html.py b/src/pydidas/core/utils/sphinx_html.py index e46c48f3c..08184a8ef 100644 --- a/src/pydidas/core/utils/sphinx_html.py +++ b/src/pydidas/core/utils/sphinx_html.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/str_utils.py b/src/pydidas/core/utils/str_utils.py index f17dbbb03..aa999d4bf 100644 --- a/src/pydidas/core/utils/str_utils.py +++ b/src/pydidas/core/utils/str_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/core/utils/timer.py b/src/pydidas/core/utils/timer.py index 280bc2e8f..7d80b3015 100644 --- a/src/pydidas/core/utils/timer.py +++ b/src/pydidas/core/utils/timer.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/__init__.py b/src/pydidas/data_io/__init__.py index 8d43cf6e6..3c034cfbb 100644 --- a/src/pydidas/data_io/__init__.py +++ b/src/pydidas/data_io/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/implementations/__init__.py b/src/pydidas/data_io/implementations/__init__.py index 6010d0994..d4af6752e 100644 --- a/src/pydidas/data_io/implementations/__init__.py +++ b/src/pydidas/data_io/implementations/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/implementations/fabio_io.py b/src/pydidas/data_io/implementations/fabio_io.py index 2a7653d5a..ed4abff06 100644 --- a/src/pydidas/data_io/implementations/fabio_io.py +++ b/src/pydidas/data_io/implementations/fabio_io.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/implementations/hdf5_io.py b/src/pydidas/data_io/implementations/hdf5_io.py index c1b470d26..eae9d61c4 100644 --- a/src/pydidas/data_io/implementations/hdf5_io.py +++ b/src/pydidas/data_io/implementations/hdf5_io.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/implementations/io_base.py b/src/pydidas/data_io/implementations/io_base.py index a2704367b..a2669b21f 100644 --- a/src/pydidas/data_io/implementations/io_base.py +++ b/src/pydidas/data_io/implementations/io_base.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/implementations/io_exporter_matplotlib.py b/src/pydidas/data_io/implementations/io_exporter_matplotlib.py index d178c6a8c..1c03fbd16 100644 --- a/src/pydidas/data_io/implementations/io_exporter_matplotlib.py +++ b/src/pydidas/data_io/implementations/io_exporter_matplotlib.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/implementations/jpeg_io.py b/src/pydidas/data_io/implementations/jpeg_io.py index 7689a143b..d0b42e6b6 100644 --- a/src/pydidas/data_io/implementations/jpeg_io.py +++ b/src/pydidas/data_io/implementations/jpeg_io.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/implementations/numpy_io.py b/src/pydidas/data_io/implementations/numpy_io.py index e9b582ba8..dbd746615 100644 --- a/src/pydidas/data_io/implementations/numpy_io.py +++ b/src/pydidas/data_io/implementations/numpy_io.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/implementations/png_io.py b/src/pydidas/data_io/implementations/png_io.py index c205d0172..c8bdf3fd4 100644 --- a/src/pydidas/data_io/implementations/png_io.py +++ b/src/pydidas/data_io/implementations/png_io.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/implementations/raw_io.py b/src/pydidas/data_io/implementations/raw_io.py index fa88d0260..f98a29449 100644 --- a/src/pydidas/data_io/implementations/raw_io.py +++ b/src/pydidas/data_io/implementations/raw_io.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/implementations/tiff_io.py b/src/pydidas/data_io/implementations/tiff_io.py index 20aa7dd2b..b98234f56 100644 --- a/src/pydidas/data_io/implementations/tiff_io.py +++ b/src/pydidas/data_io/implementations/tiff_io.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/import_export.py b/src/pydidas/data_io/import_export.py index 0386228ba..c593da94a 100644 --- a/src/pydidas/data_io/import_export.py +++ b/src/pydidas/data_io/import_export.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/io_manager.py b/src/pydidas/data_io/io_manager.py index a3ccbf089..3fbc33b8f 100644 --- a/src/pydidas/data_io/io_manager.py +++ b/src/pydidas/data_io/io_manager.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/low_level_readers/__init__.py b/src/pydidas/data_io/low_level_readers/__init__.py index 226b15633..5be1b4a6a 100644 --- a/src/pydidas/data_io/low_level_readers/__init__.py +++ b/src/pydidas/data_io/low_level_readers/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/low_level_readers/read_hdf5_dataset_.py b/src/pydidas/data_io/low_level_readers/read_hdf5_dataset_.py index 8d0346a4e..e3c8a4bea 100644 --- a/src/pydidas/data_io/low_level_readers/read_hdf5_dataset_.py +++ b/src/pydidas/data_io/low_level_readers/read_hdf5_dataset_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/utils/__init__.py b/src/pydidas/data_io/utils/__init__.py index ffb06f343..bf7617b58 100644 --- a/src/pydidas/data_io/utils/__init__.py +++ b/src/pydidas/data_io/utils/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/utils/figure_utils.py b/src/pydidas/data_io/utils/figure_utils.py index aec87b17a..ea604fae6 100644 --- a/src/pydidas/data_io/utils/figure_utils.py +++ b/src/pydidas/data_io/utils/figure_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/data_io/utils/roi_slice_manager.py b/src/pydidas/data_io/utils/roi_slice_manager.py index 18113c970..1f3601c66 100644 --- a/src/pydidas/data_io/utils/roi_slice_manager.py +++ b/src/pydidas/data_io/utils/roi_slice_manager.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/docs/Makefile b/src/pydidas/docs/Makefile index 463497870..307496d54 100644 --- a/src/pydidas/docs/Makefile +++ b/src/pydidas/docs/Makefile @@ -1,4 +1,4 @@ -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # # SPDX-License-Identifier: CC-BY-4.0 # diff --git a/src/pydidas/docs/src/code/api/apps.rst b/src/pydidas/docs/src/code/api/apps.rst index a5f3ab380..2110046f2 100644 --- a/src/pydidas/docs/src/code/api/apps.rst +++ b/src/pydidas/docs/src/code/api/apps.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The apps sub-package diff --git a/src/pydidas/docs/src/code/api/apps/composite_creator_app.rst b/src/pydidas/docs/src/code/api/apps/composite_creator_app.rst index 0c4f3fc80..23b0c1841 100644 --- a/src/pydidas/docs/src/code/api/apps/composite_creator_app.rst +++ b/src/pydidas/docs/src/code/api/apps/composite_creator_app.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: CompositeCreatorApp diff --git a/src/pydidas/docs/src/code/api/apps/directory_spy_app.rst b/src/pydidas/docs/src/code/api/apps/directory_spy_app.rst index 8c6288d17..a3d67146e 100644 --- a/src/pydidas/docs/src/code/api/apps/directory_spy_app.rst +++ b/src/pydidas/docs/src/code/api/apps/directory_spy_app.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: DirectorySpyApp diff --git a/src/pydidas/docs/src/code/api/apps/execute_workflow_app.rst b/src/pydidas/docs/src/code/api/apps/execute_workflow_app.rst index 513256776..579833d47 100644 --- a/src/pydidas/docs/src/code/api/apps/execute_workflow_app.rst +++ b/src/pydidas/docs/src/code/api/apps/execute_workflow_app.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: ExecuteWorkflowApp diff --git a/src/pydidas/docs/src/code/api/apps/execute_workflow_runner.rst b/src/pydidas/docs/src/code/api/apps/execute_workflow_runner.rst index 0969c6f3f..e48d25c9a 100644 --- a/src/pydidas/docs/src/code/api/apps/execute_workflow_runner.rst +++ b/src/pydidas/docs/src/code/api/apps/execute_workflow_runner.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: ExecuteWorkflowRunner diff --git a/src/pydidas/docs/src/code/api/contexts.rst b/src/pydidas/docs/src/code/api/contexts.rst index 1b5add11c..ab895ba45 100644 --- a/src/pydidas/docs/src/code/api/contexts.rst +++ b/src/pydidas/docs/src/code/api/contexts.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The contexts sub-package diff --git a/src/pydidas/docs/src/code/api/core.rst b/src/pydidas/docs/src/code/api/core.rst index f63ea0e4c..d09245adc 100644 --- a/src/pydidas/docs/src/code/api/core.rst +++ b/src/pydidas/docs/src/code/api/core.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The core submodule diff --git a/src/pydidas/docs/src/code/api/core/base_app.rst b/src/pydidas/docs/src/code/api/core/base_app.rst index 9e4f21d0d..61211e267 100644 --- a/src/pydidas/docs/src/code/api/core/base_app.rst +++ b/src/pydidas/docs/src/code/api/core/base_app.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: BaseApp diff --git a/src/pydidas/docs/src/code/api/core/dataset.rst b/src/pydidas/docs/src/code/api/core/dataset.rst index 197a9f7fa..b72c7b49f 100644 --- a/src/pydidas/docs/src/code/api/core/dataset.rst +++ b/src/pydidas/docs/src/code/api/core/dataset.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: Dataset diff --git a/src/pydidas/docs/src/code/api/core/object_with_prm_cllct.rst b/src/pydidas/docs/src/code/api/core/object_with_prm_cllct.rst index 47affe4d0..11099d02e 100644 --- a/src/pydidas/docs/src/code/api/core/object_with_prm_cllct.rst +++ b/src/pydidas/docs/src/code/api/core/object_with_prm_cllct.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: ObjectWithParameterCollection diff --git a/src/pydidas/docs/src/code/api/core/others.rst b/src/pydidas/docs/src/code/api/core/others.rst index 8f54ad0c7..6b7ec2f2c 100644 --- a/src/pydidas/docs/src/code/api/core/others.rst +++ b/src/pydidas/docs/src/code/api/core/others.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Other core classes and functions diff --git a/src/pydidas/docs/src/code/api/core/parameter.rst b/src/pydidas/docs/src/code/api/core/parameter.rst index f0e58b9af..f1df44ccc 100644 --- a/src/pydidas/docs/src/code/api/core/parameter.rst +++ b/src/pydidas/docs/src/code/api/core/parameter.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: Parameter diff --git a/src/pydidas/docs/src/code/api/core/parameter_collection.rst b/src/pydidas/docs/src/code/api/core/parameter_collection.rst index 3bc3f1341..cb93cb10f 100644 --- a/src/pydidas/docs/src/code/api/core/parameter_collection.rst +++ b/src/pydidas/docs/src/code/api/core/parameter_collection.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: ParameterCollection diff --git a/src/pydidas/docs/src/code/api/data_io.rst b/src/pydidas/docs/src/code/api/data_io.rst index 54efa8396..5338d23eb 100644 --- a/src/pydidas/docs/src/code/api/data_io.rst +++ b/src/pydidas/docs/src/code/api/data_io.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The data_io sub-package diff --git a/src/pydidas/docs/src/code/api/gui.rst b/src/pydidas/docs/src/code/api/gui.rst index 6b5fa5972..e61385479 100644 --- a/src/pydidas/docs/src/code/api/gui.rst +++ b/src/pydidas/docs/src/code/api/gui.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The gui submodule diff --git a/src/pydidas/docs/src/code/api/gui/frames/builders.rst b/src/pydidas/docs/src/code/api/gui/frames/builders.rst index 04364592e..4df177853 100644 --- a/src/pydidas/docs/src/code/api/gui/frames/builders.rst +++ b/src/pydidas/docs/src/code/api/gui/frames/builders.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/code/api/gui/frames/composite_creator_frame.rst b/src/pydidas/docs/src/code/api/gui/frames/composite_creator_frame.rst index 614877d8a..149690419 100644 --- a/src/pydidas/docs/src/code/api/gui/frames/composite_creator_frame.rst +++ b/src/pydidas/docs/src/code/api/gui/frames/composite_creator_frame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: CompositeCreatorFrame diff --git a/src/pydidas/docs/src/code/api/gui/frames/data_browsing_frame.rst b/src/pydidas/docs/src/code/api/gui/frames/data_browsing_frame.rst index b8772a2cb..77ae77609 100644 --- a/src/pydidas/docs/src/code/api/gui/frames/data_browsing_frame.rst +++ b/src/pydidas/docs/src/code/api/gui/frames/data_browsing_frame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: DataBrowsingFrame diff --git a/src/pydidas/docs/src/code/api/gui/frames/define_diffraction_exp_frame.rst b/src/pydidas/docs/src/code/api/gui/frames/define_diffraction_exp_frame.rst index 926782de4..eee16945f 100644 --- a/src/pydidas/docs/src/code/api/gui/frames/define_diffraction_exp_frame.rst +++ b/src/pydidas/docs/src/code/api/gui/frames/define_diffraction_exp_frame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: DefineDiffractionExpFrame diff --git a/src/pydidas/docs/src/code/api/gui/frames/define_scan_frame.rst b/src/pydidas/docs/src/code/api/gui/frames/define_scan_frame.rst index 94250db8b..b858a2336 100644 --- a/src/pydidas/docs/src/code/api/gui/frames/define_scan_frame.rst +++ b/src/pydidas/docs/src/code/api/gui/frames/define_scan_frame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: DefineScanFrame diff --git a/src/pydidas/docs/src/code/api/gui/frames/pyfai_calib_frame.rst b/src/pydidas/docs/src/code/api/gui/frames/pyfai_calib_frame.rst index 781ba16d4..e6abecf23 100644 --- a/src/pydidas/docs/src/code/api/gui/frames/pyfai_calib_frame.rst +++ b/src/pydidas/docs/src/code/api/gui/frames/pyfai_calib_frame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: PyfaiCalibFrame diff --git a/src/pydidas/docs/src/code/api/gui/frames/view_results_frame.rst b/src/pydidas/docs/src/code/api/gui/frames/view_results_frame.rst index 732a78119..2035f052f 100644 --- a/src/pydidas/docs/src/code/api/gui/frames/view_results_frame.rst +++ b/src/pydidas/docs/src/code/api/gui/frames/view_results_frame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: ViewResultsFrame diff --git a/src/pydidas/docs/src/code/api/gui/frames/workflow_edit_frame.rst b/src/pydidas/docs/src/code/api/gui/frames/workflow_edit_frame.rst index 007967104..5d44f4a35 100644 --- a/src/pydidas/docs/src/code/api/gui/frames/workflow_edit_frame.rst +++ b/src/pydidas/docs/src/code/api/gui/frames/workflow_edit_frame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: WorkflowEditFrame diff --git a/src/pydidas/docs/src/code/api/gui/frames/workflow_run_frame.rst b/src/pydidas/docs/src/code/api/gui/frames/workflow_run_frame.rst index 1223689a2..34aa74445 100644 --- a/src/pydidas/docs/src/code/api/gui/frames/workflow_run_frame.rst +++ b/src/pydidas/docs/src/code/api/gui/frames/workflow_run_frame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: WorkflowRunFrame diff --git a/src/pydidas/docs/src/code/api/gui/frames/workflow_test_frame.rst b/src/pydidas/docs/src/code/api/gui/frames/workflow_test_frame.rst index 06212404d..858deb495 100644 --- a/src/pydidas/docs/src/code/api/gui/frames/workflow_test_frame.rst +++ b/src/pydidas/docs/src/code/api/gui/frames/workflow_test_frame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: WorkflowTestFrame diff --git a/src/pydidas/docs/src/code/api/gui/main_window.rst b/src/pydidas/docs/src/code/api/gui/main_window.rst index a24d45a44..08b486313 100644 --- a/src/pydidas/docs/src/code/api/gui/main_window.rst +++ b/src/pydidas/docs/src/code/api/gui/main_window.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: MainWindow diff --git a/src/pydidas/docs/src/code/api/managers.rst b/src/pydidas/docs/src/code/api/managers.rst index bb8ba5238..71415e71b 100644 --- a/src/pydidas/docs/src/code/api/managers.rst +++ b/src/pydidas/docs/src/code/api/managers.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The managers sub-package diff --git a/src/pydidas/docs/src/code/api/multiprocessing.rst b/src/pydidas/docs/src/code/api/multiprocessing.rst index 9739b12de..b36702a9c 100644 --- a/src/pydidas/docs/src/code/api/multiprocessing.rst +++ b/src/pydidas/docs/src/code/api/multiprocessing.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _multiprocessing_package: diff --git a/src/pydidas/docs/src/code/api/plugins.rst b/src/pydidas/docs/src/code/api/plugins.rst index 71d5ea668..bcf2b67e2 100644 --- a/src/pydidas/docs/src/code/api/plugins.rst +++ b/src/pydidas/docs/src/code/api/plugins.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The plugins sub-package diff --git a/src/pydidas/docs/src/code/api/widgets.rst b/src/pydidas/docs/src/code/api/widgets.rst index 748487512..d00243222 100644 --- a/src/pydidas/docs/src/code/api/widgets.rst +++ b/src/pydidas/docs/src/code/api/widgets.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/base.rst b/src/pydidas/docs/src/code/api/widgets/base.rst index 0740e3471..b0d08dae1 100644 --- a/src/pydidas/docs/src/code/api/widgets/base.rst +++ b/src/pydidas/docs/src/code/api/widgets/base.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/controllers.rst b/src/pydidas/docs/src/code/api/widgets/controllers.rst index 74b51e988..e29483fb2 100644 --- a/src/pydidas/docs/src/code/api/widgets/controllers.rst +++ b/src/pydidas/docs/src/code/api/widgets/controllers.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets.controllers sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/dialogues.rst b/src/pydidas/docs/src/code/api/widgets/dialogues.rst index 94a3c4e2d..ccb039932 100644 --- a/src/pydidas/docs/src/code/api/widgets/dialogues.rst +++ b/src/pydidas/docs/src/code/api/widgets/dialogues.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets.dialogues sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/factory.rst b/src/pydidas/docs/src/code/api/widgets/factory.rst index b71e315bd..540b4ede4 100644 --- a/src/pydidas/docs/src/code/api/widgets/factory.rst +++ b/src/pydidas/docs/src/code/api/widgets/factory.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets.factory sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/framework.rst b/src/pydidas/docs/src/code/api/widgets/framework.rst index f35ec1017..cec7db068 100644 --- a/src/pydidas/docs/src/code/api/widgets/framework.rst +++ b/src/pydidas/docs/src/code/api/widgets/framework.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets.framework sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/misc.rst b/src/pydidas/docs/src/code/api/widgets/misc.rst index 6f06b2a7b..ddd36a29c 100644 --- a/src/pydidas/docs/src/code/api/widgets/misc.rst +++ b/src/pydidas/docs/src/code/api/widgets/misc.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets.misc sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/parameter_config.rst b/src/pydidas/docs/src/code/api/widgets/parameter_config.rst index 0be35c743..c2cd94f69 100644 --- a/src/pydidas/docs/src/code/api/widgets/parameter_config.rst +++ b/src/pydidas/docs/src/code/api/widgets/parameter_config.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets.parameter_config sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/selection.rst b/src/pydidas/docs/src/code/api/widgets/selection.rst index e3d30d174..828a387ca 100644 --- a/src/pydidas/docs/src/code/api/widgets/selection.rst +++ b/src/pydidas/docs/src/code/api/widgets/selection.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets.selection sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/silx_plot.rst b/src/pydidas/docs/src/code/api/widgets/silx_plot.rst index 60efcd269..17cdec332 100644 --- a/src/pydidas/docs/src/code/api/widgets/silx_plot.rst +++ b/src/pydidas/docs/src/code/api/widgets/silx_plot.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets.silx_plot sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/windows.rst b/src/pydidas/docs/src/code/api/widgets/windows.rst index f76aa46e0..15458f0df 100644 --- a/src/pydidas/docs/src/code/api/widgets/windows.rst +++ b/src/pydidas/docs/src/code/api/widgets/windows.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets.windows sub-package diff --git a/src/pydidas/docs/src/code/api/widgets/windows/global_settings_window.rst b/src/pydidas/docs/src/code/api/widgets/windows/global_settings_window.rst index 42cb1b2d3..85ec02cbe 100644 --- a/src/pydidas/docs/src/code/api/widgets/windows/global_settings_window.rst +++ b/src/pydidas/docs/src/code/api/widgets/windows/global_settings_window.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |class_name| replace:: GlobalSettingsWindow diff --git a/src/pydidas/docs/src/code/api/widgets/workflow_edit.rst b/src/pydidas/docs/src/code/api/widgets/workflow_edit.rst index 9ab0ba646..724b67070 100644 --- a/src/pydidas/docs/src/code/api/widgets/workflow_edit.rst +++ b/src/pydidas/docs/src/code/api/widgets/workflow_edit.rst @@ -1,5 +1,5 @@ .. - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The widgets.workflow_edit sub-package diff --git a/src/pydidas/docs/src/code/api/workflow.rst b/src/pydidas/docs/src/code/api/workflow.rst index 4192e41ce..fdcde4632 100644 --- a/src/pydidas/docs/src/code/api/workflow.rst +++ b/src/pydidas/docs/src/code/api/workflow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 The workflow sub-package diff --git a/src/pydidas/docs/src/code/api/workflow/processing_tree_io.rst b/src/pydidas/docs/src/code/api/workflow/processing_tree_io.rst index 63221eb77..984884705 100644 --- a/src/pydidas/docs/src/code/api/workflow/processing_tree_io.rst +++ b/src/pydidas/docs/src/code/api/workflow/processing_tree_io.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 workflow.processing_tree_io diff --git a/src/pydidas/docs/src/code/api/workflow/result_io.rst b/src/pydidas/docs/src/code/api/workflow/result_io.rst index 9c905898e..5a555ee8e 100644 --- a/src/pydidas/docs/src/code/api/workflow/result_io.rst +++ b/src/pydidas/docs/src/code/api/workflow/result_io.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 workflow.result_io diff --git a/src/pydidas/docs/src/code/api/workflow/workflow.rst b/src/pydidas/docs/src/code/api/workflow/workflow.rst index aa20d6062..4efa9b97d 100644 --- a/src/pydidas/docs/src/code/api/workflow/workflow.rst +++ b/src/pydidas/docs/src/code/api/workflow/workflow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 workflow diff --git a/src/pydidas/docs/src/code/code_documentation.rst b/src/pydidas/docs/src/code/code_documentation.rst index d68ca6681..63737e692 100644 --- a/src/pydidas/docs/src/code/code_documentation.rst +++ b/src/pydidas/docs/src/code/code_documentation.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _code_documentation: diff --git a/src/pydidas/docs/src/code/concepts.rst b/src/pydidas/docs/src/code/concepts.rst index 3c44b34f7..dc2b8ac0a 100644 --- a/src/pydidas/docs/src/code/concepts.rst +++ b/src/pydidas/docs/src/code/concepts.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Key concepts diff --git a/src/pydidas/docs/src/code/package_structure.rst b/src/pydidas/docs/src/code/package_structure.rst index 3bf72b778..30de81ab4 100644 --- a/src/pydidas/docs/src/code/package_structure.rst +++ b/src/pydidas/docs/src/code/package_structure.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _package_structure: diff --git a/src/pydidas/docs/src/conf.py b/src/pydidas/docs/src/conf.py index 4f6321d96..5c61759b1 100644 --- a/src/pydidas/docs/src/conf.py +++ b/src/pydidas/docs/src/conf.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify diff --git a/src/pydidas/docs/src/dev_guide/dev_guide_apps.rst b/src/pydidas/docs/src/dev_guide/dev_guide_apps.rst index e4d535456..a512896c8 100644 --- a/src/pydidas/docs/src/dev_guide/dev_guide_apps.rst +++ b/src/pydidas/docs/src/dev_guide/dev_guide_apps.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _developer_guide_to_apps: diff --git a/src/pydidas/docs/src/dev_guide/dev_guide_list_of_signals.rst b/src/pydidas/docs/src/dev_guide/dev_guide_list_of_signals.rst index 25e0b7937..ee31b72b5 100644 --- a/src/pydidas/docs/src/dev_guide/dev_guide_list_of_signals.rst +++ b/src/pydidas/docs/src/dev_guide/dev_guide_list_of_signals.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _developer_guide_to_signals: diff --git a/src/pydidas/docs/src/dev_guide/dev_guide_multiprocessing.rst b/src/pydidas/docs/src/dev_guide/dev_guide_multiprocessing.rst index 1ff76c05c..bcefe6e80 100644 --- a/src/pydidas/docs/src/dev_guide/dev_guide_multiprocessing.rst +++ b/src/pydidas/docs/src/dev_guide/dev_guide_multiprocessing.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _developer_guide_to_multiprocessing: diff --git a/src/pydidas/docs/src/dev_guide/dev_guide_plugins.rst b/src/pydidas/docs/src/dev_guide/dev_guide_plugins.rst index 99738d050..2b8158271 100644 --- a/src/pydidas/docs/src/dev_guide/dev_guide_plugins.rst +++ b/src/pydidas/docs/src/dev_guide/dev_guide_plugins.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. |dataset| replace:: :py:class:`Dataset ` diff --git a/src/pydidas/docs/src/dev_guide/developer_guide.rst b/src/pydidas/docs/src/dev_guide/developer_guide.rst index 23f12b71e..f980a53c0 100644 --- a/src/pydidas/docs/src/dev_guide/developer_guide.rst +++ b/src/pydidas/docs/src/dev_guide/developer_guide.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _developer_guide: diff --git a/src/pydidas/docs/src/index.rst b/src/pydidas/docs/src/index.rst index d64dd3362..a0a416fe3 100644 --- a/src/pydidas/docs/src/index.rst +++ b/src/pydidas/docs/src/index.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/introduction.rst b/src/pydidas/docs/src/introduction.rst index 2e23fe51c..2507fabb9 100644 --- a/src/pydidas/docs/src/introduction.rst +++ b/src/pydidas/docs/src/introduction.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/manuals/cmdline_apps/cmd_apps.rst b/src/pydidas/docs/src/manuals/cmdline_apps/cmd_apps.rst index 0fd69ed18..5f5653acb 100644 --- a/src/pydidas/docs/src/manuals/cmdline_apps/cmd_apps.rst +++ b/src/pydidas/docs/src/manuals/cmdline_apps/cmd_apps.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Command line applications diff --git a/src/pydidas/docs/src/manuals/cmdline_apps/cmd_composite_creator_app.rst b/src/pydidas/docs/src/manuals/cmdline_apps/cmd_composite_creator_app.rst index fb014edea..353570510 100644 --- a/src/pydidas/docs/src/manuals/cmdline_apps/cmd_composite_creator_app.rst +++ b/src/pydidas/docs/src/manuals/cmdline_apps/cmd_composite_creator_app.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Tutorial for the CompositeCreatorApp diff --git a/src/pydidas/docs/src/manuals/cmdline_apps/cmd_directory_spy_app.rst b/src/pydidas/docs/src/manuals/cmdline_apps/cmd_directory_spy_app.rst index a9f07efe8..e54d3538b 100644 --- a/src/pydidas/docs/src/manuals/cmdline_apps/cmd_directory_spy_app.rst +++ b/src/pydidas/docs/src/manuals/cmdline_apps/cmd_directory_spy_app.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Tutorial for the DirectorySpyApp diff --git a/src/pydidas/docs/src/manuals/cmdline_apps/cmd_execute_workflow_app.rst b/src/pydidas/docs/src/manuals/cmdline_apps/cmd_execute_workflow_app.rst index 61bec8300..add453f5a 100644 --- a/src/pydidas/docs/src/manuals/cmdline_apps/cmd_execute_workflow_app.rst +++ b/src/pydidas/docs/src/manuals/cmdline_apps/cmd_execute_workflow_app.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _execute_workflow_app: diff --git a/src/pydidas/docs/src/manuals/cmdline_apps/cmd_running_apps.rst b/src/pydidas/docs/src/manuals/cmdline_apps/cmd_running_apps.rst index 64d53eb62..00aa52ffc 100644 --- a/src/pydidas/docs/src/manuals/cmdline_apps/cmd_running_apps.rst +++ b/src/pydidas/docs/src/manuals/cmdline_apps/cmd_running_apps.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _running_pydidas_applications: diff --git a/src/pydidas/docs/src/manuals/cmdline_global/cmd_diffraction_exp_context.rst b/src/pydidas/docs/src/manuals/cmdline_global/cmd_diffraction_exp_context.rst index cf9276915..f2dc10730 100644 --- a/src/pydidas/docs/src/manuals/cmdline_global/cmd_diffraction_exp_context.rst +++ b/src/pydidas/docs/src/manuals/cmdline_global/cmd_diffraction_exp_context.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _diffraction_exp_context: diff --git a/src/pydidas/docs/src/manuals/cmdline_global/cmd_global.rst b/src/pydidas/docs/src/manuals/cmdline_global/cmd_global.rst index 29f6d1bac..10456e947 100644 --- a/src/pydidas/docs/src/manuals/cmdline_global/cmd_global.rst +++ b/src/pydidas/docs/src/manuals/cmdline_global/cmd_global.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 pydidas general command line tutorial diff --git a/src/pydidas/docs/src/manuals/cmdline_global/cmd_running_workflows.rst b/src/pydidas/docs/src/manuals/cmdline_global/cmd_running_workflows.rst index 54f32cbdd..167242568 100644 --- a/src/pydidas/docs/src/manuals/cmdline_global/cmd_running_workflows.rst +++ b/src/pydidas/docs/src/manuals/cmdline_global/cmd_running_workflows.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/manuals/cmdline_global/cmd_scan_context.rst b/src/pydidas/docs/src/manuals/cmdline_global/cmd_scan_context.rst index 4168afc5a..23c10f805 100644 --- a/src/pydidas/docs/src/manuals/cmdline_global/cmd_scan_context.rst +++ b/src/pydidas/docs/src/manuals/cmdline_global/cmd_scan_context.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _scan_context: diff --git a/src/pydidas/docs/src/manuals/cmdline_global/cmd_workflow_results.rst b/src/pydidas/docs/src/manuals/cmdline_global/cmd_workflow_results.rst index d82e7aaf8..e04affc66 100644 --- a/src/pydidas/docs/src/manuals/cmdline_global/cmd_workflow_results.rst +++ b/src/pydidas/docs/src/manuals/cmdline_global/cmd_workflow_results.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _workflow_results: diff --git a/src/pydidas/docs/src/manuals/cmdline_global/cmd_workflow_tree.rst b/src/pydidas/docs/src/manuals/cmdline_global/cmd_workflow_tree.rst index 6dd147798..acda02abe 100644 --- a/src/pydidas/docs/src/manuals/cmdline_global/cmd_workflow_tree.rst +++ b/src/pydidas/docs/src/manuals/cmdline_global/cmd_workflow_tree.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _workflow_tree: diff --git a/src/pydidas/docs/src/manuals/commandline_start.rst b/src/pydidas/docs/src/manuals/commandline_start.rst index 1f222b6c9..caec6114b 100644 --- a/src/pydidas/docs/src/manuals/commandline_start.rst +++ b/src/pydidas/docs/src/manuals/commandline_start.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _command_line_manual: diff --git a/src/pydidas/docs/src/manuals/global/composite_creator_app_params.rst b/src/pydidas/docs/src/manuals/global/composite_creator_app_params.rst index 255b25c19..a9f0b3ea6 100644 --- a/src/pydidas/docs/src/manuals/global/composite_creator_app_params.rst +++ b/src/pydidas/docs/src/manuals/global/composite_creator_app_params.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/manuals/global/diff_exp_context_params.rst b/src/pydidas/docs/src/manuals/global/diff_exp_context_params.rst index 34c71b3cf..6b0bfbbb6 100644 --- a/src/pydidas/docs/src/manuals/global/diff_exp_context_params.rst +++ b/src/pydidas/docs/src/manuals/global/diff_exp_context_params.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Full list of Parameters for DiffractionExperimentContext diff --git a/src/pydidas/docs/src/manuals/global/pydidas_qsettings.rst b/src/pydidas/docs/src/manuals/global/pydidas_qsettings.rst index 6bc7bb5b7..4b0e81ec6 100644 --- a/src/pydidas/docs/src/manuals/global/pydidas_qsettings.rst +++ b/src/pydidas/docs/src/manuals/global/pydidas_qsettings.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Pydidas QSettings are grouped into two main categories: 'global' settings and diff --git a/src/pydidas/docs/src/manuals/global/scan_context_params.rst b/src/pydidas/docs/src/manuals/global/scan_context_params.rst index f0fceb8b1..232c690cd 100644 --- a/src/pydidas/docs/src/manuals/global/scan_context_params.rst +++ b/src/pydidas/docs/src/manuals/global/scan_context_params.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 List of all ScanContext Parameters diff --git a/src/pydidas/docs/src/manuals/gui/beamcenter/bc_image_display.rst b/src/pydidas/docs/src/manuals/gui/beamcenter/bc_image_display.rst index 8d942d1a7..869113262 100644 --- a/src/pydidas/docs/src/manuals/gui/beamcenter/bc_image_display.rst +++ b/src/pydidas/docs/src/manuals/gui/beamcenter/bc_image_display.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/manuals/gui/beamcenter/file_input.rst b/src/pydidas/docs/src/manuals/gui/beamcenter/file_input.rst index 8d9294846..f1f4e0854 100644 --- a/src/pydidas/docs/src/manuals/gui/beamcenter/file_input.rst +++ b/src/pydidas/docs/src/manuals/gui/beamcenter/file_input.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/manuals/gui/beamcenter/point_list.rst b/src/pydidas/docs/src/manuals/gui/beamcenter/point_list.rst index 42802fbe5..6c0af7ff7 100644 --- a/src/pydidas/docs/src/manuals/gui/beamcenter/point_list.rst +++ b/src/pydidas/docs/src/manuals/gui/beamcenter/point_list.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/manuals/gui/editing_parameters.rst b/src/pydidas/docs/src/manuals/gui/editing_parameters.rst index 061138d90..3a7f096eb 100644 --- a/src/pydidas/docs/src/manuals/gui/editing_parameters.rst +++ b/src/pydidas/docs/src/manuals/gui/editing_parameters.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _gui_editing_parameters: diff --git a/src/pydidas/docs/src/manuals/gui/frames/CompositeCreatorFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/CompositeCreatorFrame.rst index b8b6a0aa3..cbcdb9248 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/CompositeCreatorFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/CompositeCreatorFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _composite_creator_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/DataBrowsingFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/DataBrowsingFrame.rst index b9259275d..34218e689 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/DataBrowsingFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/DataBrowsingFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _data_browsing_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/DefineDiffractionExpFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/DefineDiffractionExpFrame.rst index 2e294bbdb..ae6e6442d 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/DefineDiffractionExpFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/DefineDiffractionExpFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _define_diffraction_exp_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/DefineScanFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/DefineScanFrame.rst index a4542235e..38c54c73f 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/DefineScanFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/DefineScanFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _define_scan_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/DirectorySpyFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/DirectorySpyFrame.rst index 4290009fa..a6e5c083a 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/DirectorySpyFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/DirectorySpyFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _directory_spy_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/ImageMathFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/ImageMathFrame.rst index c2ced6e1b..d41f03ef6 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/ImageMathFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/ImageMathFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Image math frame diff --git a/src/pydidas/docs/src/manuals/gui/frames/PyfaiCalibFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/PyfaiCalibFrame.rst index c5a1057d2..4706aa945 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/PyfaiCalibFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/PyfaiCalibFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _pyfai_calib_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/QuickIntegrationFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/QuickIntegrationFrame.rst index 0820985ba..c7546d25f 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/QuickIntegrationFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/QuickIntegrationFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Quick Integration frame diff --git a/src/pydidas/docs/src/manuals/gui/frames/UtilitiesFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/UtilitiesFrame.rst index c97fb33f0..f9aacafc6 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/UtilitiesFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/UtilitiesFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _utilities_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/ViewResultsFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/ViewResultsFrame.rst index 329c444f1..10a131b25 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/ViewResultsFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/ViewResultsFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .._view_results_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/WorkflowEditFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/WorkflowEditFrame.rst index fd31bcfaf..00253bb09 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/WorkflowEditFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/WorkflowEditFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _workflow_edit_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/WorkflowRunFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/WorkflowRunFrame.rst index 75e029904..6e11b65b5 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/WorkflowRunFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/WorkflowRunFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _workflow_run_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/WorkflowTestFrame.rst b/src/pydidas/docs/src/manuals/gui/frames/WorkflowTestFrame.rst index bfd433459..3ba23845d 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/WorkflowTestFrame.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/WorkflowTestFrame.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _workflow_test_frame: diff --git a/src/pydidas/docs/src/manuals/gui/frames/frames_main.rst b/src/pydidas/docs/src/manuals/gui/frames/frames_main.rst index ff051d4b0..9b04fbf91 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/frames_main.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/frames_main.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _frames_main: diff --git a/src/pydidas/docs/src/manuals/gui/frames/workflow_result_export.rst b/src/pydidas/docs/src/manuals/gui/frames/workflow_result_export.rst index 8ff43b7ac..dd7bf5d3f 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/workflow_result_export.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/workflow_result_export.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. image:: images/results_export.png diff --git a/src/pydidas/docs/src/manuals/gui/frames/workflow_result_selection.rst b/src/pydidas/docs/src/manuals/gui/frames/workflow_result_selection.rst index a9f96600f..720967645 100644 --- a/src/pydidas/docs/src/manuals/gui/frames/workflow_result_selection.rst +++ b/src/pydidas/docs/src/manuals/gui/frames/workflow_result_selection.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. image:: images/results/no_selection.png diff --git a/src/pydidas/docs/src/manuals/gui/graphical_user_interface.rst b/src/pydidas/docs/src/manuals/gui/graphical_user_interface.rst index 0694ff2ef..7044fe804 100644 --- a/src/pydidas/docs/src/manuals/gui/graphical_user_interface.rst +++ b/src/pydidas/docs/src/manuals/gui/graphical_user_interface.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _graphical_user_interface: diff --git a/src/pydidas/docs/src/manuals/gui/integration_roi/select_roi.rst b/src/pydidas/docs/src/manuals/gui/integration_roi/select_roi.rst index c4d737b28..0107c0394 100644 --- a/src/pydidas/docs/src/manuals/gui/integration_roi/select_roi.rst +++ b/src/pydidas/docs/src/manuals/gui/integration_roi/select_roi.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Selecting radial integration range in image diff --git a/src/pydidas/docs/src/manuals/gui/menu.rst b/src/pydidas/docs/src/manuals/gui/menu.rst index dc15fad8e..2ac7c9907 100644 --- a/src/pydidas/docs/src/manuals/gui/menu.rst +++ b/src/pydidas/docs/src/manuals/gui/menu.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _gui_menu: diff --git a/src/pydidas/docs/src/manuals/gui/recipes/pydidas_processing.rst b/src/pydidas/docs/src/manuals/gui/recipes/pydidas_processing.rst index 51fc0c515..849a512cc 100644 --- a/src/pydidas/docs/src/manuals/gui/recipes/pydidas_processing.rst +++ b/src/pydidas/docs/src/manuals/gui/recipes/pydidas_processing.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Using the pydidas processing pipeline diff --git a/src/pydidas/docs/src/manuals/gui/silx/imageview.rst b/src/pydidas/docs/src/manuals/gui/silx/imageview.rst index 500036074..50f451698 100644 --- a/src/pydidas/docs/src/manuals/gui/silx/imageview.rst +++ b/src/pydidas/docs/src/manuals/gui/silx/imageview.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Pydidas ImageView diff --git a/src/pydidas/docs/src/manuals/gui/silx/plot1d.rst b/src/pydidas/docs/src/manuals/gui/silx/plot1d.rst index 9e8fa56ea..b4bffe244 100644 --- a/src/pydidas/docs/src/manuals/gui/silx/plot1d.rst +++ b/src/pydidas/docs/src/manuals/gui/silx/plot1d.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Pydidas 1D plot diff --git a/src/pydidas/docs/src/manuals/gui/silx/plot2d.rst b/src/pydidas/docs/src/manuals/gui/silx/plot2d.rst index 0442832b3..919dd27b7 100644 --- a/src/pydidas/docs/src/manuals/gui/silx/plot2d.rst +++ b/src/pydidas/docs/src/manuals/gui/silx/plot2d.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 Pydidas 2D plot diff --git a/src/pydidas/docs/src/manuals/gui/silx/plot2d_general.rst b/src/pydidas/docs/src/manuals/gui/silx/plot2d_general.rst index 175b2e5d1..beba2da8c 100644 --- a/src/pydidas/docs/src/manuals/gui/silx/plot2d_general.rst +++ b/src/pydidas/docs/src/manuals/gui/silx/plot2d_general.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/manuals/gui/silx/plot2d_icons.rst b/src/pydidas/docs/src/manuals/gui/silx/plot2d_icons.rst index 63dbcea57..6820033a6 100644 --- a/src/pydidas/docs/src/manuals/gui/silx/plot2d_icons.rst +++ b/src/pydidas/docs/src/manuals/gui/silx/plot2d_icons.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/manuals/gui/silx/plots.rst b/src/pydidas/docs/src/manuals/gui/silx/plots.rst index 0cf9b75c9..be55655a7 100644 --- a/src/pydidas/docs/src/manuals/gui/silx/plots.rst +++ b/src/pydidas/docs/src/manuals/gui/silx/plots.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _plots: diff --git a/src/pydidas/docs/src/manuals/gui/windows/ExportEigerPixelmaskWindow.rst b/src/pydidas/docs/src/manuals/gui/windows/ExportEigerPixelmaskWindow.rst index 88ff6c9f6..4f79ca815 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/ExportEigerPixelmaskWindow.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/ExportEigerPixelmaskWindow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _export_eiger_pixelmask_window: diff --git a/src/pydidas/docs/src/manuals/gui/windows/Hdf5BrowserWindow.rst b/src/pydidas/docs/src/manuals/gui/windows/Hdf5BrowserWindow.rst index 079a9bc21..011fece9d 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/Hdf5BrowserWindow.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/Hdf5BrowserWindow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _hdf5_browser_window: diff --git a/src/pydidas/docs/src/manuals/gui/windows/ImageSeriesOperationsWindow.rst b/src/pydidas/docs/src/manuals/gui/windows/ImageSeriesOperationsWindow.rst index bd70b6526..1d0413968 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/ImageSeriesOperationsWindow.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/ImageSeriesOperationsWindow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _series_ops_window: diff --git a/src/pydidas/docs/src/manuals/gui/windows/ManuallySetBeamcenterWindow.rst b/src/pydidas/docs/src/manuals/gui/windows/ManuallySetBeamcenterWindow.rst index bdf93117e..8ef6c1198 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/ManuallySetBeamcenterWindow.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/ManuallySetBeamcenterWindow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _manually_set_beamcenter_window: diff --git a/src/pydidas/docs/src/manuals/gui/windows/MaskEditorWindow.rst b/src/pydidas/docs/src/manuals/gui/windows/MaskEditorWindow.rst index d09a702d4..ec7c34b2a 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/MaskEditorWindow.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/MaskEditorWindow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _mask_editor_window: diff --git a/src/pydidas/docs/src/manuals/gui/windows/SelectIntegrationRegionWindow.rst b/src/pydidas/docs/src/manuals/gui/windows/SelectIntegrationRegionWindow.rst index e7a91b632..19282d614 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/SelectIntegrationRegionWindow.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/SelectIntegrationRegionWindow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _select_integration_region_window: diff --git a/src/pydidas/docs/src/manuals/gui/windows/ShowDetailedPluginResultsWindow.rst b/src/pydidas/docs/src/manuals/gui/windows/ShowDetailedPluginResultsWindow.rst index 4e937ee80..462a584b7 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/ShowDetailedPluginResultsWindow.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/ShowDetailedPluginResultsWindow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _show_detailed_plugin_results_window: diff --git a/src/pydidas/docs/src/manuals/gui/windows/TweakPluginParameterWindow.rst b/src/pydidas/docs/src/manuals/gui/windows/TweakPluginParameterWindow.rst index f50e3cce1..dcf3795a6 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/TweakPluginParameterWindow.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/TweakPluginParameterWindow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _tweak_plugin_parameters_window: diff --git a/src/pydidas/docs/src/manuals/gui/windows/_GlobalSettingsWindow.rst b/src/pydidas/docs/src/manuals/gui/windows/_GlobalSettingsWindow.rst index a35b7b65c..57fd06be7 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/_GlobalSettingsWindow.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/_GlobalSettingsWindow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _global_settings_window: diff --git a/src/pydidas/docs/src/manuals/gui/windows/_UserConfigWindow.rst b/src/pydidas/docs/src/manuals/gui/windows/_UserConfigWindow.rst index d1604fa84..4428efea7 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/_UserConfigWindow.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/_UserConfigWindow.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. role:: raw-html(raw) diff --git a/src/pydidas/docs/src/manuals/gui/windows/windows_main.rst b/src/pydidas/docs/src/manuals/gui/windows/windows_main.rst index d3559570c..0bd112349 100644 --- a/src/pydidas/docs/src/manuals/gui/windows/windows_main.rst +++ b/src/pydidas/docs/src/manuals/gui/windows/windows_main.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _windows_main: diff --git a/src/pydidas/docs/src/manuals/manuals_main.rst b/src/pydidas/docs/src/manuals/manuals_main.rst index b6adc9316..8617cadac 100644 --- a/src/pydidas/docs/src/manuals/manuals_main.rst +++ b/src/pydidas/docs/src/manuals/manuals_main.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2023 - 2024, Helmholtz-Zentrum Hereon + Copyright 2023 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 diff --git a/src/pydidas/docs/src/manuals/quickstart.rst b/src/pydidas/docs/src/manuals/quickstart.rst index 8841955b5..b2ca97d45 100644 --- a/src/pydidas/docs/src/manuals/quickstart.rst +++ b/src/pydidas/docs/src/manuals/quickstart.rst @@ -1,7 +1,7 @@ .. This file is licensed under the Creative Commons Attribution 4.0 International Public License (CC-BY-4.0) - Copyright 2024, Helmholtz-Zentrum Hereon + Copyright 2024 - 2025, Helmholtz-Zentrum Hereon SPDX-License-Identifier: CC-BY-4.0 .. _quickstart: diff --git a/src/pydidas/gui/__init__.py b/src/pydidas/gui/__init__.py index 0c5581c8f..3571d4c0c 100644 --- a/src/pydidas/gui/__init__.py +++ b/src/pydidas/gui/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/__init__.py b/src/pydidas/gui/frames/__init__.py index 0115e43b6..4013bdf06 100644 --- a/src/pydidas/gui/frames/__init__.py +++ b/src/pydidas/gui/frames/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/__init__.py b/src/pydidas/gui/frames/builders/__init__.py index f523dcdba..667d9c8c3 100644 --- a/src/pydidas/gui/frames/builders/__init__.py +++ b/src/pydidas/gui/frames/builders/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -24,7 +24,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/composite_creator_frame_builder.py b/src/pydidas/gui/frames/builders/composite_creator_frame_builder.py index ce811691a..4ebfa842a 100644 --- a/src/pydidas/gui/frames/builders/composite_creator_frame_builder.py +++ b/src/pydidas/gui/frames/builders/composite_creator_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/data_browsing_frame_builder.py b/src/pydidas/gui/frames/builders/data_browsing_frame_builder.py index 9799e0453..1df38e4bc 100644 --- a/src/pydidas/gui/frames/builders/data_browsing_frame_builder.py +++ b/src/pydidas/gui/frames/builders/data_browsing_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/define_diffraction_exp_frame_builder.py b/src/pydidas/gui/frames/builders/define_diffraction_exp_frame_builder.py index cd6c05e76..6188ddc1a 100644 --- a/src/pydidas/gui/frames/builders/define_diffraction_exp_frame_builder.py +++ b/src/pydidas/gui/frames/builders/define_diffraction_exp_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/define_scan_frame_builder.py b/src/pydidas/gui/frames/builders/define_scan_frame_builder.py index 94fce556a..73d9d6ba6 100644 --- a/src/pydidas/gui/frames/builders/define_scan_frame_builder.py +++ b/src/pydidas/gui/frames/builders/define_scan_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/directory_spy_frame_builder.py b/src/pydidas/gui/frames/builders/directory_spy_frame_builder.py index d7d1b0669..06fdd7358 100644 --- a/src/pydidas/gui/frames/builders/directory_spy_frame_builder.py +++ b/src/pydidas/gui/frames/builders/directory_spy_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/image_math_frame_builder.py b/src/pydidas/gui/frames/builders/image_math_frame_builder.py index 49caa00f1..c2ae8ac2c 100644 --- a/src/pydidas/gui/frames/builders/image_math_frame_builder.py +++ b/src/pydidas/gui/frames/builders/image_math_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/quick_integration_frame_builder.py b/src/pydidas/gui/frames/builders/quick_integration_frame_builder.py index 8028c5f0e..71da62910 100644 --- a/src/pydidas/gui/frames/builders/quick_integration_frame_builder.py +++ b/src/pydidas/gui/frames/builders/quick_integration_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/utilities_frame_builder.py b/src/pydidas/gui/frames/builders/utilities_frame_builder.py index 53ea5f9a1..b085c4ee2 100644 --- a/src/pydidas/gui/frames/builders/utilities_frame_builder.py +++ b/src/pydidas/gui/frames/builders/utilities_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/view_results_frame_builder.py b/src/pydidas/gui/frames/builders/view_results_frame_builder.py index 2102c4095..e6bf9800a 100644 --- a/src/pydidas/gui/frames/builders/view_results_frame_builder.py +++ b/src/pydidas/gui/frames/builders/view_results_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/workflow_edit_frame_builder.py b/src/pydidas/gui/frames/builders/workflow_edit_frame_builder.py index 0454e8f53..c609f3d71 100644 --- a/src/pydidas/gui/frames/builders/workflow_edit_frame_builder.py +++ b/src/pydidas/gui/frames/builders/workflow_edit_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/workflow_run_frame_builder.py b/src/pydidas/gui/frames/builders/workflow_run_frame_builder.py index cb37d5f8e..8b3fe6278 100644 --- a/src/pydidas/gui/frames/builders/workflow_run_frame_builder.py +++ b/src/pydidas/gui/frames/builders/workflow_run_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/builders/workflow_test_frame_builder.py b/src/pydidas/gui/frames/builders/workflow_test_frame_builder.py index aed74cec8..18eba8a1f 100644 --- a/src/pydidas/gui/frames/builders/workflow_test_frame_builder.py +++ b/src/pydidas/gui/frames/builders/workflow_test_frame_builder.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/composite_creator_frame.py b/src/pydidas/gui/frames/composite_creator_frame.py index c6d5dcc5d..7c2bda409 100644 --- a/src/pydidas/gui/frames/composite_creator_frame.py +++ b/src/pydidas/gui/frames/composite_creator_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/data_browsing_frame.py b/src/pydidas/gui/frames/data_browsing_frame.py index 203b38928..ea600e9d3 100644 --- a/src/pydidas/gui/frames/data_browsing_frame.py +++ b/src/pydidas/gui/frames/data_browsing_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/default_frames.py b/src/pydidas/gui/frames/default_frames.py index 11ce41ed2..cce70e1de 100644 --- a/src/pydidas/gui/frames/default_frames.py +++ b/src/pydidas/gui/frames/default_frames.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/define_diffraction_exp_frame.py b/src/pydidas/gui/frames/define_diffraction_exp_frame.py index 2b0e27d8e..4a2cf3325 100644 --- a/src/pydidas/gui/frames/define_diffraction_exp_frame.py +++ b/src/pydidas/gui/frames/define_diffraction_exp_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/define_scan_frame.py b/src/pydidas/gui/frames/define_scan_frame.py index b31703d67..d1e961acd 100644 --- a/src/pydidas/gui/frames/define_scan_frame.py +++ b/src/pydidas/gui/frames/define_scan_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/directory_spy_frame.py b/src/pydidas/gui/frames/directory_spy_frame.py index f5bccf036..18155efab 100644 --- a/src/pydidas/gui/frames/directory_spy_frame.py +++ b/src/pydidas/gui/frames/directory_spy_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/home_frame.py b/src/pydidas/gui/frames/home_frame.py index d7f43c648..487f47ebc 100644 --- a/src/pydidas/gui/frames/home_frame.py +++ b/src/pydidas/gui/frames/home_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/image_math_frame.py b/src/pydidas/gui/frames/image_math_frame.py index 6d896a78c..769086cce 100644 --- a/src/pydidas/gui/frames/image_math_frame.py +++ b/src/pydidas/gui/frames/image_math_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/pyfai_calib_frame.py b/src/pydidas/gui/frames/pyfai_calib_frame.py index 409f6e148..6a2df900d 100644 --- a/src/pydidas/gui/frames/pyfai_calib_frame.py +++ b/src/pydidas/gui/frames/pyfai_calib_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -24,7 +24,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/quick_integration_frame.py b/src/pydidas/gui/frames/quick_integration_frame.py index 0dff34bb4..6acd1d111 100644 --- a/src/pydidas/gui/frames/quick_integration_frame.py +++ b/src/pydidas/gui/frames/quick_integration_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/utilities_frame.py b/src/pydidas/gui/frames/utilities_frame.py index 2410a144e..5385693f4 100644 --- a/src/pydidas/gui/frames/utilities_frame.py +++ b/src/pydidas/gui/frames/utilities_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/view_results_frame.py b/src/pydidas/gui/frames/view_results_frame.py index 3d5d28139..1b66ddef6 100644 --- a/src/pydidas/gui/frames/view_results_frame.py +++ b/src/pydidas/gui/frames/view_results_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/workflow_edit_frame.py b/src/pydidas/gui/frames/workflow_edit_frame.py index b348460c3..85330c771 100644 --- a/src/pydidas/gui/frames/workflow_edit_frame.py +++ b/src/pydidas/gui/frames/workflow_edit_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/workflow_run_frame.py b/src/pydidas/gui/frames/workflow_run_frame.py index e33432c17..113c84060 100644 --- a/src/pydidas/gui/frames/workflow_run_frame.py +++ b/src/pydidas/gui/frames/workflow_run_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/frames/workflow_test_frame.py b/src/pydidas/gui/frames/workflow_test_frame.py index 5454a0ca8..6c0f3d8ef 100644 --- a/src/pydidas/gui/frames/workflow_test_frame.py +++ b/src/pydidas/gui/frames/workflow_test_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/gui_excepthook_.py b/src/pydidas/gui/gui_excepthook_.py index d0a8ab0fe..42fc989ec 100644 --- a/src/pydidas/gui/gui_excepthook_.py +++ b/src/pydidas/gui/gui_excepthook_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/main_menu.py b/src/pydidas/gui/main_menu.py index e4fdf6eea..21c503dab 100644 --- a/src/pydidas/gui/main_menu.py +++ b/src/pydidas/gui/main_menu.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/main_window.py b/src/pydidas/gui/main_window.py index 30b0bb402..817901b4a 100644 --- a/src/pydidas/gui/main_window.py +++ b/src/pydidas/gui/main_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/managers/__init__.py b/src/pydidas/gui/managers/__init__.py index 90e70e8ef..3d52d2c16 100644 --- a/src/pydidas/gui/managers/__init__.py +++ b/src/pydidas/gui/managers/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/managers/workflow_tree_edit_manager.py b/src/pydidas/gui/managers/workflow_tree_edit_manager.py index d68cb4beb..98af34a04 100644 --- a/src/pydidas/gui/managers/workflow_tree_edit_manager.py +++ b/src/pydidas/gui/managers/workflow_tree_edit_manager.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/mixins/__init__.py b/src/pydidas/gui/mixins/__init__.py index 848f422ab..f1f76c18c 100644 --- a/src/pydidas/gui/mixins/__init__.py +++ b/src/pydidas/gui/mixins/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/mixins/silx_plotwindow_mixin.py b/src/pydidas/gui/mixins/silx_plotwindow_mixin.py index 1cd41b4d2..210b8596e 100644 --- a/src/pydidas/gui/mixins/silx_plotwindow_mixin.py +++ b/src/pydidas/gui/mixins/silx_plotwindow_mixin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/mixins/view_results_mixin.py b/src/pydidas/gui/mixins/view_results_mixin.py index 9160a20eb..5656b8524 100644 --- a/src/pydidas/gui/mixins/view_results_mixin.py +++ b/src/pydidas/gui/mixins/view_results_mixin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2022 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2022 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2022 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2022 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/start_pydidas_gui_.py b/src/pydidas/gui/start_pydidas_gui_.py index 678550906..ce64781f3 100644 --- a/src/pydidas/gui/start_pydidas_gui_.py +++ b/src/pydidas/gui/start_pydidas_gui_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/utils/__init__.py b/src/pydidas/gui/utils/__init__.py index 2b1096479..e4cc30225 100644 --- a/src/pydidas/gui/utils/__init__.py +++ b/src/pydidas/gui/utils/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/utils/main_menu_utils.py b/src/pydidas/gui/utils/main_menu_utils.py index 2513e780d..9edaefb02 100644 --- a/src/pydidas/gui/utils/main_menu_utils.py +++ b/src/pydidas/gui/utils/main_menu_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/gui/utils/main_window_utils.py b/src/pydidas/gui/utils/main_window_utils.py index d15792f68..25dfeca72 100644 --- a/src/pydidas/gui/utils/main_window_utils.py +++ b/src/pydidas/gui/utils/main_window_utils.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/logging_level.py b/src/pydidas/logging_level.py index 4360095c1..6744bc04d 100644 --- a/src/pydidas/logging_level.py +++ b/src/pydidas/logging_level.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/managers/__init__.py b/src/pydidas/managers/__init__.py index 01efa3766..889f84d19 100644 --- a/src/pydidas/managers/__init__.py +++ b/src/pydidas/managers/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/managers/composite_image_manager.py b/src/pydidas/managers/composite_image_manager.py index 309598a54..c96e3eb6e 100644 --- a/src/pydidas/managers/composite_image_manager.py +++ b/src/pydidas/managers/composite_image_manager.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/managers/filelist_manager.py b/src/pydidas/managers/filelist_manager.py index ce9f64ba1..c833ece38 100644 --- a/src/pydidas/managers/filelist_manager.py +++ b/src/pydidas/managers/filelist_manager.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/managers/image_metadata_manager.py b/src/pydidas/managers/image_metadata_manager.py index 148dccfb5..0b78ed955 100644 --- a/src/pydidas/managers/image_metadata_manager.py +++ b/src/pydidas/managers/image_metadata_manager.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/multiprocessing/__init__.py b/src/pydidas/multiprocessing/__init__.py index b68f2451f..5dba49587 100644 --- a/src/pydidas/multiprocessing/__init__.py +++ b/src/pydidas/multiprocessing/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/multiprocessing/app_processor_.py b/src/pydidas/multiprocessing/app_processor_.py index 101b6ceee..58baacd4a 100644 --- a/src/pydidas/multiprocessing/app_processor_.py +++ b/src/pydidas/multiprocessing/app_processor_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/multiprocessing/app_runner.py b/src/pydidas/multiprocessing/app_runner.py index 84ab8b985..734324663 100644 --- a/src/pydidas/multiprocessing/app_runner.py +++ b/src/pydidas/multiprocessing/app_runner.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/multiprocessing/processor_.py b/src/pydidas/multiprocessing/processor_.py index b608e0f56..a04803886 100644 --- a/src/pydidas/multiprocessing/processor_.py +++ b/src/pydidas/multiprocessing/processor_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/multiprocessing/pydidas_process.py b/src/pydidas/multiprocessing/pydidas_process.py index 3e02cb179..a5c7038be 100644 --- a/src/pydidas/multiprocessing/pydidas_process.py +++ b/src/pydidas/multiprocessing/pydidas_process.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/__init__.py b/src/pydidas/plugins/__init__.py index d503f25c1..1e40aeeee 100644 --- a/src/pydidas/plugins/__init__.py +++ b/src/pydidas/plugins/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -23,7 +23,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/base_fit_plugin.py b/src/pydidas/plugins/base_fit_plugin.py index 6af6b4e38..cb41b289e 100644 --- a/src/pydidas/plugins/base_fit_plugin.py +++ b/src/pydidas/plugins/base_fit_plugin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/base_input_plugin.py b/src/pydidas/plugins/base_input_plugin.py index bfcbb19ba..f3704bd96 100644 --- a/src/pydidas/plugins/base_input_plugin.py +++ b/src/pydidas/plugins/base_input_plugin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/base_input_plugin_1d.py b/src/pydidas/plugins/base_input_plugin_1d.py index a4f896706..0182edfd3 100644 --- a/src/pydidas/plugins/base_input_plugin_1d.py +++ b/src/pydidas/plugins/base_input_plugin_1d.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/base_output_plugin.py b/src/pydidas/plugins/base_output_plugin.py index e779c62e1..97271ba80 100644 --- a/src/pydidas/plugins/base_output_plugin.py +++ b/src/pydidas/plugins/base_output_plugin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/base_plugin.py b/src/pydidas/plugins/base_plugin.py index bf070c98b..fee0469f6 100644 --- a/src/pydidas/plugins/base_plugin.py +++ b/src/pydidas/plugins/base_plugin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/base_proc_plugin.py b/src/pydidas/plugins/base_proc_plugin.py index 165d2eed6..0099f92d1 100644 --- a/src/pydidas/plugins/base_proc_plugin.py +++ b/src/pydidas/plugins/base_proc_plugin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/plugin_collection.py b/src/pydidas/plugins/plugin_collection.py index f2b47b162..a6996b97c 100644 --- a/src/pydidas/plugins/plugin_collection.py +++ b/src/pydidas/plugins/plugin_collection.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/plugin_getter_.py b/src/pydidas/plugins/plugin_getter_.py index ee15ad7ab..59bf850f1 100644 --- a/src/pydidas/plugins/plugin_getter_.py +++ b/src/pydidas/plugins/plugin_getter_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/plugin_registry.py b/src/pydidas/plugins/plugin_registry.py index a34f09dc2..f1572a0f0 100644 --- a/src/pydidas/plugins/plugin_registry.py +++ b/src/pydidas/plugins/plugin_registry.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -23,7 +23,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/plugins/pyfai_integration_base.py b/src/pydidas/plugins/pyfai_integration_base.py index ec0baa3a5..67d54ba5b 100644 --- a/src/pydidas/plugins/pyfai_integration_base.py +++ b/src/pydidas/plugins/pyfai_integration_base.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/resources/__init__.py b/src/pydidas/resources/__init__.py index 18e74715e..f8ee8cc2e 100644 --- a/src/pydidas/resources/__init__.py +++ b/src/pydidas/resources/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/resources/pydidas_icons.py b/src/pydidas/resources/pydidas_icons.py index be32cc68a..f7af58525 100644 --- a/src/pydidas/resources/pydidas_icons.py +++ b/src/pydidas/resources/pydidas_icons.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/resources/pydidas_images.py b/src/pydidas/resources/pydidas_images.py index 0d6ad8728..578fbf045 100644 --- a/src/pydidas/resources/pydidas_images.py +++ b/src/pydidas/resources/pydidas_images.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/resources/pydidas_svg_logos.py b/src/pydidas/resources/pydidas_svg_logos.py index 10b681963..646da8620 100644 --- a/src/pydidas/resources/pydidas_svg_logos.py +++ b/src/pydidas/resources/pydidas_svg_logos.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/unittest_objects/__init__.py b/src/pydidas/unittest_objects/__init__.py index 28bb32015..a5fd9ffb7 100644 --- a/src/pydidas/unittest_objects/__init__.py +++ b/src/pydidas/unittest_objects/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/unittest_objects/create_dataset_.py b/src/pydidas/unittest_objects/create_dataset_.py index d65491481..170200c8f 100644 --- a/src/pydidas/unittest_objects/create_dataset_.py +++ b/src/pydidas/unittest_objects/create_dataset_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify diff --git a/src/pydidas/unittest_objects/create_dummy_plugins.py b/src/pydidas/unittest_objects/create_dummy_plugins.py index 6cf390ba8..3fb457dd2 100644 --- a/src/pydidas/unittest_objects/create_dummy_plugins.py +++ b/src/pydidas/unittest_objects/create_dummy_plugins.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/unittest_objects/create_hdf5_io_file_.py b/src/pydidas/unittest_objects/create_hdf5_io_file_.py index ff90b5d0e..ca4d5448a 100644 --- a/src/pydidas/unittest_objects/create_hdf5_io_file_.py +++ b/src/pydidas/unittest_objects/create_hdf5_io_file_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/unittest_objects/dummy_getter_.py b/src/pydidas/unittest_objects/dummy_getter_.py index eacc30d20..cf74297eb 100644 --- a/src/pydidas/unittest_objects/dummy_getter_.py +++ b/src/pydidas/unittest_objects/dummy_getter_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/unittest_objects/dummy_loader.py b/src/pydidas/unittest_objects/dummy_loader.py index 4f93a37e3..00bc39be8 100644 --- a/src/pydidas/unittest_objects/dummy_loader.py +++ b/src/pydidas/unittest_objects/dummy_loader.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/unittest_objects/dummy_proc.py b/src/pydidas/unittest_objects/dummy_proc.py index 42f6b32f1..46132005f 100644 --- a/src/pydidas/unittest_objects/dummy_proc.py +++ b/src/pydidas/unittest_objects/dummy_proc.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/unittest_objects/dummy_proc_new_dataset.py b/src/pydidas/unittest_objects/dummy_proc_new_dataset.py index 43900475a..044e2eed0 100644 --- a/src/pydidas/unittest_objects/dummy_proc_new_dataset.py +++ b/src/pydidas/unittest_objects/dummy_proc_new_dataset.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/unittest_objects/local_plugin_collection.py b/src/pydidas/unittest_objects/local_plugin_collection.py index f16ad25b7..d3359d91f 100644 --- a/src/pydidas/unittest_objects/local_plugin_collection.py +++ b/src/pydidas/unittest_objects/local_plugin_collection.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/unittest_objects/mp_test_app.py b/src/pydidas/unittest_objects/mp_test_app.py index 4ef2114fe..71000253d 100644 --- a/src/pydidas/unittest_objects/mp_test_app.py +++ b/src/pydidas/unittest_objects/mp_test_app.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/unittest_objects/mp_test_app_wo_tasks.py b/src/pydidas/unittest_objects/mp_test_app_wo_tasks.py index 2987fb4e2..d78ce8b04 100644 --- a/src/pydidas/unittest_objects/mp_test_app_wo_tasks.py +++ b/src/pydidas/unittest_objects/mp_test_app_wo_tasks.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/version.py b/src/pydidas/version.py index eab1552fb..5fc1cd437 100644 --- a/src/pydidas/version.py +++ b/src/pydidas/version.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __version__ = "24.09.19" __maintainer__ = "Malte Storm" diff --git a/src/pydidas/widgets/__init__.py b/src/pydidas/widgets/__init__.py index 3ca7cbf7a..b6fcc7d2e 100644 --- a/src/pydidas/widgets/__init__.py +++ b/src/pydidas/widgets/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/controllers/__init__.py b/src/pydidas/widgets/controllers/__init__.py index 202a502d7..19aa9767d 100644 --- a/src/pydidas/widgets/controllers/__init__.py +++ b/src/pydidas/widgets/controllers/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __version__ = "0.0.0" __maintainer__ = "Malte Storm" diff --git a/src/pydidas/widgets/controllers/manually_set_beamcenter_controller.py b/src/pydidas/widgets/controllers/manually_set_beamcenter_controller.py index fd3eac959..fc9bd9499 100644 --- a/src/pydidas/widgets/controllers/manually_set_beamcenter_controller.py +++ b/src/pydidas/widgets/controllers/manually_set_beamcenter_controller.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/controllers/manually_set_integration_roi_controller.py b/src/pydidas/widgets/controllers/manually_set_integration_roi_controller.py index 8b15e8556..0f80790ce 100644 --- a/src/pydidas/widgets/controllers/manually_set_integration_roi_controller.py +++ b/src/pydidas/widgets/controllers/manually_set_integration_roi_controller.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/dialogues/__init__.py b/src/pydidas/widgets/dialogues/__init__.py index ff6433e36..c25dac386 100644 --- a/src/pydidas/widgets/dialogues/__init__.py +++ b/src/pydidas/widgets/dialogues/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/dialogues/acknowledge_box.py b/src/pydidas/widgets/dialogues/acknowledge_box.py index b5c43f821..4d41799f1 100644 --- a/src/pydidas/widgets/dialogues/acknowledge_box.py +++ b/src/pydidas/widgets/dialogues/acknowledge_box.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/dialogues/critical_warning_.py b/src/pydidas/widgets/dialogues/critical_warning_.py index 38bb80202..efcdd2e28 100644 --- a/src/pydidas/widgets/dialogues/critical_warning_.py +++ b/src/pydidas/widgets/dialogues/critical_warning_.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/dialogues/error_message_box.py b/src/pydidas/widgets/dialogues/error_message_box.py index 2bec38381..09d60246e 100644 --- a/src/pydidas/widgets/dialogues/error_message_box.py +++ b/src/pydidas/widgets/dialogues/error_message_box.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/dialogues/hdf5_dataset_selection_popup.py b/src/pydidas/widgets/dialogues/hdf5_dataset_selection_popup.py index bad0ef33b..07316e6ec 100644 --- a/src/pydidas/widgets/dialogues/hdf5_dataset_selection_popup.py +++ b/src/pydidas/widgets/dialogues/hdf5_dataset_selection_popup.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/dialogues/pydidas_exception_message_box.py b/src/pydidas/widgets/dialogues/pydidas_exception_message_box.py index 625f524fe..66bb5d7db 100644 --- a/src/pydidas/widgets/dialogues/pydidas_exception_message_box.py +++ b/src/pydidas/widgets/dialogues/pydidas_exception_message_box.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/dialogues/question_box.py b/src/pydidas/widgets/dialogues/question_box.py index 0da0ab50d..fc7e01f77 100644 --- a/src/pydidas/widgets/dialogues/question_box.py +++ b/src/pydidas/widgets/dialogues/question_box.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/dialogues/warning_box.py b/src/pydidas/widgets/dialogues/warning_box.py index dab3971fe..eef3cf950 100644 --- a/src/pydidas/widgets/dialogues/warning_box.py +++ b/src/pydidas/widgets/dialogues/warning_box.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/__init__.py b/src/pydidas/widgets/factory/__init__.py index 4b32564ca..2589b30fd 100644 --- a/src/pydidas/widgets/factory/__init__.py +++ b/src/pydidas/widgets/factory/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/create_widgets_mixin.py b/src/pydidas/widgets/factory/create_widgets_mixin.py index 73c6d2fd1..18e9fab52 100644 --- a/src/pydidas/widgets/factory/create_widgets_mixin.py +++ b/src/pydidas/widgets/factory/create_widgets_mixin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/empty_widget.py b/src/pydidas/widgets/factory/empty_widget.py index b7323d1ef..888739952 100644 --- a/src/pydidas/widgets/factory/empty_widget.py +++ b/src/pydidas/widgets/factory/empty_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/pydidas_checkbox.py b/src/pydidas/widgets/factory/pydidas_checkbox.py index 6aa53f7f0..b05b71458 100644 --- a/src/pydidas/widgets/factory/pydidas_checkbox.py +++ b/src/pydidas/widgets/factory/pydidas_checkbox.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/pydidas_combobox.py b/src/pydidas/widgets/factory/pydidas_combobox.py index 13e3c2279..001ae673f 100644 --- a/src/pydidas/widgets/factory/pydidas_combobox.py +++ b/src/pydidas/widgets/factory/pydidas_combobox.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/pydidas_label.py b/src/pydidas/widgets/factory/pydidas_label.py index cef21c840..3781fcfac 100644 --- a/src/pydidas/widgets/factory/pydidas_label.py +++ b/src/pydidas/widgets/factory/pydidas_label.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/pydidas_lineedit.py b/src/pydidas/widgets/factory/pydidas_lineedit.py index fadcf3d47..fc2ad1367 100644 --- a/src/pydidas/widgets/factory/pydidas_lineedit.py +++ b/src/pydidas/widgets/factory/pydidas_lineedit.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/pydidas_pushbutton.py b/src/pydidas/widgets/factory/pydidas_pushbutton.py index 0f9798bcf..7f5f1f30e 100644 --- a/src/pydidas/widgets/factory/pydidas_pushbutton.py +++ b/src/pydidas/widgets/factory/pydidas_pushbutton.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/pydidas_widget_mixin.py b/src/pydidas/widgets/factory/pydidas_widget_mixin.py index 56d882a27..6b3e42080 100644 --- a/src/pydidas/widgets/factory/pydidas_widget_mixin.py +++ b/src/pydidas/widgets/factory/pydidas_widget_mixin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/radio_button_group.py b/src/pydidas/widgets/factory/radio_button_group.py index 9bd69816b..cdaa81f22 100644 --- a/src/pydidas/widgets/factory/radio_button_group.py +++ b/src/pydidas/widgets/factory/radio_button_group.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/factory/square_button.py b/src/pydidas/widgets/factory/square_button.py index dc4bce0ac..eac143647 100644 --- a/src/pydidas/widgets/factory/square_button.py +++ b/src/pydidas/widgets/factory/square_button.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/file_dialog.py b/src/pydidas/widgets/file_dialog.py index 9d765cb96..956fdeff5 100644 --- a/src/pydidas/widgets/file_dialog.py +++ b/src/pydidas/widgets/file_dialog.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/framework/__init__.py b/src/pydidas/widgets/framework/__init__.py index d0f74d982..81142b994 100644 --- a/src/pydidas/widgets/framework/__init__.py +++ b/src/pydidas/widgets/framework/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/framework/base_frame.py b/src/pydidas/widgets/framework/base_frame.py index 5767bf928..ec106a4b1 100644 --- a/src/pydidas/widgets/framework/base_frame.py +++ b/src/pydidas/widgets/framework/base_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/framework/base_frame_with_app.py b/src/pydidas/widgets/framework/base_frame_with_app.py index 69fc577c1..0757c0485 100644 --- a/src/pydidas/widgets/framework/base_frame_with_app.py +++ b/src/pydidas/widgets/framework/base_frame_with_app.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -24,7 +24,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/framework/font_scaling_toolbar.py b/src/pydidas/widgets/framework/font_scaling_toolbar.py index 4aa7adcc2..e3dd6495b 100644 --- a/src/pydidas/widgets/framework/font_scaling_toolbar.py +++ b/src/pydidas/widgets/framework/font_scaling_toolbar.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/framework/pydidas_frame_stack.py b/src/pydidas/widgets/framework/pydidas_frame_stack.py index 732b8b078..24ced6b74 100644 --- a/src/pydidas/widgets/framework/pydidas_frame_stack.py +++ b/src/pydidas/widgets/framework/pydidas_frame_stack.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -24,7 +24,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/framework/pydidas_status_widget.py b/src/pydidas/widgets/framework/pydidas_status_widget.py index 844976fd4..6752c34af 100644 --- a/src/pydidas/widgets/framework/pydidas_status_widget.py +++ b/src/pydidas/widgets/framework/pydidas_status_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/framework/pydidas_window.py b/src/pydidas/widgets/framework/pydidas_window.py index fa7c703de..dd7253ce2 100644 --- a/src/pydidas/widgets/framework/pydidas_window.py +++ b/src/pydidas/widgets/framework/pydidas_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/misc/__init__.py b/src/pydidas/widgets/misc/__init__.py index d601b7bfb..0989fca2e 100644 --- a/src/pydidas/widgets/misc/__init__.py +++ b/src/pydidas/widgets/misc/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __version__ = "0.0.0" __maintainer__ = "Malte Storm" diff --git a/src/pydidas/widgets/misc/line_edit_with_icon.py b/src/pydidas/widgets/misc/line_edit_with_icon.py index 76152b087..e6d4da3f6 100644 --- a/src/pydidas/widgets/misc/line_edit_with_icon.py +++ b/src/pydidas/widgets/misc/line_edit_with_icon.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/misc/points_for_beamcenter_widget.py b/src/pydidas/widgets/misc/points_for_beamcenter_widget.py index 4d6386146..f0ef4ae6b 100644 --- a/src/pydidas/widgets/misc/points_for_beamcenter_widget.py +++ b/src/pydidas/widgets/misc/points_for_beamcenter_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/misc/read_only_text_widget.py b/src/pydidas/widgets/misc/read_only_text_widget.py index 50b212a5a..0da9cd68c 100644 --- a/src/pydidas/widgets/misc/read_only_text_widget.py +++ b/src/pydidas/widgets/misc/read_only_text_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/misc/select_image_frame_widget.py b/src/pydidas/widgets/misc/select_image_frame_widget.py index 6aaebab73..8c337f662 100644 --- a/src/pydidas/widgets/misc/select_image_frame_widget.py +++ b/src/pydidas/widgets/misc/select_image_frame_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/misc/show_integration_roi_params_widget.py b/src/pydidas/widgets/misc/show_integration_roi_params_widget.py index 46bb74271..11bc1eaa3 100644 --- a/src/pydidas/widgets/misc/show_integration_roi_params_widget.py +++ b/src/pydidas/widgets/misc/show_integration_roi_params_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/__init__.py b/src/pydidas/widgets/parameter_config/__init__.py index b62ae7e64..67a0e718a 100644 --- a/src/pydidas/widgets/parameter_config/__init__.py +++ b/src/pydidas/widgets/parameter_config/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/base_param_io_widget_mixin.py b/src/pydidas/widgets/parameter_config/base_param_io_widget_mixin.py index 0c147569a..1804675a0 100644 --- a/src/pydidas/widgets/parameter_config/base_param_io_widget_mixin.py +++ b/src/pydidas/widgets/parameter_config/base_param_io_widget_mixin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/edit_plugin_parameters_widget.py b/src/pydidas/widgets/parameter_config/edit_plugin_parameters_widget.py index f80d65a77..386d4453c 100644 --- a/src/pydidas/widgets/parameter_config/edit_plugin_parameters_widget.py +++ b/src/pydidas/widgets/parameter_config/edit_plugin_parameters_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/param_io_widget_checkbox.py b/src/pydidas/widgets/parameter_config/param_io_widget_checkbox.py index c42700671..46315d3e3 100644 --- a/src/pydidas/widgets/parameter_config/param_io_widget_checkbox.py +++ b/src/pydidas/widgets/parameter_config/param_io_widget_checkbox.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Nonni Heere" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/param_io_widget_combo_box.py b/src/pydidas/widgets/parameter_config/param_io_widget_combo_box.py index 4a471664d..9f35f77a9 100644 --- a/src/pydidas/widgets/parameter_config/param_io_widget_combo_box.py +++ b/src/pydidas/widgets/parameter_config/param_io_widget_combo_box.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ class is used for all Parameters with predefined choices. """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/param_io_widget_file.py b/src/pydidas/widgets/parameter_config/param_io_widget_file.py index 9c93b6b2c..7ac1f14d2 100644 --- a/src/pydidas/widgets/parameter_config/param_io_widget_file.py +++ b/src/pydidas/widgets/parameter_config/param_io_widget_file.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/param_io_widget_hdf5key.py b/src/pydidas/widgets/parameter_config/param_io_widget_hdf5key.py index 3dac82014..89cafd315 100644 --- a/src/pydidas/widgets/parameter_config/param_io_widget_hdf5key.py +++ b/src/pydidas/widgets/parameter_config/param_io_widget_hdf5key.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ class is used exclusively for editing Hdf5key Parameters because of the """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/param_io_widget_lineedit.py b/src/pydidas/widgets/parameter_config/param_io_widget_lineedit.py index 117940f9a..ef4d7b601 100644 --- a/src/pydidas/widgets/parameter_config/param_io_widget_lineedit.py +++ b/src/pydidas/widgets/parameter_config/param_io_widget_lineedit.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/param_io_widget_with_button.py b/src/pydidas/widgets/parameter_config/param_io_widget_with_button.py index 16eddf062..5841f8772 100644 --- a/src/pydidas/widgets/parameter_config/param_io_widget_with_button.py +++ b/src/pydidas/widgets/parameter_config/param_io_widget_with_button.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/parameter_edit_canvas.py b/src/pydidas/widgets/parameter_config/parameter_edit_canvas.py index 9fbbdf0d6..55f6b4944 100644 --- a/src/pydidas/widgets/parameter_config/parameter_edit_canvas.py +++ b/src/pydidas/widgets/parameter_config/parameter_edit_canvas.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/parameter_widget.py b/src/pydidas/widgets/parameter_config/parameter_widget.py index bc82ac316..a93569144 100644 --- a/src/pydidas/widgets/parameter_config/parameter_widget.py +++ b/src/pydidas/widgets/parameter_config/parameter_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/parameter_config/parameter_widgets_mixin.py b/src/pydidas/widgets/parameter_config/parameter_widgets_mixin.py index 120c13842..283cbed48 100644 --- a/src/pydidas/widgets/parameter_config/parameter_widgets_mixin.py +++ b/src/pydidas/widgets/parameter_config/parameter_widgets_mixin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/plugin_config_widgets/__init__.py b/src/pydidas/widgets/plugin_config_widgets/__init__.py index 3dda579ac..4d36b2ac1 100644 --- a/src/pydidas/widgets/plugin_config_widgets/__init__.py +++ b/src/pydidas/widgets/plugin_config_widgets/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -19,7 +19,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/plugin_config_widgets/fit_plugin_config_widget.py b/src/pydidas/widgets/plugin_config_widgets/fit_plugin_config_widget.py index 644228308..b1fd07f29 100644 --- a/src/pydidas/widgets/plugin_config_widgets/fit_plugin_config_widget.py +++ b/src/pydidas/widgets/plugin_config_widgets/fit_plugin_config_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/plugin_config_widgets/pyfai_integration_config_widget.py b/src/pydidas/widgets/plugin_config_widgets/pyfai_integration_config_widget.py index 44d4596e5..c6665f910 100644 --- a/src/pydidas/widgets/plugin_config_widgets/pyfai_integration_config_widget.py +++ b/src/pydidas/widgets/plugin_config_widgets/pyfai_integration_config_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/plugin_config_widgets/subtract_bg_image_config_widget.py b/src/pydidas/widgets/plugin_config_widgets/subtract_bg_image_config_widget.py index 4679bb0b8..107c53055 100644 --- a/src/pydidas/widgets/plugin_config_widgets/subtract_bg_image_config_widget.py +++ b/src/pydidas/widgets/plugin_config_widgets/subtract_bg_image_config_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/scroll_area.py b/src/pydidas/widgets/scroll_area.py index b9db0de65..d78bc39b4 100644 --- a/src/pydidas/widgets/scroll_area.py +++ b/src/pydidas/widgets/scroll_area.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/selection/__init__.py b/src/pydidas/widgets/selection/__init__.py index d3405657c..b4ed8d988 100644 --- a/src/pydidas/widgets/selection/__init__.py +++ b/src/pydidas/widgets/selection/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/selection/common_selection.py b/src/pydidas/widgets/selection/common_selection.py index 511f87b87..66e5b206e 100644 --- a/src/pydidas/widgets/selection/common_selection.py +++ b/src/pydidas/widgets/selection/common_selection.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/selection/directory_explorer.py b/src/pydidas/widgets/selection/directory_explorer.py index e65f1ada7..9a38df789 100644 --- a/src/pydidas/widgets/selection/directory_explorer.py +++ b/src/pydidas/widgets/selection/directory_explorer.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/selection/hdf5_dataset_selector.py b/src/pydidas/widgets/selection/hdf5_dataset_selector.py index 2710924c6..532089125 100644 --- a/src/pydidas/widgets/selection/hdf5_dataset_selector.py +++ b/src/pydidas/widgets/selection/hdf5_dataset_selector.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/selection/raw_metadata_selector.py b/src/pydidas/widgets/selection/raw_metadata_selector.py index a9601bb9c..144063396 100644 --- a/src/pydidas/widgets/selection/raw_metadata_selector.py +++ b/src/pydidas/widgets/selection/raw_metadata_selector.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/selection/result_selection_widget.py b/src/pydidas/widgets/selection/result_selection_widget.py index d31cd3e72..dedc4ed0d 100644 --- a/src/pydidas/widgets/selection/result_selection_widget.py +++ b/src/pydidas/widgets/selection/result_selection_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/__init__.py b/src/pydidas/widgets/silx_plot/__init__.py index c2c3945ad..1af065ec3 100644 --- a/src/pydidas/widgets/silx_plot/__init__.py +++ b/src/pydidas/widgets/silx_plot/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/_coordinate_transform_button.py b/src/pydidas/widgets/silx_plot/_coordinate_transform_button.py index 3269570d3..82d6366a0 100644 --- a/src/pydidas/widgets/silx_plot/_coordinate_transform_button.py +++ b/src/pydidas/widgets/silx_plot/_coordinate_transform_button.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/_data_views.py b/src/pydidas/widgets/silx_plot/_data_views.py index 62f8caf80..31d27e2d8 100644 --- a/src/pydidas/widgets/silx_plot/_data_views.py +++ b/src/pydidas/widgets/silx_plot/_data_views.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/_silx_data_viewer.py b/src/pydidas/widgets/silx_plot/_silx_data_viewer.py index 76a919aef..1d9285923 100644 --- a/src/pydidas/widgets/silx_plot/_silx_data_viewer.py +++ b/src/pydidas/widgets/silx_plot/_silx_data_viewer.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/_silx_tickbar.py b/src/pydidas/widgets/silx_plot/_silx_tickbar.py index 45e398ddb..b326b953f 100644 --- a/src/pydidas/widgets/silx_plot/_silx_tickbar.py +++ b/src/pydidas/widgets/silx_plot/_silx_tickbar.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -23,7 +23,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/_special_plot_types_button.py b/src/pydidas/widgets/silx_plot/_special_plot_types_button.py index f9c10b9b5..659fe20fe 100644 --- a/src/pydidas/widgets/silx_plot/_special_plot_types_button.py +++ b/src/pydidas/widgets/silx_plot/_special_plot_types_button.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/pydidas_masktools_widget.py b/src/pydidas/widgets/silx_plot/pydidas_masktools_widget.py index 25a0d0e8f..cb2b02210 100644 --- a/src/pydidas/widgets/silx_plot/pydidas_masktools_widget.py +++ b/src/pydidas/widgets/silx_plot/pydidas_masktools_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/pydidas_plot1d.py b/src/pydidas/widgets/silx_plot/pydidas_plot1d.py index b038f7c39..d24c076ca 100644 --- a/src/pydidas/widgets/silx_plot/pydidas_plot1d.py +++ b/src/pydidas/widgets/silx_plot/pydidas_plot1d.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/pydidas_plot2d.py b/src/pydidas/widgets/silx_plot/pydidas_plot2d.py index 43e5fee1a..119f54b31 100644 --- a/src/pydidas/widgets/silx_plot/pydidas_plot2d.py +++ b/src/pydidas/widgets/silx_plot/pydidas_plot2d.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/pydidas_plot2d_with_integration_regions.py b/src/pydidas/widgets/silx_plot/pydidas_plot2d_with_integration_regions.py index e598e260e..86072e225 100644 --- a/src/pydidas/widgets/silx_plot/pydidas_plot2d_with_integration_regions.py +++ b/src/pydidas/widgets/silx_plot/pydidas_plot2d_with_integration_regions.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -23,7 +23,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/pydidas_plot_stack.py b/src/pydidas/widgets/silx_plot/pydidas_plot_stack.py index 32b3373e7..c73d7bbcd 100644 --- a/src/pydidas/widgets/silx_plot/pydidas_plot_stack.py +++ b/src/pydidas/widgets/silx_plot/pydidas_plot_stack.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/pydidas_position_info.py b/src/pydidas/widgets/silx_plot/pydidas_position_info.py index a5e727cf2..757ab33d6 100644 --- a/src/pydidas/widgets/silx_plot/pydidas_position_info.py +++ b/src/pydidas/widgets/silx_plot/pydidas_position_info.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/silx_actions.py b/src/pydidas/widgets/silx_plot/silx_actions.py index 673bcb175..211d6f00b 100644 --- a/src/pydidas/widgets/silx_plot/silx_actions.py +++ b/src/pydidas/widgets/silx_plot/silx_actions.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2022 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2022 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2022 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2022 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/silx_plot/utilities.py b/src/pydidas/widgets/silx_plot/utilities.py index 57c4d6e87..d8aeca41d 100644 --- a/src/pydidas/widgets/silx_plot/utilities.py +++ b/src/pydidas/widgets/silx_plot/utilities.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/utilities.py b/src/pydidas/widgets/utilities.py index 325a7ccf5..d100a5bca 100644 --- a/src/pydidas/widgets/utilities.py +++ b/src/pydidas/widgets/utilities.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/widget_with_parameter_collection.py b/src/pydidas/widgets/widget_with_parameter_collection.py index cf3505b87..beb8a079c 100644 --- a/src/pydidas/widgets/widget_with_parameter_collection.py +++ b/src/pydidas/widgets/widget_with_parameter_collection.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/__init__.py b/src/pydidas/widgets/windows/__init__.py index 1d8d9d28f..ce162211e 100644 --- a/src/pydidas/widgets/windows/__init__.py +++ b/src/pydidas/widgets/windows/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/about_window.py b/src/pydidas/widgets/windows/about_window.py index 148f186e3..042998a5e 100644 --- a/src/pydidas/widgets/windows/about_window.py +++ b/src/pydidas/widgets/windows/about_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" @@ -50,7 +50,7 @@ "A small section of code is adapted from code which is distributed with other, " "more permissive licenses and copyrighted by their respective " "owners (particularly the ESRF for pyFAI and silx)." - "

pydidas Copyright 2024, Helmholtz-Zentrum Hereon" + "

pydidas Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" "

pydidas homepage: " "pydidas.hereon.de" "

pydidas GitHub: " diff --git a/src/pydidas/widgets/windows/convert_fit2d_geometry.py b/src/pydidas/widgets/windows/convert_fit2d_geometry.py index d77a0fc2b..d997ab076 100644 --- a/src/pydidas/widgets/windows/convert_fit2d_geometry.py +++ b/src/pydidas/widgets/windows/convert_fit2d_geometry.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/export_eiger_pixelmask.py b/src/pydidas/widgets/windows/export_eiger_pixelmask.py index 3280bad78..525524dfb 100644 --- a/src/pydidas/widgets/windows/export_eiger_pixelmask.py +++ b/src/pydidas/widgets/windows/export_eiger_pixelmask.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/feedback_window.py b/src/pydidas/widgets/windows/feedback_window.py index 4a108d549..bfd3944e1 100644 --- a/src/pydidas/widgets/windows/feedback_window.py +++ b/src/pydidas/widgets/windows/feedback_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/global_settings_window.py b/src/pydidas/widgets/windows/global_settings_window.py index ca5751db3..e69093b22 100644 --- a/src/pydidas/widgets/windows/global_settings_window.py +++ b/src/pydidas/widgets/windows/global_settings_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/hdf5_browser_window.py b/src/pydidas/widgets/windows/hdf5_browser_window.py index 45a808756..d0e304388 100644 --- a/src/pydidas/widgets/windows/hdf5_browser_window.py +++ b/src/pydidas/widgets/windows/hdf5_browser_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/image_series_operations_window.py b/src/pydidas/widgets/windows/image_series_operations_window.py index 4822e3e18..1ca3dac39 100644 --- a/src/pydidas/widgets/windows/image_series_operations_window.py +++ b/src/pydidas/widgets/windows/image_series_operations_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/manually_set_beamcenter_window.py b/src/pydidas/widgets/windows/manually_set_beamcenter_window.py index ecb7ca67b..6196b02c5 100644 --- a/src/pydidas/widgets/windows/manually_set_beamcenter_window.py +++ b/src/pydidas/widgets/windows/manually_set_beamcenter_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/mask_editor_window.py b/src/pydidas/widgets/windows/mask_editor_window.py index 0505188f9..d4903286c 100644 --- a/src/pydidas/widgets/windows/mask_editor_window.py +++ b/src/pydidas/widgets/windows/mask_editor_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/qt_paths_window.py b/src/pydidas/widgets/windows/qt_paths_window.py index f7654d230..db9f62eea 100644 --- a/src/pydidas/widgets/windows/qt_paths_window.py +++ b/src/pydidas/widgets/windows/qt_paths_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/scan_dimension_information_window.py b/src/pydidas/widgets/windows/scan_dimension_information_window.py index 9c2634e01..ce0b7ee92 100644 --- a/src/pydidas/widgets/windows/scan_dimension_information_window.py +++ b/src/pydidas/widgets/windows/scan_dimension_information_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/select_integration_region_window.py b/src/pydidas/widgets/windows/select_integration_region_window.py index 9cb72838b..0d4967bb5 100644 --- a/src/pydidas/widgets/windows/select_integration_region_window.py +++ b/src/pydidas/widgets/windows/select_integration_region_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/show_detailed_plugin_results_window.py b/src/pydidas/widgets/windows/show_detailed_plugin_results_window.py index a9e5dc0a8..b5cd129b2 100644 --- a/src/pydidas/widgets/windows/show_detailed_plugin_results_window.py +++ b/src/pydidas/widgets/windows/show_detailed_plugin_results_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/show_information_for_result.py b/src/pydidas/widgets/windows/show_information_for_result.py index f32cd7a31..2de4de0fe 100644 --- a/src/pydidas/widgets/windows/show_information_for_result.py +++ b/src/pydidas/widgets/windows/show_information_for_result.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/tweak_plugin_parameter_window.py b/src/pydidas/widgets/windows/tweak_plugin_parameter_window.py index 596981f13..a86b16afa 100644 --- a/src/pydidas/widgets/windows/tweak_plugin_parameter_window.py +++ b/src/pydidas/widgets/windows/tweak_plugin_parameter_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/windows/user_config_window.py b/src/pydidas/widgets/windows/user_config_window.py index 377882be3..6fb52b44e 100644 --- a/src/pydidas/widgets/windows/user_config_window.py +++ b/src/pydidas/widgets/windows/user_config_window.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/workflow_edit/__init__.py b/src/pydidas/widgets/workflow_edit/__init__.py index c98f52b05..32a09f36b 100644 --- a/src/pydidas/widgets/workflow_edit/__init__.py +++ b/src/pydidas/widgets/workflow_edit/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/workflow_edit/plugin_collection_browser.py b/src/pydidas/widgets/workflow_edit/plugin_collection_browser.py index 4df22d3a4..7c731bbe8 100644 --- a/src/pydidas/widgets/workflow_edit/plugin_collection_browser.py +++ b/src/pydidas/widgets/workflow_edit/plugin_collection_browser.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/workflow_edit/plugin_in_workflow_box.py b/src/pydidas/widgets/workflow_edit/plugin_in_workflow_box.py index 8333453e7..2e61e9cab 100644 --- a/src/pydidas/widgets/workflow_edit/plugin_in_workflow_box.py +++ b/src/pydidas/widgets/workflow_edit/plugin_in_workflow_box.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/workflow_edit/select_new_plugin_widget.py b/src/pydidas/widgets/workflow_edit/select_new_plugin_widget.py index c148cd694..5dcf4b583 100644 --- a/src/pydidas/widgets/workflow_edit/select_new_plugin_widget.py +++ b/src/pydidas/widgets/workflow_edit/select_new_plugin_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/widgets/workflow_edit/workflow_tree_canvas.py b/src/pydidas/widgets/workflow_edit/workflow_tree_canvas.py index 6c31e79bc..8f57f80f3 100644 --- a/src/pydidas/widgets/workflow_edit/workflow_tree_canvas.py +++ b/src/pydidas/widgets/workflow_edit/workflow_tree_canvas.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/__init__.py b/src/pydidas/workflow/__init__.py index 0f509a5da..24fbe901b 100644 --- a/src/pydidas/workflow/__init__.py +++ b/src/pydidas/workflow/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/generic_node.py b/src/pydidas/workflow/generic_node.py index 2182a933d..12d6f39d0 100644 --- a/src/pydidas/workflow/generic_node.py +++ b/src/pydidas/workflow/generic_node.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/generic_tree.py b/src/pydidas/workflow/generic_tree.py index 2bff219e0..7000f61b5 100644 --- a/src/pydidas/workflow/generic_tree.py +++ b/src/pydidas/workflow/generic_tree.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/plugin_position_node.py b/src/pydidas/workflow/plugin_position_node.py index d3b8957fb..e87be1756 100644 --- a/src/pydidas/workflow/plugin_position_node.py +++ b/src/pydidas/workflow/plugin_position_node.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -24,7 +24,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/processing_tree.py b/src/pydidas/workflow/processing_tree.py index 88f7c3105..fb6139dd5 100644 --- a/src/pydidas/workflow/processing_tree.py +++ b/src/pydidas/workflow/processing_tree.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/processing_tree_io/__init__.py b/src/pydidas/workflow/processing_tree_io/__init__.py index fb21bca25..f11c76022 100644 --- a/src/pydidas/workflow/processing_tree_io/__init__.py +++ b/src/pydidas/workflow/processing_tree_io/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/processing_tree_io/processing_tree_io_base.py b/src/pydidas/workflow/processing_tree_io/processing_tree_io_base.py index ab27d581d..f34b1fb32 100644 --- a/src/pydidas/workflow/processing_tree_io/processing_tree_io_base.py +++ b/src/pydidas/workflow/processing_tree_io/processing_tree_io_base.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/processing_tree_io/processing_tree_io_meta.py b/src/pydidas/workflow/processing_tree_io/processing_tree_io_meta.py index c66971176..1b5df5a26 100644 --- a/src/pydidas/workflow/processing_tree_io/processing_tree_io_meta.py +++ b/src/pydidas/workflow/processing_tree_io/processing_tree_io_meta.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/processing_tree_io/processing_tree_io_yaml.py b/src/pydidas/workflow/processing_tree_io/processing_tree_io_yaml.py index 3c39ac90d..78f106cdf 100644 --- a/src/pydidas/workflow/processing_tree_io/processing_tree_io_yaml.py +++ b/src/pydidas/workflow/processing_tree_io/processing_tree_io_yaml.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/result_io/__init__.py b/src/pydidas/workflow/result_io/__init__.py index 822e2b6ea..4bbe6cdec 100644 --- a/src/pydidas/workflow/result_io/__init__.py +++ b/src/pydidas/workflow/result_io/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/result_io/workflow_result_io_base.py b/src/pydidas/workflow/result_io/workflow_result_io_base.py index 9f64e7a3e..4693a2967 100644 --- a/src/pydidas/workflow/result_io/workflow_result_io_base.py +++ b/src/pydidas/workflow/result_io/workflow_result_io_base.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/result_io/workflow_result_io_hdf5.py b/src/pydidas/workflow/result_io/workflow_result_io_hdf5.py index 039efde07..01ef674f3 100644 --- a/src/pydidas/workflow/result_io/workflow_result_io_hdf5.py +++ b/src/pydidas/workflow/result_io/workflow_result_io_hdf5.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/result_io/workflow_result_io_meta.py b/src/pydidas/workflow/result_io/workflow_result_io_meta.py index ab2c193e2..049e82595 100644 --- a/src/pydidas/workflow/result_io/workflow_result_io_meta.py +++ b/src/pydidas/workflow/result_io/workflow_result_io_meta.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -24,7 +24,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/workflow_node.py b/src/pydidas/workflow/workflow_node.py index 4b0e96642..a8ca6e12a 100644 --- a/src/pydidas/workflow/workflow_node.py +++ b/src/pydidas/workflow/workflow_node.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/workflow_results.py b/src/pydidas/workflow/workflow_results.py index 945e7afea..a8f65d03f 100644 --- a/src/pydidas/workflow/workflow_results.py +++ b/src/pydidas/workflow/workflow_results.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/workflow_results_selector.py b/src/pydidas/workflow/workflow_results_selector.py index 70f006b88..5560ad211 100644 --- a/src/pydidas/workflow/workflow_results_selector.py +++ b/src/pydidas/workflow/workflow_results_selector.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas/workflow/workflow_tree.py b/src/pydidas/workflow/workflow_tree.py index 4757a5965..a46b56f78 100644 --- a/src/pydidas/workflow/workflow_tree.py +++ b/src/pydidas/workflow/workflow_tree.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/input_plugins/eiger_scan_series_loader.py b/src/pydidas_plugins/input_plugins/eiger_scan_series_loader.py index 985346a6d..317c9022a 100644 --- a/src/pydidas_plugins/input_plugins/eiger_scan_series_loader.py +++ b/src/pydidas_plugins/input_plugins/eiger_scan_series_loader.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/input_plugins/fio_mca_line_scan_series_loader.py b/src/pydidas_plugins/input_plugins/fio_mca_line_scan_series_loader.py index 2582842e2..2894a2c77 100644 --- a/src/pydidas_plugins/input_plugins/fio_mca_line_scan_series_loader.py +++ b/src/pydidas_plugins/input_plugins/fio_mca_line_scan_series_loader.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/input_plugins/frame_loader.py b/src/pydidas_plugins/input_plugins/frame_loader.py index 9288f73ea..e3e707ee1 100644 --- a/src/pydidas_plugins/input_plugins/frame_loader.py +++ b/src/pydidas_plugins/input_plugins/frame_loader.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/input_plugins/frame_loader_as_stack.py b/src/pydidas_plugins/input_plugins/frame_loader_as_stack.py index 7e91ea6b2..febf01576 100644 --- a/src/pydidas_plugins/input_plugins/frame_loader_as_stack.py +++ b/src/pydidas_plugins/input_plugins/frame_loader_as_stack.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Nonni Heere, Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/input_plugins/hdf5_file_series_loader.py b/src/pydidas_plugins/input_plugins/hdf5_file_series_loader.py index 38036083f..b29c4c293 100644 --- a/src/pydidas_plugins/input_plugins/hdf5_file_series_loader.py +++ b/src/pydidas_plugins/input_plugins/hdf5_file_series_loader.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/output_plugins/general_ascii_saver.py b/src/pydidas_plugins/output_plugins/general_ascii_saver.py index a1fb39bba..b0b9ee5bf 100644 --- a/src/pydidas_plugins/output_plugins/general_ascii_saver.py +++ b/src/pydidas_plugins/output_plugins/general_ascii_saver.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/average_data_dimension.py b/src/pydidas_plugins/proc_plugins/average_data_dimension.py index f83dc072c..850e59ec3 100644 --- a/src/pydidas_plugins/proc_plugins/average_data_dimension.py +++ b/src/pydidas_plugins/proc_plugins/average_data_dimension.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/average_opposite_sectors.py b/src/pydidas_plugins/proc_plugins/average_opposite_sectors.py index 32dd91992..135dffbfb 100644 --- a/src/pydidas_plugins/proc_plugins/average_opposite_sectors.py +++ b/src/pydidas_plugins/proc_plugins/average_opposite_sectors.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/center_of_mass_1d_data.py b/src/pydidas_plugins/proc_plugins/center_of_mass_1d_data.py index 0a845d377..ea5304a71 100644 --- a/src/pydidas_plugins/proc_plugins/center_of_mass_1d_data.py +++ b/src/pydidas_plugins/proc_plugins/center_of_mass_1d_data.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/convert_to_d_spacing.py b/src/pydidas_plugins/proc_plugins/convert_to_d_spacing.py index 50bbaef51..befb6dca8 100644 --- a/src/pydidas_plugins/proc_plugins/convert_to_d_spacing.py +++ b/src/pydidas_plugins/proc_plugins/convert_to_d_spacing.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Nonni Heere" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/correct_spline_distortion.py b/src/pydidas_plugins/proc_plugins/correct_spline_distortion.py index f599d6eea..f68d1cd16 100644 --- a/src/pydidas_plugins/proc_plugins/correct_spline_distortion.py +++ b/src/pydidas_plugins/proc_plugins/correct_spline_distortion.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/create_dynamic_mask.py b/src/pydidas_plugins/proc_plugins/create_dynamic_mask.py index f7878c0de..4ba98644e 100644 --- a/src/pydidas_plugins/proc_plugins/create_dynamic_mask.py +++ b/src/pydidas_plugins/proc_plugins/create_dynamic_mask.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/crop_and_bin_data.py b/src/pydidas_plugins/proc_plugins/crop_and_bin_data.py index 2e6e902c6..0a1859066 100644 --- a/src/pydidas_plugins/proc_plugins/crop_and_bin_data.py +++ b/src/pydidas_plugins/proc_plugins/crop_and_bin_data.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/extract_azimuthal_sectors.py b/src/pydidas_plugins/proc_plugins/extract_azimuthal_sectors.py index f5613c91e..d16225ab8 100644 --- a/src/pydidas_plugins/proc_plugins/extract_azimuthal_sectors.py +++ b/src/pydidas_plugins/proc_plugins/extract_azimuthal_sectors.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/fit_double_peak.py b/src/pydidas_plugins/proc_plugins/fit_double_peak.py index b96b6e75f..f2079f586 100644 --- a/src/pydidas_plugins/proc_plugins/fit_double_peak.py +++ b/src/pydidas_plugins/proc_plugins/fit_double_peak.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/fit_single_peak.py b/src/pydidas_plugins/proc_plugins/fit_single_peak.py index ee8a39885..7c3026ea4 100644 --- a/src/pydidas_plugins/proc_plugins/fit_single_peak.py +++ b/src/pydidas_plugins/proc_plugins/fit_single_peak.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/fit_triple_peak.py b/src/pydidas_plugins/proc_plugins/fit_triple_peak.py index 3b3c15d96..637b9b1ce 100644 --- a/src/pydidas_plugins/proc_plugins/fit_triple_peak.py +++ b/src/pydidas_plugins/proc_plugins/fit_triple_peak.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/mask_and_average_image_stack.py b/src/pydidas_plugins/proc_plugins/mask_and_average_image_stack.py index 6c33362df..5c820ee70 100644 --- a/src/pydidas_plugins/proc_plugins/mask_and_average_image_stack.py +++ b/src/pydidas_plugins/proc_plugins/mask_and_average_image_stack.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Nonni Heere" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/mask_image.py b/src/pydidas_plugins/proc_plugins/mask_image.py index 4af21488a..b4b5d30dc 100644 --- a/src/pydidas_plugins/proc_plugins/mask_image.py +++ b/src/pydidas_plugins/proc_plugins/mask_image.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/pyfai_2d_integration.py b/src/pydidas_plugins/proc_plugins/pyfai_2d_integration.py index 30bc4233b..1bb08593a 100644 --- a/src/pydidas_plugins/proc_plugins/pyfai_2d_integration.py +++ b/src/pydidas_plugins/proc_plugins/pyfai_2d_integration.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/pyfai_azimuthal_integration.py b/src/pydidas_plugins/proc_plugins/pyfai_azimuthal_integration.py index 9c33713d8..78ecbecf2 100644 --- a/src/pydidas_plugins/proc_plugins/pyfai_azimuthal_integration.py +++ b/src/pydidas_plugins/proc_plugins/pyfai_azimuthal_integration.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/pyfai_azimuthal_sector_integration.py b/src/pydidas_plugins/proc_plugins/pyfai_azimuthal_sector_integration.py index adb852a59..29283ac54 100644 --- a/src/pydidas_plugins/proc_plugins/pyfai_azimuthal_sector_integration.py +++ b/src/pydidas_plugins/proc_plugins/pyfai_azimuthal_sector_integration.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/pyfai_radial_integration.py b/src/pydidas_plugins/proc_plugins/pyfai_radial_integration.py index f3855c043..8821c23a7 100644 --- a/src/pydidas_plugins/proc_plugins/pyfai_radial_integration.py +++ b/src/pydidas_plugins/proc_plugins/pyfai_radial_integration.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/remove_1d_polynomial_bg.py b/src/pydidas_plugins/proc_plugins/remove_1d_polynomial_bg.py index 7b24b7842..86ada5c2c 100644 --- a/src/pydidas_plugins/proc_plugins/remove_1d_polynomial_bg.py +++ b/src/pydidas_plugins/proc_plugins/remove_1d_polynomial_bg.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/remove_outliers.py b/src/pydidas_plugins/proc_plugins/remove_outliers.py index 710fe51f1..8967f388d 100644 --- a/src/pydidas_plugins/proc_plugins/remove_outliers.py +++ b/src/pydidas_plugins/proc_plugins/remove_outliers.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/rolling_average_1d.py b/src/pydidas_plugins/proc_plugins/rolling_average_1d.py index 2f766d370..a664c61f1 100644 --- a/src/pydidas_plugins/proc_plugins/rolling_average_1d.py +++ b/src/pydidas_plugins/proc_plugins/rolling_average_1d.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/subtract_1d_bg_profile.py b/src/pydidas_plugins/proc_plugins/subtract_1d_bg_profile.py index 6352f96e5..0068de1d6 100644 --- a/src/pydidas_plugins/proc_plugins/subtract_1d_bg_profile.py +++ b/src/pydidas_plugins/proc_plugins/subtract_1d_bg_profile.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/subtract_bg_image.py b/src/pydidas_plugins/proc_plugins/subtract_bg_image.py index 095e0c41d..bd0e88fd2 100644 --- a/src/pydidas_plugins/proc_plugins/subtract_bg_image.py +++ b/src/pydidas_plugins/proc_plugins/subtract_bg_image.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/sum_1d_data.py b/src/pydidas_plugins/proc_plugins/sum_1d_data.py index 79070347e..094ac935c 100644 --- a/src/pydidas_plugins/proc_plugins/sum_1d_data.py +++ b/src/pydidas_plugins/proc_plugins/sum_1d_data.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_plugins/proc_plugins/sum_2d_data.py b/src/pydidas_plugins/proc_plugins/sum_2d_data.py index f6fb8dd74..69cb7657e 100644 --- a/src/pydidas_plugins/proc_plugins/sum_2d_data.py +++ b/src/pydidas_plugins/proc_plugins/sum_2d_data.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_qtcore/__init__.py b/src/pydidas_qtcore/__init__.py index 238c4c2da..8e55948ba 100644 --- a/src/pydidas_qtcore/__init__.py +++ b/src/pydidas_qtcore/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_qtcore/fontsize.py b/src/pydidas_qtcore/fontsize.py index 7f18507e1..d6d1e839a 100644 --- a/src/pydidas_qtcore/fontsize.py +++ b/src/pydidas_qtcore/fontsize.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_qtcore/pydidas_qapp.py b/src/pydidas_qtcore/pydidas_qapp.py index 7567e55f0..1546c47e6 100644 --- a/src/pydidas_qtcore/pydidas_qapp.py +++ b/src/pydidas_qtcore/pydidas_qapp.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_qtcore/pydidas_splash_screen.py b/src/pydidas_qtcore/pydidas_splash_screen.py index e22446c4a..2b06a7faf 100644 --- a/src/pydidas_qtcore/pydidas_splash_screen.py +++ b/src/pydidas_qtcore/pydidas_splash_screen.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_scripts/__init__.py b/src/pydidas_scripts/__init__.py index d8250d6dc..ad6ca337c 100644 --- a/src/pydidas_scripts/__init__.py +++ b/src/pydidas_scripts/__init__.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -23,7 +23,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_scripts/clear_local_settings.py b/src/pydidas_scripts/clear_local_settings.py index f30f3831c..a211e3180 100644 --- a/src/pydidas_scripts/clear_local_settings.py +++ b/src/pydidas_scripts/clear_local_settings.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_scripts/open_documentation.py b/src/pydidas_scripts/open_documentation.py index ade6e4630..14f78958d 100644 --- a/src/pydidas_scripts/open_documentation.py +++ b/src/pydidas_scripts/open_documentation.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_scripts/pydidas_gui.py b/src/pydidas_scripts/pydidas_gui.py index 578f5371f..d780f805a 100644 --- a/src/pydidas_scripts/pydidas_gui.py +++ b/src/pydidas_scripts/pydidas_gui.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_scripts/pydidas_updater_script.py b/src/pydidas_scripts/pydidas_updater_script.py index b526f12ae..7ce637410 100644 --- a/src/pydidas_scripts/pydidas_updater_script.py +++ b/src/pydidas_scripts/pydidas_updater_script.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_scripts/remove_local_files.py b/src/pydidas_scripts/remove_local_files.py index bf986a690..e6b5a85e7 100644 --- a/src/pydidas_scripts/remove_local_files.py +++ b/src/pydidas_scripts/remove_local_files.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_scripts/remove_pydidas.py b/src/pydidas_scripts/remove_pydidas.py index 3163c2d94..9aef2f29d 100644 --- a/src/pydidas_scripts/remove_pydidas.py +++ b/src/pydidas_scripts/remove_pydidas.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -21,7 +21,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/src/pydidas_scripts/run_pydidas_workflow.py b/src/pydidas_scripts/run_pydidas_workflow.py index 8b23a56e7..5421cb2cd 100644 --- a/src/pydidas_scripts/run_pydidas_workflow.py +++ b/src/pydidas_scripts/run_pydidas_workflow.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -20,7 +20,7 @@ """ __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/_plugin_tests/input_plugins/test_fio_mca_line_series_loader.py b/tests/_plugin_tests/input_plugins/test_fio_mca_line_series_loader.py index 4d6c34158..f525d1412 100644 --- a/tests/_plugin_tests/input_plugins/test_fio_mca_line_series_loader.py +++ b/tests/_plugin_tests/input_plugins/test_fio_mca_line_series_loader.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/_plugin_tests/proc_plugins/test_correct_spline_distortion.py b/tests/_plugin_tests/proc_plugins/test_correct_spline_distortion.py index e864680c0..f2d968fe3 100644 --- a/tests/_plugin_tests/proc_plugins/test_correct_spline_distortion.py +++ b/tests/_plugin_tests/proc_plugins/test_correct_spline_distortion.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/apps/test_composite_creator_app.py b/tests/apps/test_composite_creator_app.py index 17e7b0002..1f9cdc269 100644 --- a/tests/apps/test_composite_creator_app.py +++ b/tests/apps/test_composite_creator_app.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/apps/test_directory_spy_app.py b/tests/apps/test_directory_spy_app.py index 2c61de6d5..ebac8fa1f 100644 --- a/tests/apps/test_directory_spy_app.py +++ b/tests/apps/test_directory_spy_app.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/apps/test_execute_workflow_app.py b/tests/apps/test_execute_workflow_app.py index ab5e195e3..2cbcd3752 100644 --- a/tests/apps/test_execute_workflow_app.py +++ b/tests/apps/test_execute_workflow_app.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/core/test_base_app.py b/tests/core/test_base_app.py index 2989478be..c593e9638 100644 --- a/tests/core/test_base_app.py +++ b/tests/core/test_base_app.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/core/test_pydidas_q_settings.py b/tests/core/test_pydidas_q_settings.py index 67455b281..5d676902c 100644 --- a/tests/core/test_pydidas_q_settings.py +++ b/tests/core/test_pydidas_q_settings.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/core/test_pydidas_q_settings_mixin.py b/tests/core/test_pydidas_q_settings_mixin.py index 13fa7d46a..f07cbc2b9 100644 --- a/tests/core/test_pydidas_q_settings_mixin.py +++ b/tests/core/test_pydidas_q_settings_mixin.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/core/test_singleton_factory.py b/tests/core/test_singleton_factory.py index 2d99c2928..1de7057f1 100644 --- a/tests/core/test_singleton_factory.py +++ b/tests/core/test_singleton_factory.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/core/utils/test_file_checks.py b/tests/core/utils/test_file_checks.py index d36a461b9..fcb124c1d 100644 --- a/tests/core/utils/test_file_checks.py +++ b/tests/core/utils/test_file_checks.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/core/utils/test_get_documentation_targets.py b/tests/core/utils/test_get_documentation_targets.py index b3e1da963..26e22df57 100644 --- a/tests/core/utils/test_get_documentation_targets.py +++ b/tests/core/utils/test_get_documentation_targets.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2024, Helmholtz-Zentrum Hereon +# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/data_io/implementations/test_fabio_io.py b/tests/data_io/implementations/test_fabio_io.py index f9230056b..3b94a5499 100644 --- a/tests/data_io/implementations/test_fabio_io.py +++ b/tests/data_io/implementations/test_fabio_io.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/data_io/implementations/test_io_base.py b/tests/data_io/implementations/test_io_base.py index 5a340d597..9623c4d2c 100644 --- a/tests/data_io/implementations/test_io_base.py +++ b/tests/data_io/implementations/test_io_base.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/data_io/low_level_readers/test_read_hdf5_dataset.py b/tests/data_io/low_level_readers/test_read_hdf5_dataset.py index b0b329ce0..980a23896 100644 --- a/tests/data_io/low_level_readers/test_read_hdf5_dataset.py +++ b/tests/data_io/low_level_readers/test_read_hdf5_dataset.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/data_io/test_import_export.py b/tests/data_io/test_import_export.py index cf129e1d7..9ad9d77d6 100644 --- a/tests/data_io/test_import_export.py +++ b/tests/data_io/test_import_export.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/data_io/test_io_manager.py b/tests/data_io/test_io_manager.py index 425bf637a..eb6a966fa 100644 --- a/tests/data_io/test_io_manager.py +++ b/tests/data_io/test_io_manager.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/managers/test_composite_image_manager.py b/tests/managers/test_composite_image_manager.py index 7891ef71e..8f5141596 100644 --- a/tests/managers/test_composite_image_manager.py +++ b/tests/managers/test_composite_image_manager.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/managers/test_filelist_manager.py b/tests/managers/test_filelist_manager.py index 3bd6b6646..c9c5074d8 100644 --- a/tests/managers/test_filelist_manager.py +++ b/tests/managers/test_filelist_manager.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/multiprocessing/test_processor.py b/tests/multiprocessing/test_processor.py index 820f30291..0668e2e6d 100644 --- a/tests/multiprocessing/test_processor.py +++ b/tests/multiprocessing/test_processor.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/plugins/test_plugin_registry.py b/tests/plugins/test_plugin_registry.py index f2503177f..8982d52ef 100644 --- a/tests/plugins/test_plugin_registry.py +++ b/tests/plugins/test_plugin_registry.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/widgets/framework/test_base_frame.py b/tests/widgets/framework/test_base_frame.py index 2a9afe0cb..437598b18 100644 --- a/tests/widgets/framework/test_base_frame.py +++ b/tests/widgets/framework/test_base_frame.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/widgets/framework/test_pydidas_status_widget.py b/tests/widgets/framework/test_pydidas_status_widget.py index 85de4fb37..f578d675f 100644 --- a/tests/widgets/framework/test_pydidas_status_widget.py +++ b/tests/widgets/framework/test_pydidas_status_widget.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production" diff --git a/tests/workflow/workflow_tree_io/test_workflow_tree_io_yaml.py b/tests/workflow/workflow_tree_io/test_workflow_tree_io_yaml.py index 4142db487..8691dd449 100644 --- a/tests/workflow/workflow_tree_io/test_workflow_tree_io_yaml.py +++ b/tests/workflow/workflow_tree_io/test_workflow_tree_io_yaml.py @@ -1,6 +1,6 @@ # This file is part of pydidas. # -# Copyright 2023 - 2024, Helmholtz-Zentrum Hereon +# Copyright 2023 - 2025, Helmholtz-Zentrum Hereon # SPDX-License-Identifier: GPL-3.0-only # # pydidas is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ """Unit tests for pydidas modules.""" __author__ = "Malte Storm" -__copyright__ = "Copyright 2023 - 2024, Helmholtz-Zentrum Hereon" +__copyright__ = "Copyright 2023 - 2025, Helmholtz-Zentrum Hereon" __license__ = "GPL-3.0-only" __maintainer__ = "Malte Storm" __status__ = "Production"