diff --git a/README.adoc b/README.adoc index f669bc0..456f60e 100644 --- a/README.adoc +++ b/README.adoc @@ -55,7 +55,7 @@ Options can be changed in file _~/.qweechat/qweechat.conf_. == Copyright -Copyright (C) 2011-2016 Sébastien Helleu +Copyright (C) 2011-2018 Sébastien Helleu This file is part of QWeeChat, a Qt remote GUI for WeeChat. diff --git a/qweechat/__init__.py b/qweechat/__init__.py index e450ad5..3acdaa5 100644 --- a/qweechat/__init__.py +++ b/qweechat/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 bf3c75f..66a837c 100644 --- a/qweechat/about.py +++ b/qweechat/about.py @@ -2,7 +2,7 @@ # # about.py - about dialog box # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/qweechat/buffer.py b/qweechat/buffer.py index eefb5e1..facda99 100644 --- a/qweechat/buffer.py +++ b/qweechat/buffer.py @@ -2,7 +2,7 @@ # # buffer.py - management of WeeChat buffers/nicklist # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 053a635..e9768e5 100644 --- a/qweechat/chat.py +++ b/qweechat/chat.py @@ -2,7 +2,7 @@ # # chat.py - chat area # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 71760e6..ae8456f 100644 --- a/qweechat/config.py +++ b/qweechat/config.py @@ -2,7 +2,7 @@ # # config.py - configuration for QWeeChat (~/.qweechat/qweechat.conf) # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 a38ebf9..d6a57ee 100644 --- a/qweechat/connection.py +++ b/qweechat/connection.py @@ -2,7 +2,7 @@ # # connection.py - connection window # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 9f5afb9..a06f6db 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-2016 Sébastien Helleu + Copyright (C) 2011-2018 Sébastien Helleu Released under GPLv3. diff --git a/qweechat/debug.py b/qweechat/debug.py index 67f7f3b..814ef33 100644 --- a/qweechat/debug.py +++ b/qweechat/debug.py @@ -2,7 +2,7 @@ # # debug.py - debug window # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 6fd451b..3cb8f3d 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-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 46458a4..59cfe97 100644 --- a/qweechat/network.py +++ b/qweechat/network.py @@ -2,7 +2,7 @@ # # network.py - I/O with WeeChat/relay # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 cf0bca3..6e1cce2 100644 --- a/qweechat/qweechat.py +++ b/qweechat/qweechat.py @@ -2,7 +2,7 @@ # # qweechat.py - WeeChat remote GUI using Qt toolkit # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # @@ -246,7 +246,7 @@ class MainWindow(QtGui.QMainWindow): def open_about_dialog(self): """Open a dialog with info about QWeeChat.""" messages = ['%s %s' % (NAME, qweechat_version()), - '© 2011-2016 %s <%s>' + '© 2011-2018 %s <%s>' % (AUTHOR, AUTHOR_MAIL, AUTHOR_MAIL), '', 'Running with %s' % ('PySide' if qt_compat.uses_pyside diff --git a/qweechat/version.py b/qweechat/version.py index b262c0d..d4c0d09 100644 --- a/qweechat/version.py +++ b/qweechat/version.py @@ -2,7 +2,7 @@ # # version.py - version of QWeeChat # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 e450ad5..3acdaa5 100644 --- a/qweechat/weechat/__init__.py +++ b/qweechat/weechat/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 60fba96..38f3364 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-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 31db088..008f68d 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-2016 Sébastien Helleu +# Copyright (C) 2011-2018 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 3ef565a..e013368 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-2016 Sébastien Helleu +# Copyright (C) 2013-2018 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. # diff --git a/setup.py b/setup.py index 41e5af7..7fe3c1f 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2011-2016 Sébastien Helleu +# Copyright (C) 2011-2018 Sébastien Helleu # # This file is part of QWeeChat, a Qt remote GUI for WeeChat. #