From 82e0d92056e71c623c8edae09c47165daa76348c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Wed, 12 Jan 2022 23:52:09 +0100 Subject: [PATCH] Update copyright dates --- Makefile | 2 +- README.md | 2 +- qweechat/__init__.py | 2 +- qweechat/about.py | 4 ++-- qweechat/buffer.py | 2 +- qweechat/chat.py | 2 +- qweechat/config.py | 2 +- qweechat/connection.py | 2 +- qweechat/data/icons/README | 2 +- qweechat/debug.py | 2 +- qweechat/input.py | 2 +- qweechat/network.py | 2 +- qweechat/preferences.py | 2 +- qweechat/qweechat.py | 2 +- qweechat/version.py | 2 +- qweechat/weechat/__init__.py | 2 +- qweechat/weechat/color.py | 2 +- qweechat/weechat/protocol.py | 2 +- qweechat/weechat/testproto.py | 2 +- setup.py | 2 +- 20 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Makefile b/Makefile index 28f56ea..600e2ca 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2021 Sébastien Helleu +# Copyright (C) 2021-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/README.md b/README.md index 5b11630..ebdef3d 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Options can be changed in file `~/.config/qweechat/qweechat.conf`. ## Copyright -Copyright © 2011-2021 [Sébastien Helleu](https://github.com/flashcode) +Copyright © 2011-2022 [Sébastien Helleu](https://github.com/flashcode) This file is part of QWeeChat, a Qt remote GUI for WeeChat. diff --git a/qweechat/__init__.py b/qweechat/__init__.py index 5f19b92..f510618 100644 --- a/qweechat/__init__.py +++ b/qweechat/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/about.py b/qweechat/about.py index 3d8ad94..01b7605 100644 --- a/qweechat/about.py +++ b/qweechat/about.py @@ -2,7 +2,7 @@ # # about.py - about dialog box # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # @@ -46,7 +46,7 @@ class AboutDialog(QtGui.QDialog): vbox = QtGui.QVBoxLayout() messages = [ f'{app_name} {qweechat_version()}', - f'© 2011-2021 {author}', + f'© 2011-2022 {author}', '', f'{weechat_site}', '', diff --git a/qweechat/buffer.py b/qweechat/buffer.py index a798205..2f6e32f 100644 --- a/qweechat/buffer.py +++ b/qweechat/buffer.py @@ -2,7 +2,7 @@ # # buffer.py - management of WeeChat buffers/nicklist # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/chat.py b/qweechat/chat.py index c5d176e..b8a3788 100644 --- a/qweechat/chat.py +++ b/qweechat/chat.py @@ -2,7 +2,7 @@ # # chat.py - chat area # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/config.py b/qweechat/config.py index 835c1fb..42fbba4 100644 --- a/qweechat/config.py +++ b/qweechat/config.py @@ -2,7 +2,7 @@ # # config.py - configuration for QWeeChat # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/connection.py b/qweechat/connection.py index 798e702..c9631ff 100644 --- a/qweechat/connection.py +++ b/qweechat/connection.py @@ -2,7 +2,7 @@ # # connection.py - connection window # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/data/icons/README b/qweechat/data/icons/README index 42c617b..0694819 100644 --- a/qweechat/data/icons/README +++ b/qweechat/data/icons/README @@ -4,7 +4,7 @@ Copyright and license for images Files: weechat.png, bullet_green_8x8.png, bullet_yellow_8x8.png - Copyright (C) 2011-2021 Sébastien Helleu + Copyright (C) 2011-2022 Sébastien Helleu Released under GPLv3. diff --git a/qweechat/debug.py b/qweechat/debug.py index fee0ca0..3267adc 100644 --- a/qweechat/debug.py +++ b/qweechat/debug.py @@ -2,7 +2,7 @@ # # debug.py - debug window # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/input.py b/qweechat/input.py index e84fd27..1ec3d3d 100644 --- a/qweechat/input.py +++ b/qweechat/input.py @@ -2,7 +2,7 @@ # # input.py - input line for chat and debug window # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/network.py b/qweechat/network.py index 968c927..b7d802c 100644 --- a/qweechat/network.py +++ b/qweechat/network.py @@ -2,7 +2,7 @@ # # network.py - I/O with WeeChat/relay # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/preferences.py b/qweechat/preferences.py index e8c276f..f760bbc 100644 --- a/qweechat/preferences.py +++ b/qweechat/preferences.py @@ -2,7 +2,7 @@ # # preferences.py - preferences dialog box # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/qweechat.py b/qweechat/qweechat.py index 956380e..f58d920 100644 --- a/qweechat/qweechat.py +++ b/qweechat/qweechat.py @@ -2,7 +2,7 @@ # # qweechat.py - WeeChat remote GUI using Qt toolkit # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/version.py b/qweechat/version.py index 2b8c2e3..25bbf46 100644 --- a/qweechat/version.py +++ b/qweechat/version.py @@ -2,7 +2,7 @@ # # version.py - version of QWeeChat # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/weechat/__init__.py b/qweechat/weechat/__init__.py index 5f19b92..f510618 100644 --- a/qweechat/weechat/__init__.py +++ b/qweechat/weechat/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/weechat/color.py b/qweechat/weechat/color.py index 20a72ec..0ed52ef 100644 --- a/qweechat/weechat/color.py +++ b/qweechat/weechat/color.py @@ -2,7 +2,7 @@ # # color.py - remove/replace colors in WeeChat strings # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/weechat/protocol.py b/qweechat/weechat/protocol.py index e751193..90ce7d2 100644 --- a/qweechat/weechat/protocol.py +++ b/qweechat/weechat/protocol.py @@ -2,7 +2,7 @@ # # protocol.py - decode binary messages received from WeeChat/relay # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/weechat/testproto.py b/qweechat/weechat/testproto.py index 53f70c5..2afabd9 100644 --- a/qweechat/weechat/testproto.py +++ b/qweechat/weechat/testproto.py @@ -2,7 +2,7 @@ # # testproto.py - command-line program for testing WeeChat/relay protocol # -# Copyright (C) 2013-2021 Sébastien Helleu +# Copyright (C) 2013-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/setup.py b/setup.py index 5bc4896..ea2a234 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2011-2021 Sébastien Helleu +# Copyright (C) 2011-2022 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. #