From 318b3ad412a976314c8f96db73cf6d9143582234 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20Kr=C3=BCger?= Date: Tue, 23 Jul 2024 16:26:28 +0200 Subject: [PATCH] Update copyright year Change-Id: I7fe65e46639c2d8948fa93303ee9b14393e8bfca --- bin/frappy-cfg-editor | 1 + bin/frappy-cli | 2 +- bin/frappy-gui | 2 +- bin/frappy-play | 2 +- debian/copyright | 4 ++-- doc/source/conf.py | 2 +- etc/frappy-generator | 2 +- frappy/__init__.py | 2 +- frappy/core.py | 2 +- frappy/gui/cfg_editor/mainwindow.py | 8 ++++---- frappy/gui/collapsible.py | 2 +- frappy/gui/connection.py | 2 +- frappy/gui/console.py | 2 +- frappy/gui/logwindow.py | 2 +- frappy/gui/mainwindow.py | 4 ++-- frappy/gui/moduleoverview.py | 2 +- frappy/gui/modulewidget.py | 2 +- frappy/gui/nodewidget.py | 2 +- frappy/gui/params/__init__.py | 2 +- frappy/gui/paramview.py | 2 +- frappy/gui/plotting.py | 2 +- frappy/gui/qt.py | 1 + frappy/gui/tabwidget.py | 3 +-- frappy/gui/util.py | 2 +- frappy/gui/valuewidgets.py | 2 +- frappy/lib/enum.py | 2 +- frappy/version.py | 2 +- frappy_mlz/zebra.py | 2 +- setup.py | 2 +- 29 files changed, 34 insertions(+), 33 deletions(-) diff --git a/bin/frappy-cfg-editor b/bin/frappy-cfg-editor index 4aa0939..13213cb 100755 --- a/bin/frappy-cfg-editor +++ b/bin/frappy-cfg-editor @@ -1,6 +1,7 @@ #!/usr/bin/env python # pylint: disable=invalid-name # ***************************************************************************** +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/bin/frappy-cli b/bin/frappy-cli index e6cddd0..3e58120 100755 --- a/bin/frappy-cli +++ b/bin/frappy-cli @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/bin/frappy-gui b/bin/frappy-gui index 37416a3..ea64fd2 100755 --- a/bin/frappy-gui +++ b/bin/frappy-gui @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # pylint: disable=invalid-name # ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/bin/frappy-play b/bin/frappy-play index ef396bc..21260f6 100755 --- a/bin/frappy-play +++ b/bin/frappy-play @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/debian/copyright b/debian/copyright index bc0402d..89730ce 100644 --- a/debian/copyright +++ b/debian/copyright @@ -5,11 +5,11 @@ Comment: FRAPPY is an implementation of the free SECoP protocol see https://www.github.com/SampleEnvironment/SECoP Files: * -Copyright: 2016-2022 by the FRAPPY-SECOP contributors (see AUTHORS) +Copyright: 2016-2024 by the FRAPPY-SECOP contributors (see AUTHORS) License: GPL-2 Files: debian/* -Copyright: 2015-2022 Enrico Faulhaber +Copyright: 2015-2024 Enrico Faulhaber License: GPL-2 License: GPL-2 diff --git a/doc/source/conf.py b/doc/source/conf.py index 974d942..f432102 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -59,7 +59,7 @@ master_doc = 'index' # General information about the project. project = 'Frappy' -copyright = '2017-2023, Enrico Faulhaber, Markus Zolliker' +copyright = '2017-2024, Enrico Faulhaber, Markus Zolliker' #copyright = '2017, SECoP Committee' author = 'Enrico Faulhaber, Markus Zolliker' diff --git a/etc/frappy-generator b/etc/frappy-generator index 2c3e30c..fd47e4d 100755 --- a/etc/frappy-generator +++ b/etc/frappy-generator @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # ***************************************************************************** -# Copyright (c) 2015-2019 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/__init__.py b/frappy/__init__.py index 92cd1c5..14a7226 100644 --- a/frappy/__init__.py +++ b/frappy/__init__.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/core.py b/frappy/core.py index 48c98af..e89fa52 100644 --- a/frappy/core.py +++ b/frappy/core.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/cfg_editor/mainwindow.py b/frappy/gui/cfg_editor/mainwindow.py index cdfd276..104a53d 100644 --- a/frappy/gui/cfg_editor/mainwindow.py +++ b/frappy/gui/cfg_editor/mainwindow.py @@ -1,4 +1,5 @@ # ***************************************************************************** +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software @@ -88,11 +89,10 @@ class MainWindow(QMainWindow): cfg-editor is a graphical interface for editing FRAPPY-configuration-files.

-

Author:

+

Authors:

+ Copyright (C) 2019-2024

cfg-editor is published under the diff --git a/frappy/gui/collapsible.py b/frappy/gui/collapsible.py index 8eba605..5410442 100644 --- a/frappy/gui/collapsible.py +++ b/frappy/gui/collapsible.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2023 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/connection.py b/frappy/gui/connection.py index 0b2474d..e4bf8b6 100644 --- a/frappy/gui/connection.py +++ b/frappy/gui/connection.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/console.py b/frappy/gui/console.py index 68fda20..aac7966 100644 --- a/frappy/gui/console.py +++ b/frappy/gui/console.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2023 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/logwindow.py b/frappy/gui/logwindow.py index 70e9e86..0feb2fb 100644 --- a/frappy/gui/logwindow.py +++ b/frappy/gui/logwindow.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2023 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/mainwindow.py b/frappy/gui/mainwindow.py index 0db8d8f..4d8f0a0 100644 --- a/frappy/gui/mainwindow.py +++ b/frappy/gui/mainwindow.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2023 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software @@ -144,7 +144,7 @@ class MainWindow(QMainWindow): f'''

About Frappy GUI

A graphical client for the SECoP protocol.

-

© 2017-2023 Frappy contributors:

+

© 2017-2024 Frappy contributors:

  • Markus Zolliker
  • Enrico Faulhaber
  • diff --git a/frappy/gui/moduleoverview.py b/frappy/gui/moduleoverview.py index ec3c4f5..29ac31b 100644 --- a/frappy/gui/moduleoverview.py +++ b/frappy/gui/moduleoverview.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2023 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/modulewidget.py b/frappy/gui/modulewidget.py index cbaacba..5ff4f00 100644 --- a/frappy/gui/modulewidget.py +++ b/frappy/gui/modulewidget.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2023 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/nodewidget.py b/frappy/gui/nodewidget.py index 8ba9e04..0ee04da 100644 --- a/frappy/gui/nodewidget.py +++ b/frappy/gui/nodewidget.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2023 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/params/__init__.py b/frappy/gui/params/__init__.py index 4360e79..fcf8008 100644 --- a/frappy/gui/params/__init__.py +++ b/frappy/gui/params/__init__.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/paramview.py b/frappy/gui/paramview.py index c9780b2..e8e3acd 100644 --- a/frappy/gui/paramview.py +++ b/frappy/gui/paramview.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2017 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/plotting.py b/frappy/gui/plotting.py index dd24edc..bc1be48 100644 --- a/frappy/gui/plotting.py +++ b/frappy/gui/plotting.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2023 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/qt.py b/frappy/gui/qt.py index 33337a6..55608e0 100644 --- a/frappy/gui/qt.py +++ b/frappy/gui/qt.py @@ -1,4 +1,5 @@ # ***************************************************************************** +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/tabwidget.py b/frappy/gui/tabwidget.py index 891aca4..c572540 100644 --- a/frappy/gui/tabwidget.py +++ b/frappy/gui/tabwidget.py @@ -1,6 +1,5 @@ # ***************************************************************************** -# NICOS, the Networked Instrument Control System of the MLZ -# Copyright (c) 2009-2023 by the NICOS contributors (see AUTHORS) +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/util.py b/frappy/gui/util.py index 64b1290..529533d 100644 --- a/frappy/gui/util.py +++ b/frappy/gui/util.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/gui/valuewidgets.py b/frappy/gui/valuewidgets.py index 5fa3a4e..b94381c 100644 --- a/frappy/gui/valuewidgets.py +++ b/frappy/gui/valuewidgets.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/lib/enum.py b/frappy/lib/enum.py index b63abc5..991f628 100644 --- a/frappy/lib/enum.py +++ b/frappy/lib/enum.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy/version.py b/frappy/version.py index 3fc3880..45c27ec 100644 --- a/frappy/version.py +++ b/frappy/version.py @@ -1,5 +1,5 @@ # ***************************************************************************** -# Copyright (c) 2015-2023 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/frappy_mlz/zebra.py b/frappy_mlz/zebra.py index a2edb5f..3d15e8e 100644 --- a/frappy_mlz/zebra.py +++ b/frappy_mlz/zebra.py @@ -1,6 +1,6 @@ # ***************************************************************************** # MLZ library of Tango servers -# Copyright (c) 2015-2023 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/setup.py b/setup.py index c4455d3..a5d63f2 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # ***************************************************************************** # MLZ Tango client tool -# Copyright (c) 2015-2016 by the authors, see LICENSE +# Copyright (c) 2015-2024 by the authors, see LICENSE # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software