From 008581267ae8db72c1385a7d16cf0763973dfed5 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 3 Feb 2018 14:41:18 +0000 Subject: [PATCH] add missing files --- .../openlp_core/api/endpoint/__init__.py | 0 .../api/endpoint/test_controller.py | 54 + tmp | 5973 +++++++++++++++++ 3 files changed, 6027 insertions(+) create mode 100644 tests/functional/openlp_core/api/endpoint/__init__.py create mode 100644 tests/functional/openlp_core/api/endpoint/test_controller.py create mode 100644 tmp diff --git a/tests/functional/openlp_core/api/endpoint/__init__.py b/tests/functional/openlp_core/api/endpoint/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/functional/openlp_core/api/endpoint/test_controller.py b/tests/functional/openlp_core/api/endpoint/test_controller.py new file mode 100644 index 000000000..08b1f5d69 --- /dev/null +++ b/tests/functional/openlp_core/api/endpoint/test_controller.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 + +############################################################################### +# OpenLP - Open Source Lyrics Projection # +# --------------------------------------------------------------------------- # +# Copyright (c) 2008-2018 OpenLP Developers # +# --------------------------------------------------------------------------- # +# 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 Foundation; version 2 of the License. # +# # +# This program is distributed in the hope that it will be useful, but WITHOUT # +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # +# more details. # +# # +# You should have received a copy of the GNU General Public License along # +# with this program; if not, write to the Free Software Foundation, Inc., 59 # +# Temple Place, Suite 330, Boston, MA 02111-1307 USA # +############################################################################### +from unittest import TestCase +from unittest.mock import MagicMock, patch + +from openlp.core.common.registry import Registry +from openlp.core.api.endpoint.controller import controller_text + + +class TestController(TestCase): + """ + Test the Remote plugin deploy functions + """ + + def setUp(self): + """ + Setup for tests + """ + Registry.create() + self.registry = Registry() + self.mocked_live_controller = MagicMock() + Registry().register('live_controller', self.mocked_live_controller) + + def test_controller_text(self): + """ + Remote Deploy tests - test the dummy zip file is processed correctly + """ + # GIVEN: A mocked service with a dummy service item + self.mocked_live_controller.service_item = MagicMock() + # WHEN: I trigger the method + ret = controller_text("SomeText") + # THEN: I get a basic set of results + results = ret['results'] + assert isinstance(results['item'], MagicMock) + assert len(results['slides']) == 0 diff --git a/tmp b/tmp new file mode 100644 index 000000000..904f6349f --- /dev/null +++ b/tmp @@ -0,0 +1,5973 @@ +=== modified file 'copyright.txt' +--- copyright.txt 2016-12-31 11:01:36 +0000 ++++ copyright.txt 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp.py' +--- openlp.py 2017-12-17 04:29:53 +0000 ++++ openlp.py 2017-12-29 08:47:51 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/__init__.py' +--- openlp/__init__.py 2017-10-10 07:08:44 +0000 ++++ openlp/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/__init__.py' +--- openlp/core/__init__.py 2017-10-10 07:08:44 +0000 ++++ openlp/core/__init__.py 2017-12-29 08:53:56 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/__init__.py' +--- openlp/core/api/__init__.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/api/__init__.py 2017-12-29 08:57:15 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/deploy.py' +--- openlp/core/api/deploy.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/api/deploy.py 2017-12-29 08:57:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/endpoint/__init__.py' +--- openlp/core/api/endpoint/__init__.py 2017-03-04 19:17:59 +0000 ++++ openlp/core/api/endpoint/__init__.py 2017-12-29 08:57:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/endpoint/controller.py' +--- openlp/core/api/endpoint/controller.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/api/endpoint/controller.py 2017-12-29 08:57:23 +0000 +@@ -1,11 +1,10 @@ + # -*- coding: utf-8 -*- + # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 + +-import json + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # +@@ -20,6 +19,7 @@ + # with this program; if not, write to the Free Software Foundation, Inc., 59 # + # Temple Place, Suite 330, Boston, MA 02111-1307 USA # + ############################################################################### ++import json + import logging + import os + import urllib.error + +=== modified file 'openlp/core/api/endpoint/core.py' +--- openlp/core/api/endpoint/core.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/api/endpoint/core.py 2017-12-29 08:57:17 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/endpoint/pluginhelpers.py' +--- openlp/core/api/endpoint/pluginhelpers.py 2017-11-18 11:23:15 +0000 ++++ openlp/core/api/endpoint/pluginhelpers.py 2017-12-29 08:57:11 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/endpoint/remote.py' +--- openlp/core/api/endpoint/remote.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/api/endpoint/remote.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/endpoint/service.py' +--- openlp/core/api/endpoint/service.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/api/endpoint/service.py 2017-12-29 08:57:14 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/http/__init__.py' +--- openlp/core/api/http/__init__.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/api/http/__init__.py 2017-12-29 08:57:18 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/http/endpoint.py' +--- openlp/core/api/http/endpoint.py 2017-11-18 11:23:15 +0000 ++++ openlp/core/api/http/endpoint.py 2017-12-29 08:57:19 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/http/errors.py' +--- openlp/core/api/http/errors.py 2017-03-04 19:17:59 +0000 ++++ openlp/core/api/http/errors.py 2017-12-29 08:57:12 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/http/server.py' +--- openlp/core/api/http/server.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/api/http/server.py 2017-12-29 08:57:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/http/wsgiapp.py' +--- openlp/core/api/http/wsgiapp.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/api/http/wsgiapp.py 2017-12-29 08:57:26 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/poll.py' +--- openlp/core/api/poll.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/api/poll.py 2017-12-29 08:57:15 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/tab.py' +--- openlp/core/api/tab.py 2017-10-10 02:29:56 +0000 ++++ openlp/core/api/tab.py 2017-12-29 08:57:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/api/websockets.py' +--- openlp/core/api/websockets.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/api/websockets.py 2017-12-29 08:57:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/app.py' +--- openlp/core/app.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/app.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/__init__.py' +--- openlp/core/common/__init__.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/common/__init__.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/actions.py' +--- openlp/core/common/actions.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/common/actions.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/applocation.py' +--- openlp/core/common/applocation.py 2017-11-11 12:20:45 +0000 ++++ openlp/core/common/applocation.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/db.py' +--- openlp/core/common/db.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/common/db.py 2017-12-29 09:01:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/httputils.py' +--- openlp/core/common/httputils.py 2017-11-03 20:55:41 +0000 ++++ openlp/core/common/httputils.py 2017-12-29 09:01:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/i18n.py' +--- openlp/core/common/i18n.py 2017-10-28 10:04:09 +0000 ++++ openlp/core/common/i18n.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/json.py' +--- openlp/core/common/json.py 2017-09-07 20:27:11 +0000 ++++ openlp/core/common/json.py 2017-12-29 09:01:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/mixins.py' +--- openlp/core/common/mixins.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/common/mixins.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/path.py' +--- openlp/core/common/path.py 2017-11-20 21:57:34 +0000 ++++ openlp/core/common/path.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/registry.py' +--- openlp/core/common/registry.py 2017-11-09 21:24:38 +0000 ++++ openlp/core/common/registry.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/common/settings.py' +--- openlp/core/common/settings.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/common/settings.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/display/__init__.py' +--- openlp/core/display/__init__.py 2017-10-10 07:08:44 +0000 ++++ openlp/core/display/__init__.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/display/renderer.py' +--- openlp/core/display/renderer.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/display/renderer.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/display/screens.py' +--- openlp/core/display/screens.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/display/screens.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/__init__.py' +--- openlp/core/lib/__init__.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/lib/__init__.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/db.py' +--- openlp/core/lib/db.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/lib/db.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/exceptions.py' +--- openlp/core/lib/exceptions.py 2017-05-30 18:42:35 +0000 ++++ openlp/core/lib/exceptions.py 2017-12-29 08:57:27 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/formattingtags.py' +--- openlp/core/lib/formattingtags.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/lib/formattingtags.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/htmlbuilder.py' +--- openlp/core/lib/htmlbuilder.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/lib/htmlbuilder.py 2017-12-29 08:57:16 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/imagemanager.py' +--- openlp/core/lib/imagemanager.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/lib/imagemanager.py 2017-12-29 09:01:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/json/__init__.py' +--- openlp/core/lib/json/__init__.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/lib/json/__init__.py 2017-12-29 08:57:28 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/mediamanageritem.py' +--- openlp/core/lib/mediamanageritem.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/lib/mediamanageritem.py 2017-12-29 09:01:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/plugin.py' +--- openlp/core/lib/plugin.py 2017-11-18 11:23:15 +0000 ++++ openlp/core/lib/plugin.py 2017-12-29 08:57:12 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/pluginmanager.py' +--- openlp/core/lib/pluginmanager.py 2017-12-17 15:25:54 +0000 ++++ openlp/core/lib/pluginmanager.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/serviceitem.py' +--- openlp/core/lib/serviceitem.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/lib/serviceitem.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/settingstab.py' +--- openlp/core/lib/settingstab.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/lib/settingstab.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/theme.py' +--- openlp/core/lib/theme.py 2017-10-10 07:08:44 +0000 ++++ openlp/core/lib/theme.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/lib/ui.py' +--- openlp/core/lib/ui.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/lib/ui.py 2017-12-29 08:57:12 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/projectors/__init__.py' +--- openlp/core/projectors/__init__.py 2017-12-04 00:24:47 +0000 ++++ openlp/core/projectors/__init__.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/projectors/constants.py' +--- openlp/core/projectors/constants.py 2017-12-09 11:17:05 +0000 ++++ openlp/core/projectors/constants.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/projectors/db.py' +--- openlp/core/projectors/db.py 2017-12-04 00:24:47 +0000 ++++ openlp/core/projectors/db.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/projectors/editform.py' +--- openlp/core/projectors/editform.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/projectors/editform.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/projectors/manager.py' +--- openlp/core/projectors/manager.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/projectors/manager.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/projectors/pjlink.py' +--- openlp/core/projectors/pjlink.py 2017-12-09 11:17:05 +0000 ++++ openlp/core/projectors/pjlink.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/projectors/sourceselectform.py' +--- openlp/core/projectors/sourceselectform.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/projectors/sourceselectform.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/projectors/tab.py' +--- openlp/core/projectors/tab.py 2017-11-10 11:59:38 +0000 ++++ openlp/core/projectors/tab.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/projectors/upgrade.py' +--- openlp/core/projectors/upgrade.py 2017-11-10 11:59:38 +0000 ++++ openlp/core/projectors/upgrade.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/resources.py' +--- openlp/core/resources.py 2017-10-01 07:45:53 +0000 ++++ openlp/core/resources.py 2017-12-29 08:53:47 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/threading.py' +--- openlp/core/threading.py 2017-09-09 05:57:06 +0000 ++++ openlp/core/threading.py 2017-12-29 08:53:46 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/__init__.py' +--- openlp/core/ui/__init__.py 2017-11-16 23:53:53 +0000 ++++ openlp/core/ui/__init__.py 2017-12-29 08:53:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/aboutdialog.py' +--- openlp/core/ui/aboutdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/aboutdialog.py 2017-12-29 08:53:50 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/aboutform.py' +--- openlp/core/ui/aboutform.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/aboutform.py 2017-12-29 08:53:49 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/advancedtab.py' +--- openlp/core/ui/advancedtab.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/advancedtab.py 2017-12-29 08:53:53 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/exceptiondialog.py' +--- openlp/core/ui/exceptiondialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/exceptiondialog.py 2017-12-29 08:53:39 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/exceptionform.py' +--- openlp/core/ui/exceptionform.py 2017-11-03 20:55:41 +0000 ++++ openlp/core/ui/exceptionform.py 2017-12-29 08:53:56 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/filerenamedialog.py' +--- openlp/core/ui/filerenamedialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/filerenamedialog.py 2017-12-29 08:53:58 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/filerenameform.py' +--- openlp/core/ui/filerenameform.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/filerenameform.py 2017-12-29 08:53:42 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/firsttimeform.py' +--- openlp/core/ui/firsttimeform.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/firsttimeform.py 2017-12-29 08:53:43 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/firsttimelanguagedialog.py' +--- openlp/core/ui/firsttimelanguagedialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/firsttimelanguagedialog.py 2017-12-29 08:57:17 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/firsttimelanguageform.py' +--- openlp/core/ui/firsttimelanguageform.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/firsttimelanguageform.py 2017-12-29 08:53:57 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/firsttimewizard.py' +--- openlp/core/ui/firsttimewizard.py 2017-11-16 23:53:53 +0000 ++++ openlp/core/ui/firsttimewizard.py 2017-12-29 08:53:44 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/formattingtagcontroller.py' +--- openlp/core/ui/formattingtagcontroller.py 2017-10-28 10:04:09 +0000 ++++ openlp/core/ui/formattingtagcontroller.py 2017-12-29 08:53:42 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/formattingtagdialog.py' +--- openlp/core/ui/formattingtagdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/formattingtagdialog.py 2017-12-29 08:53:54 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/formattingtagform.py' +--- openlp/core/ui/formattingtagform.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/formattingtagform.py 2017-12-29 08:53:44 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/generaltab.py' +--- openlp/core/ui/generaltab.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/generaltab.py 2017-12-29 08:53:57 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/maindisplay.py' +--- openlp/core/ui/maindisplay.py 2017-11-18 22:37:24 +0000 ++++ openlp/core/ui/maindisplay.py 2017-12-29 08:53:43 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/mainwindow.py' +--- openlp/core/ui/mainwindow.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/mainwindow.py 2017-12-29 08:53:45 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/media/__init__.py' +--- openlp/core/ui/media/__init__.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/media/__init__.py 2017-12-29 09:01:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/media/endpoint.py' +--- openlp/core/ui/media/endpoint.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/media/endpoint.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/media/mediacontroller.py' +--- openlp/core/ui/media/mediacontroller.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/media/mediacontroller.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/media/mediaplayer.py' +--- openlp/core/ui/media/mediaplayer.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/media/mediaplayer.py 2017-12-29 08:57:17 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/media/playertab.py' +--- openlp/core/ui/media/playertab.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/media/playertab.py 2017-12-29 08:57:14 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/media/systemplayer.py' +--- openlp/core/ui/media/systemplayer.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/media/systemplayer.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/media/vendor/__init__.py' +--- openlp/core/ui/media/vendor/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/core/ui/media/vendor/__init__.py 2017-12-29 09:01:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/media/vendor/mediainfoWrapper.py' +--- openlp/core/ui/media/vendor/mediainfoWrapper.py 2017-11-16 17:43:17 +0000 ++++ openlp/core/ui/media/vendor/mediainfoWrapper.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/media/vlcplayer.py' +--- openlp/core/ui/media/vlcplayer.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/media/vlcplayer.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/media/webkitplayer.py' +--- openlp/core/ui/media/webkitplayer.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/media/webkitplayer.py 2017-12-29 08:57:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/plugindialog.py' +--- openlp/core/ui/plugindialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/plugindialog.py 2017-12-29 08:53:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/pluginform.py' +--- openlp/core/ui/pluginform.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/pluginform.py 2017-12-29 08:53:46 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/printservicedialog.py' +--- openlp/core/ui/printservicedialog.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/printservicedialog.py 2017-12-29 08:57:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/printserviceform.py' +--- openlp/core/ui/printserviceform.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/printserviceform.py 2017-12-29 08:53:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/serviceitemeditdialog.py' +--- openlp/core/ui/serviceitemeditdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/serviceitemeditdialog.py 2017-12-29 08:53:48 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/serviceitemeditform.py' +--- openlp/core/ui/serviceitemeditform.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/serviceitemeditform.py 2017-12-29 08:53:49 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/servicemanager.py' +--- openlp/core/ui/servicemanager.py 2017-12-22 21:21:39 +0000 ++++ openlp/core/ui/servicemanager.py 2017-12-29 08:53:46 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/servicenoteform.py' +--- openlp/core/ui/servicenoteform.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/servicenoteform.py 2017-12-29 08:53:56 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/settingsdialog.py' +--- openlp/core/ui/settingsdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/settingsdialog.py 2017-12-29 08:53:43 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/settingsform.py' +--- openlp/core/ui/settingsform.py 2017-11-16 23:53:53 +0000 ++++ openlp/core/ui/settingsform.py 2017-12-29 08:53:43 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/shortcutlistdialog.py' +--- openlp/core/ui/shortcutlistdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/shortcutlistdialog.py 2017-12-29 08:53:41 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/shortcutlistform.py' +--- openlp/core/ui/shortcutlistform.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/shortcutlistform.py 2017-12-29 08:57:14 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/slidecontroller.py' +--- openlp/core/ui/slidecontroller.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/slidecontroller.py 2017-12-29 08:53:39 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/splashscreen.py' +--- openlp/core/ui/splashscreen.py 2016-12-31 11:01:36 +0000 ++++ openlp/core/ui/splashscreen.py 2017-12-29 08:53:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/starttimedialog.py' +--- openlp/core/ui/starttimedialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/starttimedialog.py 2017-12-29 08:53:57 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/starttimeform.py' +--- openlp/core/ui/starttimeform.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/starttimeform.py 2017-12-29 08:53:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/style.py' +--- openlp/core/ui/style.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/ui/style.py 2017-12-29 08:53:40 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/themeform.py' +--- openlp/core/ui/themeform.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/themeform.py 2017-12-29 08:53:43 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/themelayoutdialog.py' +--- openlp/core/ui/themelayoutdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/themelayoutdialog.py 2017-12-29 08:53:46 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/themelayoutform.py' +--- openlp/core/ui/themelayoutform.py 2016-12-31 11:01:36 +0000 ++++ openlp/core/ui/themelayoutform.py 2017-12-29 08:53:58 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/thememanager.py' +--- openlp/core/ui/thememanager.py 2017-11-20 21:57:34 +0000 ++++ openlp/core/ui/thememanager.py 2017-12-29 08:57:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/themestab.py' +--- openlp/core/ui/themestab.py 2017-10-07 07:05:07 +0000 ++++ openlp/core/ui/themestab.py 2017-12-29 08:53:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/ui/themewizard.py' +--- openlp/core/ui/themewizard.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/ui/themewizard.py 2017-12-29 08:53:50 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/version.py' +--- openlp/core/version.py 2017-11-18 11:23:15 +0000 ++++ openlp/core/version.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/widgets/__init__.py' +--- openlp/core/widgets/__init__.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/widgets/__init__.py 2017-12-29 09:01:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/widgets/buttons.py' +--- openlp/core/widgets/buttons.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/widgets/buttons.py 2017-12-29 08:57:12 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/widgets/dialogs.py' +--- openlp/core/widgets/dialogs.py 2017-12-28 08:27:44 +0000 ++++ openlp/core/widgets/dialogs.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/widgets/docks.py' +--- openlp/core/widgets/docks.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/widgets/docks.py 2017-12-29 08:57:16 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/widgets/edits.py' +--- openlp/core/widgets/edits.py 2017-11-11 12:20:45 +0000 ++++ openlp/core/widgets/edits.py 2017-12-29 08:57:11 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/widgets/enums.py' +--- openlp/core/widgets/enums.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/widgets/enums.py 2017-12-29 08:57:18 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/widgets/toolbar.py' +--- openlp/core/widgets/toolbar.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/widgets/toolbar.py 2017-12-29 09:01:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/widgets/views.py' +--- openlp/core/widgets/views.py 2017-12-17 04:29:53 +0000 ++++ openlp/core/widgets/views.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/core/widgets/wizard.py' +--- openlp/core/widgets/wizard.py 2017-10-23 22:09:57 +0000 ++++ openlp/core/widgets/wizard.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/__init__.py' +--- openlp/plugins/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/__init__.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/alerts/__init__.py' +--- openlp/plugins/alerts/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/alerts/__init__.py 2017-12-29 08:57:18 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/alerts/alertsplugin.py' +--- openlp/plugins/alerts/alertsplugin.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/alerts/alertsplugin.py 2017-12-29 08:57:14 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/alerts/endpoint.py' +--- openlp/plugins/alerts/endpoint.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/alerts/endpoint.py 2017-12-29 08:57:13 +0000 +@@ -1,11 +1,10 @@ + # -*- coding: utf-8 -*- + # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 + +-import json + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # +@@ -20,6 +19,7 @@ + # with this program; if not, write to the Free Software Foundation, Inc., 59 # + # Temple Place, Suite 330, Boston, MA 02111-1307 USA # + ############################################################################### ++import json + import logging + import urllib + from urllib.parse import urlparse + +=== modified file 'openlp/plugins/alerts/forms/__init__.py' +--- openlp/plugins/alerts/forms/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/alerts/forms/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/alerts/forms/alertdialog.py' +--- openlp/plugins/alerts/forms/alertdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/alerts/forms/alertdialog.py 2017-12-29 08:57:19 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/alerts/forms/alertform.py' +--- openlp/plugins/alerts/forms/alertform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/alerts/forms/alertform.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/alerts/lib/__init__.py' +--- openlp/plugins/alerts/lib/__init__.py 2017-03-03 19:27:31 +0000 ++++ openlp/plugins/alerts/lib/__init__.py 2017-12-29 08:57:19 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/alerts/lib/alertsmanager.py' +--- openlp/plugins/alerts/lib/alertsmanager.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/alerts/lib/alertsmanager.py 2017-12-29 08:57:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/alerts/lib/alertstab.py' +--- openlp/plugins/alerts/lib/alertstab.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/alerts/lib/alertstab.py 2017-12-29 08:57:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/alerts/lib/db.py' +--- openlp/plugins/alerts/lib/db.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/alerts/lib/db.py 2017-12-29 08:57:28 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/__init__.py' +--- openlp/plugins/bibles/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/bibles/__init__.py 2017-12-29 08:57:12 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/bibleplugin.py' +--- openlp/plugins/bibles/bibleplugin.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/bibleplugin.py 2017-12-29 08:57:18 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/endpoint.py' +--- openlp/plugins/bibles/endpoint.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/endpoint.py 2017-12-29 08:57:12 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/forms/__init__.py' +--- openlp/plugins/bibles/forms/__init__.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/forms/__init__.py 2017-12-29 08:53:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/forms/bibleimportform.py' +--- openlp/plugins/bibles/forms/bibleimportform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/forms/bibleimportform.py 2017-12-29 08:53:41 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/forms/booknamedialog.py' +--- openlp/plugins/bibles/forms/booknamedialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/bibles/forms/booknamedialog.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/forms/booknameform.py' +--- openlp/plugins/bibles/forms/booknameform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/forms/booknameform.py 2017-12-29 08:53:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/forms/editbibledialog.py' +--- openlp/plugins/bibles/forms/editbibledialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/bibles/forms/editbibledialog.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/forms/editbibleform.py' +--- openlp/plugins/bibles/forms/editbibleform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/forms/editbibleform.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/forms/languagedialog.py' +--- openlp/plugins/bibles/forms/languagedialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/bibles/forms/languagedialog.py 2017-12-29 08:53:39 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/forms/languageform.py' +--- openlp/plugins/bibles/forms/languageform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/forms/languageform.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/__init__.py' +--- openlp/plugins/bibles/lib/__init__.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/lib/__init__.py 2017-12-29 08:53:49 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/bibleimport.py' +--- openlp/plugins/bibles/lib/bibleimport.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/lib/bibleimport.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/biblestab.py' +--- openlp/plugins/bibles/lib/biblestab.py 2017-10-10 19:17:48 +0000 ++++ openlp/plugins/bibles/lib/biblestab.py 2017-12-29 08:53:42 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/db.py' +--- openlp/plugins/bibles/lib/db.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/lib/db.py 2017-12-29 09:01:25 +0000 +@@ -1,15 +1,10 @@ + # -*- coding: utf-8 -*- + # vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4 + +-import logging +-import re +-import sqlite3 +-import time +- + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # +@@ -24,7 +19,13 @@ + # with this program; if not, write to the Free Software Foundation, Inc., 59 # + # Temple Place, Suite 330, Boston, MA 02111-1307 USA # + ############################################################################### ++ + import chardet ++import logging ++import re ++import sqlite3 ++import time ++ + from PyQt5 import QtCore + from sqlalchemy import Column, ForeignKey, Table, or_, types, func + from sqlalchemy.exc import OperationalError + +=== modified file 'openlp/plugins/bibles/lib/importers/__init__.py' +--- openlp/plugins/bibles/lib/importers/__init__.py 2017-10-10 21:16:04 +0000 ++++ openlp/plugins/bibles/lib/importers/__init__.py 2017-12-29 08:57:16 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/importers/csvbible.py' +--- openlp/plugins/bibles/lib/importers/csvbible.py 2017-10-10 19:17:48 +0000 ++++ openlp/plugins/bibles/lib/importers/csvbible.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/importers/http.py' +--- openlp/plugins/bibles/lib/importers/http.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/lib/importers/http.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/importers/opensong.py' +--- openlp/plugins/bibles/lib/importers/opensong.py 2017-10-10 19:09:20 +0000 ++++ openlp/plugins/bibles/lib/importers/opensong.py 2017-12-29 08:57:28 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/importers/osis.py' +--- openlp/plugins/bibles/lib/importers/osis.py 2017-10-10 19:09:20 +0000 ++++ openlp/plugins/bibles/lib/importers/osis.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/importers/sword.py' +--- openlp/plugins/bibles/lib/importers/sword.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/lib/importers/sword.py 2017-12-29 08:57:13 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/importers/wordproject.py' +--- openlp/plugins/bibles/lib/importers/wordproject.py 2017-10-10 19:09:20 +0000 ++++ openlp/plugins/bibles/lib/importers/wordproject.py 2017-12-29 08:57:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/importers/zefania.py' +--- openlp/plugins/bibles/lib/importers/zefania.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/lib/importers/zefania.py 2017-12-29 09:01:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/manager.py' +--- openlp/plugins/bibles/lib/manager.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/bibles/lib/manager.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/mediaitem.py' +--- openlp/plugins/bibles/lib/mediaitem.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/bibles/lib/mediaitem.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/upgrade.py' +--- openlp/plugins/bibles/lib/upgrade.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/bibles/lib/upgrade.py 2017-12-29 08:53:48 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/bibles/lib/versereferencelist.py' +--- openlp/plugins/bibles/lib/versereferencelist.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/bibles/lib/versereferencelist.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/__init__.py' +--- openlp/plugins/custom/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/custom/__init__.py 2017-12-29 08:57:13 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/customplugin.py' +--- openlp/plugins/custom/customplugin.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/custom/customplugin.py 2017-12-29 08:57:16 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/endpoint.py' +--- openlp/plugins/custom/endpoint.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/custom/endpoint.py 2017-12-29 08:57:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/forms/__init__.py' +--- openlp/plugins/custom/forms/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/custom/forms/__init__.py 2017-12-29 08:53:41 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/forms/editcustomdialog.py' +--- openlp/plugins/custom/forms/editcustomdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/custom/forms/editcustomdialog.py 2017-12-29 08:53:40 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/forms/editcustomform.py' +--- openlp/plugins/custom/forms/editcustomform.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/custom/forms/editcustomform.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/forms/editcustomslidedialog.py' +--- openlp/plugins/custom/forms/editcustomslidedialog.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/custom/forms/editcustomslidedialog.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/forms/editcustomslideform.py' +--- openlp/plugins/custom/forms/editcustomslideform.py 2017-06-04 12:14:23 +0000 ++++ openlp/plugins/custom/forms/editcustomslideform.py 2017-12-29 08:53:45 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/lib/__init__.py' +--- openlp/plugins/custom/lib/__init__.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/custom/lib/__init__.py 2017-12-29 08:53:49 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/lib/customtab.py' +--- openlp/plugins/custom/lib/customtab.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/custom/lib/customtab.py 2017-12-29 08:53:46 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/lib/customxmlhandler.py' +--- openlp/plugins/custom/lib/customxmlhandler.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/custom/lib/customxmlhandler.py 2017-12-29 08:53:59 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/lib/db.py' +--- openlp/plugins/custom/lib/db.py 2017-11-13 21:40:49 +0000 ++++ openlp/plugins/custom/lib/db.py 2017-12-29 08:53:42 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/custom/lib/mediaitem.py' +--- openlp/plugins/custom/lib/mediaitem.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/custom/lib/mediaitem.py 2017-12-29 08:53:53 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/__init__.py' +--- openlp/plugins/images/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/images/__init__.py 2017-12-29 08:57:16 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/endpoint.py' +--- openlp/plugins/images/endpoint.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/images/endpoint.py 2017-12-29 08:57:16 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/forms/__init__.py' +--- openlp/plugins/images/forms/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/images/forms/__init__.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/forms/addgroupdialog.py' +--- openlp/plugins/images/forms/addgroupdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/images/forms/addgroupdialog.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/forms/addgroupform.py' +--- openlp/plugins/images/forms/addgroupform.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/images/forms/addgroupform.py 2017-12-29 09:01:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/forms/choosegroupdialog.py' +--- openlp/plugins/images/forms/choosegroupdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/images/forms/choosegroupdialog.py 2017-12-29 08:57:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/forms/choosegroupform.py' +--- openlp/plugins/images/forms/choosegroupform.py 2017-06-04 12:14:23 +0000 ++++ openlp/plugins/images/forms/choosegroupform.py 2017-12-29 08:57:17 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/imageplugin.py' +--- openlp/plugins/images/imageplugin.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/images/imageplugin.py 2017-12-29 08:57:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/lib/__init__.py' +--- openlp/plugins/images/lib/__init__.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/images/lib/__init__.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/lib/db.py' +--- openlp/plugins/images/lib/db.py 2017-09-23 13:06:42 +0000 ++++ openlp/plugins/images/lib/db.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/lib/imagetab.py' +--- openlp/plugins/images/lib/imagetab.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/images/lib/imagetab.py 2017-12-29 09:01:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/lib/mediaitem.py' +--- openlp/plugins/images/lib/mediaitem.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/images/lib/mediaitem.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/images/lib/upgrade.py' +--- openlp/plugins/images/lib/upgrade.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/images/lib/upgrade.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/media/__init__.py' +--- openlp/plugins/media/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/media/__init__.py 2017-12-29 08:57:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/media/endpoint.py' +--- openlp/plugins/media/endpoint.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/media/endpoint.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/media/forms/__init__.py' +--- openlp/plugins/media/forms/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/media/forms/__init__.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/media/forms/mediaclipselectordialog.py' +--- openlp/plugins/media/forms/mediaclipselectordialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/media/forms/mediaclipselectordialog.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/media/forms/mediaclipselectorform.py' +--- openlp/plugins/media/forms/mediaclipselectorform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/media/forms/mediaclipselectorform.py 2017-12-29 08:57:27 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/media/lib/__init__.py' +--- openlp/plugins/media/lib/__init__.py 2017-03-03 19:27:31 +0000 ++++ openlp/plugins/media/lib/__init__.py 2017-12-29 08:57:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/media/lib/mediaitem.py' +--- openlp/plugins/media/lib/mediaitem.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/media/lib/mediaitem.py 2017-12-29 08:57:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/media/lib/mediatab.py' +--- openlp/plugins/media/lib/mediatab.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/media/lib/mediatab.py 2017-12-29 08:57:15 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/media/mediaplugin.py' +--- openlp/plugins/media/mediaplugin.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/media/mediaplugin.py 2017-12-29 09:01:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/__init__.py' +--- openlp/plugins/presentations/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/presentations/__init__.py 2017-12-29 08:57:18 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/endpoint.py' +--- openlp/plugins/presentations/endpoint.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/presentations/endpoint.py 2017-12-29 08:57:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/lib/__init__.py' +--- openlp/plugins/presentations/lib/__init__.py 2017-03-03 19:27:31 +0000 ++++ openlp/plugins/presentations/lib/__init__.py 2017-12-29 08:53:44 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/lib/impresscontroller.py' +--- openlp/plugins/presentations/lib/impresscontroller.py 2017-10-10 07:08:44 +0000 ++++ openlp/plugins/presentations/lib/impresscontroller.py 2017-12-29 08:53:53 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/lib/mediaitem.py' +--- openlp/plugins/presentations/lib/mediaitem.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/presentations/lib/mediaitem.py 2017-12-29 08:53:40 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/lib/messagelistener.py' +--- openlp/plugins/presentations/lib/messagelistener.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/presentations/lib/messagelistener.py 2017-12-29 08:53:46 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/lib/pdfcontroller.py' +--- openlp/plugins/presentations/lib/pdfcontroller.py 2017-11-15 21:58:19 +0000 ++++ openlp/plugins/presentations/lib/pdfcontroller.py 2017-12-29 08:53:44 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/lib/powerpointcontroller.py' +--- openlp/plugins/presentations/lib/powerpointcontroller.py 2017-10-10 07:08:44 +0000 ++++ openlp/plugins/presentations/lib/powerpointcontroller.py 2017-12-29 08:53:58 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/lib/pptviewcontroller.py' +--- openlp/plugins/presentations/lib/pptviewcontroller.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/presentations/lib/pptviewcontroller.py 2017-12-29 08:53:42 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/lib/pptviewlib/README.TXT' +--- openlp/plugins/presentations/lib/pptviewlib/README.TXT 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/presentations/lib/pptviewlib/README.TXT 2017-12-29 08:57:13 +0000 +@@ -1,6 +1,6 @@ + + PPTVIEWLIB - Control PowerPoint Viewer 2003/2007 (for openlp.org) +-Copyright (C) 2008-2017 Jonathan Corwin (j@corwin.co.uk) ++Copyright (C) 2008-2018 Jonathan Corwin (j@corwin.co.uk) + + This library wrappers the free Microsoft PowerPoint Viewer (2003/2007) program, + allowing it to be more easily controlled from another program. + +=== modified file 'openlp/plugins/presentations/lib/pptviewlib/ppttest.py' +--- openlp/plugins/presentations/lib/pptviewlib/ppttest.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/presentations/lib/pptviewlib/ppttest.py 2017-12-29 08:53:41 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp' +--- openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp 2017-12-29 08:53:55 +0000 +@@ -1,7 +1,7 @@ + /****************************************************************************** + * OpenLP - Open Source Lyrics Projection * + * --------------------------------------------------------------------------- * +-* Copyright (c) 2008-2017 OpenLP Developers * ++* Copyright (c) 2008-2018 OpenLP Developers * + * --------------------------------------------------------------------------- * + * 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 * + +=== modified file 'openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h' +--- openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h 2017-12-29 08:57:14 +0000 +@@ -1,7 +1,7 @@ + /****************************************************************************** + * OpenLP - Open Source Lyrics Projection * + * --------------------------------------------------------------------------- * +-* Copyright (c) 2008-2017 OpenLP Developers * ++* Copyright (c) 2008-2018 OpenLP Developers * + * --------------------------------------------------------------------------- * + * 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 * + +=== modified file 'openlp/plugins/presentations/lib/presentationcontroller.py' +--- openlp/plugins/presentations/lib/presentationcontroller.py 2017-11-20 21:57:34 +0000 ++++ openlp/plugins/presentations/lib/presentationcontroller.py 2017-12-29 08:53:39 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/lib/presentationtab.py' +--- openlp/plugins/presentations/lib/presentationtab.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/presentations/lib/presentationtab.py 2017-12-29 08:53:59 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/presentations/presentationplugin.py' +--- openlp/plugins/presentations/presentationplugin.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/presentations/presentationplugin.py 2017-12-29 08:57:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/__init__.py' +--- openlp/plugins/songs/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/songs/__init__.py 2017-12-29 08:57:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/endpoint.py' +--- openlp/plugins/songs/endpoint.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/endpoint.py 2017-12-29 08:57:16 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/__init__.py' +--- openlp/plugins/songs/forms/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/songs/forms/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/authorsdialog.py' +--- openlp/plugins/songs/forms/authorsdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/forms/authorsdialog.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/authorsform.py' +--- openlp/plugins/songs/forms/authorsform.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/forms/authorsform.py 2017-12-29 08:57:27 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/duplicatesongremovalform.py' +--- openlp/plugins/songs/forms/duplicatesongremovalform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/forms/duplicatesongremovalform.py 2017-12-29 08:57:28 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/editsongdialog.py' +--- openlp/plugins/songs/forms/editsongdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/forms/editsongdialog.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/editsongform.py' +--- openlp/plugins/songs/forms/editsongform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/forms/editsongform.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/editversedialog.py' +--- openlp/plugins/songs/forms/editversedialog.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/forms/editversedialog.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/editverseform.py' +--- openlp/plugins/songs/forms/editverseform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/forms/editverseform.py 2017-12-29 08:47:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/mediafilesdialog.py' +--- openlp/plugins/songs/forms/mediafilesdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/forms/mediafilesdialog.py 2017-12-29 08:53:49 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/mediafilesform.py' +--- openlp/plugins/songs/forms/mediafilesform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/forms/mediafilesform.py 2017-12-29 08:53:50 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/songbookdialog.py' +--- openlp/plugins/songs/forms/songbookdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/forms/songbookdialog.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/songbookform.py' +--- openlp/plugins/songs/forms/songbookform.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/forms/songbookform.py 2017-12-29 08:53:55 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/songexportform.py' +--- openlp/plugins/songs/forms/songexportform.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/songs/forms/songexportform.py 2017-12-29 08:53:54 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/songimportform.py' +--- openlp/plugins/songs/forms/songimportform.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/songs/forms/songimportform.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/songmaintenancedialog.py' +--- openlp/plugins/songs/forms/songmaintenancedialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/forms/songmaintenancedialog.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/songmaintenanceform.py' +--- openlp/plugins/songs/forms/songmaintenanceform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/forms/songmaintenanceform.py 2017-12-29 08:47:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/songreviewwidget.py' +--- openlp/plugins/songs/forms/songreviewwidget.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/songs/forms/songreviewwidget.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/songselectdialog.py' +--- openlp/plugins/songs/forms/songselectdialog.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/songs/forms/songselectdialog.py 2017-12-29 08:53:42 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/songselectform.py' +--- openlp/plugins/songs/forms/songselectform.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/forms/songselectform.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/topicsdialog.py' +--- openlp/plugins/songs/forms/topicsdialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/forms/topicsdialog.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/forms/topicsform.py' +--- openlp/plugins/songs/forms/topicsform.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/forms/topicsform.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/__init__.py' +--- openlp/plugins/songs/lib/__init__.py 2017-10-28 10:04:09 +0000 ++++ openlp/plugins/songs/lib/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/db.py' +--- openlp/plugins/songs/lib/db.py 2017-10-10 02:29:56 +0000 ++++ openlp/plugins/songs/lib/db.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importer.py' +--- openlp/plugins/songs/lib/importer.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importer.py 2017-12-29 08:53:56 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/__init__.py' +--- openlp/plugins/songs/lib/importers/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/songs/lib/importers/__init__.py 2017-12-29 08:57:15 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/cclifile.py' +--- openlp/plugins/songs/lib/importers/cclifile.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/cclifile.py 2017-12-29 09:01:19 +0000 +@@ -7,7 +7,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/dreambeam.py' +--- openlp/plugins/songs/lib/importers/dreambeam.py 2017-10-10 02:29:56 +0000 ++++ openlp/plugins/songs/lib/importers/dreambeam.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/easyslides.py' +--- openlp/plugins/songs/lib/importers/easyslides.py 2017-10-28 10:04:09 +0000 ++++ openlp/plugins/songs/lib/importers/easyslides.py 2017-12-29 08:57:15 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/easyworship.py' +--- openlp/plugins/songs/lib/importers/easyworship.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/easyworship.py 2017-12-29 08:57:29 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/foilpresenter.py' +--- openlp/plugins/songs/lib/importers/foilpresenter.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/foilpresenter.py 2017-12-29 08:57:11 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/lyrix.py' +--- openlp/plugins/songs/lib/importers/lyrix.py 2017-10-10 02:29:56 +0000 ++++ openlp/plugins/songs/lib/importers/lyrix.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/mediashout.py' +--- openlp/plugins/songs/lib/importers/mediashout.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/mediashout.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/openlp.py' +--- openlp/plugins/songs/lib/importers/openlp.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/songs/lib/importers/openlp.py 2017-12-29 08:57:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/openlyrics.py' +--- openlp/plugins/songs/lib/importers/openlyrics.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/openlyrics.py 2017-12-29 08:57:11 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/openoffice.py' +--- openlp/plugins/songs/lib/importers/openoffice.py 2017-10-28 10:04:09 +0000 ++++ openlp/plugins/songs/lib/importers/openoffice.py 2017-12-29 08:57:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/opensong.py' +--- openlp/plugins/songs/lib/importers/opensong.py 2017-10-28 10:04:09 +0000 ++++ openlp/plugins/songs/lib/importers/opensong.py 2017-12-29 08:57:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/opspro.py' +--- openlp/plugins/songs/lib/importers/opspro.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/opspro.py 2017-12-29 09:01:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/powerpraise.py' +--- openlp/plugins/songs/lib/importers/powerpraise.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/songs/lib/importers/powerpraise.py 2017-12-29 08:57:14 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/powersong.py' +--- openlp/plugins/songs/lib/importers/powersong.py 2017-12-17 04:29:53 +0000 ++++ openlp/plugins/songs/lib/importers/powersong.py 2017-12-29 08:57:12 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/presentationmanager.py' +--- openlp/plugins/songs/lib/importers/presentationmanager.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/presentationmanager.py 2017-12-29 08:57:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/propresenter.py' +--- openlp/plugins/songs/lib/importers/propresenter.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/propresenter.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/songbeamer.py' +--- openlp/plugins/songs/lib/importers/songbeamer.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/songbeamer.py 2017-12-29 08:57:15 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/songimport.py' +--- openlp/plugins/songs/lib/importers/songimport.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/songimport.py 2017-12-29 08:57:17 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/songpro.py' +--- openlp/plugins/songs/lib/importers/songpro.py 2017-09-30 20:16:30 +0000 ++++ openlp/plugins/songs/lib/importers/songpro.py 2017-12-29 08:57:14 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/songshowplus.py' +--- openlp/plugins/songs/lib/importers/songshowplus.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/songs/lib/importers/songshowplus.py 2017-12-29 09:01:20 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/songsoffellowship.py' +--- openlp/plugins/songs/lib/importers/songsoffellowship.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/songsoffellowship.py 2017-12-29 08:57:11 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/sundayplus.py' +--- openlp/plugins/songs/lib/importers/sundayplus.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/sundayplus.py 2017-12-29 08:57:11 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/videopsalm.py' +--- openlp/plugins/songs/lib/importers/videopsalm.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/videopsalm.py 2017-12-29 08:57:12 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/wordsofworship.py' +--- openlp/plugins/songs/lib/importers/wordsofworship.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/wordsofworship.py 2017-12-29 08:57:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/worshipassistant.py' +--- openlp/plugins/songs/lib/importers/worshipassistant.py 2017-10-10 02:29:56 +0000 ++++ openlp/plugins/songs/lib/importers/worshipassistant.py 2017-12-29 09:01:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/worshipcenterpro.py' +--- openlp/plugins/songs/lib/importers/worshipcenterpro.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/importers/worshipcenterpro.py 2017-12-29 08:57:14 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/importers/zionworx.py' +--- openlp/plugins/songs/lib/importers/zionworx.py 2017-10-28 18:58:34 +0000 ++++ openlp/plugins/songs/lib/importers/zionworx.py 2017-12-29 08:57:17 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/mediaitem.py' +--- openlp/plugins/songs/lib/mediaitem.py 2017-10-10 02:29:56 +0000 ++++ openlp/plugins/songs/lib/mediaitem.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/openlyricsexport.py' +--- openlp/plugins/songs/lib/openlyricsexport.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/openlyricsexport.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/openlyricsxml.py' +--- openlp/plugins/songs/lib/openlyricsxml.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/openlyricsxml.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/songcompare.py' +--- openlp/plugins/songs/lib/songcompare.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/songs/lib/songcompare.py 2017-12-29 08:53:40 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/songselect.py' +--- openlp/plugins/songs/lib/songselect.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/lib/songselect.py 2017-12-29 09:01:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/songstab.py' +--- openlp/plugins/songs/lib/songstab.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/lib/songstab.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/ui.py' +--- openlp/plugins/songs/lib/ui.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songs/lib/ui.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/lib/upgrade.py' +--- openlp/plugins/songs/lib/upgrade.py 2017-10-10 02:40:41 +0000 ++++ openlp/plugins/songs/lib/upgrade.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/reporting.py' +--- openlp/plugins/songs/reporting.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/songs/reporting.py 2017-12-29 08:57:11 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songs/songsplugin.py' +--- openlp/plugins/songs/songsplugin.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songs/songsplugin.py 2017-12-29 08:57:27 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songusage/__init__.py' +--- openlp/plugins/songusage/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/songusage/__init__.py 2017-12-29 08:57:13 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songusage/forms/__init__.py' +--- openlp/plugins/songusage/forms/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/songusage/forms/__init__.py 2017-12-29 08:53:53 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songusage/forms/songusagedeletedialog.py' +--- openlp/plugins/songusage/forms/songusagedeletedialog.py 2017-10-07 07:05:07 +0000 ++++ openlp/plugins/songusage/forms/songusagedeletedialog.py 2017-12-29 08:53:44 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songusage/forms/songusagedeleteform.py' +--- openlp/plugins/songusage/forms/songusagedeleteform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songusage/forms/songusagedeleteform.py 2017-12-29 08:53:49 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songusage/forms/songusagedetaildialog.py' +--- openlp/plugins/songusage/forms/songusagedetaildialog.py 2017-10-23 22:09:57 +0000 ++++ openlp/plugins/songusage/forms/songusagedetaildialog.py 2017-12-29 08:53:45 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songusage/forms/songusagedetailform.py' +--- openlp/plugins/songusage/forms/songusagedetailform.py 2017-12-28 08:08:12 +0000 ++++ openlp/plugins/songusage/forms/songusagedetailform.py 2017-12-29 08:53:45 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songusage/lib/__init__.py' +--- openlp/plugins/songusage/lib/__init__.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/songusage/lib/__init__.py 2017-12-29 08:57:15 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songusage/lib/db.py' +--- openlp/plugins/songusage/lib/db.py 2016-12-31 11:01:36 +0000 ++++ openlp/plugins/songusage/lib/db.py 2017-12-29 08:57:18 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songusage/lib/upgrade.py' +--- openlp/plugins/songusage/lib/upgrade.py 2017-06-09 12:12:39 +0000 ++++ openlp/plugins/songusage/lib/upgrade.py 2017-12-29 08:53:55 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'openlp/plugins/songusage/songusageplugin.py' +--- openlp/plugins/songusage/songusageplugin.py 2017-11-02 21:46:02 +0000 ++++ openlp/plugins/songusage/songusageplugin.py 2017-12-29 08:57:26 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'scripts/appveyor-webhook.py' +--- scripts/appveyor-webhook.py 2017-05-03 20:16:52 +0000 ++++ scripts/appveyor-webhook.py 2017-12-29 08:57:27 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'scripts/check_dependencies.py' +--- scripts/check_dependencies.py 2017-09-13 06:08:38 +0000 ++++ scripts/check_dependencies.py 2017-12-29 08:57:13 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'scripts/clean_up_resources.py' +--- scripts/clean_up_resources.py 2016-12-31 11:01:36 +0000 ++++ scripts/clean_up_resources.py 2017-12-29 08:57:22 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'scripts/generate_resources.sh' +--- scripts/generate_resources.sh 2016-12-31 11:01:36 +0000 ++++ scripts/generate_resources.sh 2017-12-29 08:57:23 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'scripts/jenkins_script.py' +--- scripts/jenkins_script.py 2017-12-23 19:15:28 +0000 ++++ scripts/jenkins_script.py 2017-12-29 08:57:13 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'scripts/lp-merge.py' +--- scripts/lp-merge.py 2017-03-23 05:12:37 +0000 ++++ scripts/lp-merge.py 2017-12-29 08:57:22 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'scripts/resources.patch' +--- scripts/resources.patch 2016-12-31 11:01:36 +0000 ++++ scripts/resources.patch 2017-12-29 08:57:23 +0000 +@@ -14,7 +14,7 @@ + +############################################################################### + +# OpenLP - Open Source Lyrics Projection # + +# --------------------------------------------------------------------------- # +-+# Copyright (c) 2008-2017 OpenLP Developers # +++# Copyright (c) 2008-2018 OpenLP Developers # + +# --------------------------------------------------------------------------- # + +# 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 # + +=== modified file 'scripts/translation_utils.py' +--- scripts/translation_utils.py 2016-12-31 11:01:36 +0000 ++++ scripts/translation_utils.py 2017-12-29 08:57:11 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'scripts/websocket_client.py' +--- scripts/websocket_client.py 2017-03-04 19:17:59 +0000 ++++ scripts/websocket_client.py 2017-12-29 08:47:52 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'setup.py' +--- setup.py 2016-12-31 11:01:36 +0000 ++++ setup.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/__init__.py' +--- tests/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/__init__.py' +--- tests/functional/__init__.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/__init__.py' +--- tests/functional/openlp_core/__init__.py 2017-12-28 09:34:04 +0000 ++++ tests/functional/openlp_core/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/api/__init__.py' +--- tests/functional/openlp_core/api/__init__.py 2017-10-10 07:08:44 +0000 ++++ tests/functional/openlp_core/api/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/api/http/__init__.py' +--- tests/functional/openlp_core/api/http/__init__.py 2017-03-04 19:17:59 +0000 ++++ tests/functional/openlp_core/api/http/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/api/http/test_error.py' +--- tests/functional/openlp_core/api/http/test_error.py 2017-12-09 15:00:39 +0000 ++++ tests/functional/openlp_core/api/http/test_error.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/api/http/test_http.py' +--- tests/functional/openlp_core/api/http/test_http.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_core/api/http/test_http.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/api/http/test_wsgiapp.py' +--- tests/functional/openlp_core/api/http/test_wsgiapp.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_core/api/http/test_wsgiapp.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/api/test_deploy.py' +--- tests/functional/openlp_core/api/test_deploy.py 2017-12-09 15:21:59 +0000 ++++ tests/functional/openlp_core/api/test_deploy.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/api/test_tab.py' +--- tests/functional/openlp_core/api/test_tab.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/api/test_tab.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/api/test_websockets.py' +--- tests/functional/openlp_core/api/test_websockets.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/api/test_websockets.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/__init__.py' +--- tests/functional/openlp_core/common/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_core/common/__init__.py 2017-12-29 09:01:24 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_actions.py' +--- tests/functional/openlp_core/common/test_actions.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/common/test_actions.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_applocation.py' +--- tests/functional/openlp_core/common/test_applocation.py 2017-10-07 07:05:07 +0000 ++++ tests/functional/openlp_core/common/test_applocation.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_common.py' +--- tests/functional/openlp_core/common/test_common.py 2017-12-16 08:43:33 +0000 ++++ tests/functional/openlp_core/common/test_common.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_db.py' +--- tests/functional/openlp_core/common/test_db.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_core/common/test_db.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_httputils.py' +--- tests/functional/openlp_core/common/test_httputils.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/common/test_httputils.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_i18n.py' +--- tests/functional/openlp_core/common/test_i18n.py 2017-12-01 00:31:48 +0000 ++++ tests/functional/openlp_core/common/test_i18n.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_json.py' +--- tests/functional/openlp_core/common/test_json.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/common/test_json.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_mixins.py' +--- tests/functional/openlp_core/common/test_mixins.py 2017-12-15 16:19:42 +0000 ++++ tests/functional/openlp_core/common/test_mixins.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_path.py' +--- tests/functional/openlp_core/common/test_path.py 2017-12-15 16:19:42 +0000 ++++ tests/functional/openlp_core/common/test_path.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_projector_utilities.py' +--- tests/functional/openlp_core/common/test_projector_utilities.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/common/test_projector_utilities.py 2017-12-29 09:01:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_registry.py' +--- tests/functional/openlp_core/common/test_registry.py 2017-12-22 21:20:49 +0000 ++++ tests/functional/openlp_core/common/test_registry.py 2017-12-29 09:01:25 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/common/test_settings.py' +--- tests/functional/openlp_core/common/test_settings.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/common/test_settings.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/display/__init__.py' +--- tests/functional/openlp_core/display/__init__.py 2017-10-10 07:08:44 +0000 ++++ tests/functional/openlp_core/display/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/display/test_renderer.py' +--- tests/functional/openlp_core/display/test_renderer.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/display/test_renderer.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/display/test_screens.py' +--- tests/functional/openlp_core/display/test_screens.py 2017-12-17 14:12:27 +0000 ++++ tests/functional/openlp_core/display/test_screens.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/test_app.py' +--- tests/functional/openlp_core/test_app.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/test_app.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/test_version.py' +--- tests/functional/openlp_core/test_version.py 2017-09-13 06:08:38 +0000 ++++ tests/functional/openlp_core/test_version.py 2017-12-29 08:47:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/ui/media/__init__.py' +--- tests/functional/openlp_core/ui/media/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_core/ui/media/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/ui/media/test_mediacontroller.py' +--- tests/functional/openlp_core/ui/media/test_mediacontroller.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_core/ui/media/test_mediacontroller.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/ui/media/test_systemplayer.py' +--- tests/functional/openlp_core/ui/media/test_systemplayer.py 2017-12-22 10:45:39 +0000 ++++ tests/functional/openlp_core/ui/media/test_systemplayer.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/ui/media/test_vlcplayer.py' +--- tests/functional/openlp_core/ui/media/test_vlcplayer.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_core/ui/media/test_vlcplayer.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/ui/media/test_webkitplayer.py' +--- tests/functional/openlp_core/ui/media/test_webkitplayer.py 2017-12-20 17:24:56 +0000 ++++ tests/functional/openlp_core/ui/media/test_webkitplayer.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/ui/test_advancedtab.py' +--- tests/functional/openlp_core/ui/test_advancedtab.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/ui/test_advancedtab.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/ui/test_mainwindow.py' +--- tests/functional/openlp_core/ui/test_mainwindow.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/ui/test_mainwindow.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/ui/test_style.py' +--- tests/functional/openlp_core/ui/test_style.py 2017-10-10 02:40:41 +0000 ++++ tests/functional/openlp_core/ui/test_style.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/widgets/__init__.py' +--- tests/functional/openlp_core/widgets/__init__.py 2017-10-23 22:09:57 +0000 ++++ tests/functional/openlp_core/widgets/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/widgets/test_buttons.py' +--- tests/functional/openlp_core/widgets/test_buttons.py 2017-12-19 19:22:47 +0000 ++++ tests/functional/openlp_core/widgets/test_buttons.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/widgets/test_edits.py' +--- tests/functional/openlp_core/widgets/test_edits.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_core/widgets/test_edits.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_core/widgets/test_views.py' +--- tests/functional/openlp_core/widgets/test_views.py 2017-12-24 07:40:07 +0000 ++++ tests/functional/openlp_core/widgets/test_views.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/__init__.py' +--- tests/functional/openlp_plugins/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_plugins/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/alerts/__init__.py' +--- tests/functional/openlp_plugins/alerts/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_plugins/alerts/__init__.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/alerts/test_manager.py' +--- tests/functional/openlp_plugins/alerts/test_manager.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/alerts/test_manager.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/__init__.py' +--- tests/functional/openlp_plugins/bibles/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_plugins/bibles/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_bibleserver.py' +--- tests/functional/openlp_plugins/bibles/test_bibleserver.py 2017-12-22 16:53:40 +0000 ++++ tests/functional/openlp_plugins/bibles/test_bibleserver.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_csvimport.py' +--- tests/functional/openlp_plugins/bibles/test_csvimport.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/bibles/test_csvimport.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_db.py' +--- tests/functional/openlp_plugins/bibles/test_db.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_plugins/bibles/test_db.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_lib.py' +--- tests/functional/openlp_plugins/bibles/test_lib.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/bibles/test_lib.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_manager.py' +--- tests/functional/openlp_plugins/bibles/test_manager.py 2017-12-22 16:53:40 +0000 ++++ tests/functional/openlp_plugins/bibles/test_manager.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_mediaitem.py' +--- tests/functional/openlp_plugins/bibles/test_mediaitem.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/bibles/test_mediaitem.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_opensongimport.py' +--- tests/functional/openlp_plugins/bibles/test_opensongimport.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/bibles/test_opensongimport.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_osisimport.py' +--- tests/functional/openlp_plugins/bibles/test_osisimport.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/bibles/test_osisimport.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_swordimport.py' +--- tests/functional/openlp_plugins/bibles/test_swordimport.py 2017-12-24 07:40:07 +0000 ++++ tests/functional/openlp_plugins/bibles/test_swordimport.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_versereferencelist.py' +--- tests/functional/openlp_plugins/bibles/test_versereferencelist.py 2017-12-22 16:53:40 +0000 ++++ tests/functional/openlp_plugins/bibles/test_versereferencelist.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_wordprojectimport.py' +--- tests/functional/openlp_plugins/bibles/test_wordprojectimport.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/bibles/test_wordprojectimport.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/bibles/test_zefaniaimport.py' +--- tests/functional/openlp_plugins/bibles/test_zefaniaimport.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/bibles/test_zefaniaimport.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/custom/__init__.py' +--- tests/functional/openlp_plugins/custom/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_plugins/custom/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/custom/test_mediaitem.py' +--- tests/functional/openlp_plugins/custom/test_mediaitem.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/custom/test_mediaitem.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/images/__init__.py' +--- tests/functional/openlp_plugins/images/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_plugins/images/__init__.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/images/test_imagetab.py' +--- tests/functional/openlp_plugins/images/test_imagetab.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/images/test_imagetab.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/images/test_lib.py' +--- tests/functional/openlp_plugins/images/test_lib.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/images/test_lib.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/images/test_upgrade.py' +--- tests/functional/openlp_plugins/images/test_upgrade.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/images/test_upgrade.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/media/test_mediaitem.py' +--- tests/functional/openlp_plugins/media/test_mediaitem.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/media/test_mediaitem.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/media/test_mediaplugin.py' +--- tests/functional/openlp_plugins/media/test_mediaplugin.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/media/test_mediaplugin.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/presentations/__init__.py' +--- tests/functional/openlp_plugins/presentations/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_plugins/presentations/__init__.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/presentations/test_impresscontroller.py' +--- tests/functional/openlp_plugins/presentations/test_impresscontroller.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/presentations/test_impresscontroller.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/presentations/test_mediaitem.py' +--- tests/functional/openlp_plugins/presentations/test_mediaitem.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/presentations/test_mediaitem.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/presentations/test_messagelistener.py' +--- tests/functional/openlp_plugins/presentations/test_messagelistener.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/presentations/test_messagelistener.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/presentations/test_pdfcontroller.py' +--- tests/functional/openlp_plugins/presentations/test_pdfcontroller.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/presentations/test_pdfcontroller.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/presentations/test_powerpointcontroller.py' +--- tests/functional/openlp_plugins/presentations/test_powerpointcontroller.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/presentations/test_powerpointcontroller.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/presentations/test_pptviewcontroller.py' +--- tests/functional/openlp_plugins/presentations/test_pptviewcontroller.py 2017-12-28 08:27:44 +0000 ++++ tests/functional/openlp_plugins/presentations/test_pptviewcontroller.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/presentations/test_presentationcontroller.py' +--- tests/functional/openlp_plugins/presentations/test_presentationcontroller.py 2017-12-22 22:20:04 +0000 ++++ tests/functional/openlp_plugins/presentations/test_presentationcontroller.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/__init__.py' +--- tests/functional/openlp_plugins/songs/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_plugins/songs/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_chordproimport.py' +--- tests/functional/openlp_plugins/songs/test_chordproimport.py 2017-12-22 21:20:49 +0000 ++++ tests/functional/openlp_plugins/songs/test_chordproimport.py 2017-12-29 08:53:41 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_db.py' +--- tests/functional/openlp_plugins/songs/test_db.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_db.py 2017-12-29 08:53:58 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_easyslidesimport.py' +--- tests/functional/openlp_plugins/songs/test_easyslidesimport.py 2017-12-22 21:20:49 +0000 ++++ tests/functional/openlp_plugins/songs/test_easyslidesimport.py 2017-12-29 08:53:56 +0000 +@@ -3,7 +3,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_editsongform.py' +--- tests/functional/openlp_plugins/songs/test_editsongform.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_editsongform.py 2017-12-29 08:53:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_editverseform.py' +--- tests/functional/openlp_plugins/songs/test_editverseform.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_editverseform.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_ewimport.py' +--- tests/functional/openlp_plugins/songs/test_ewimport.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_ewimport.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_foilpresenterimport.py' +--- tests/functional/openlp_plugins/songs/test_foilpresenterimport.py 2017-12-24 07:40:07 +0000 ++++ tests/functional/openlp_plugins/songs/test_foilpresenterimport.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_lib.py' +--- tests/functional/openlp_plugins/songs/test_lib.py 2017-12-22 22:20:04 +0000 ++++ tests/functional/openlp_plugins/songs/test_lib.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_lyriximport.py' +--- tests/functional/openlp_plugins/songs/test_lyriximport.py 2017-12-22 21:20:49 +0000 ++++ tests/functional/openlp_plugins/songs/test_lyriximport.py 2017-12-29 08:47:52 +0000 +@@ -3,7 +3,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_mediaitem.py' +--- tests/functional/openlp_plugins/songs/test_mediaitem.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_mediaitem.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_mediashout.py' +--- tests/functional/openlp_plugins/songs/test_mediashout.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_mediashout.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_openlpimporter.py' +--- tests/functional/openlp_plugins/songs/test_openlpimporter.py 2017-12-23 09:30:02 +0000 ++++ tests/functional/openlp_plugins/songs/test_openlpimporter.py 2017-12-29 08:53:39 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_openlyricsexport.py' +--- tests/functional/openlp_plugins/songs/test_openlyricsexport.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_openlyricsexport.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_openlyricsimport.py' +--- tests/functional/openlp_plugins/songs/test_openlyricsimport.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_openlyricsimport.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_openoffice.py' +--- tests/functional/openlp_plugins/songs/test_openoffice.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_openoffice.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_opensongimport.py' +--- tests/functional/openlp_plugins/songs/test_opensongimport.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_opensongimport.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_opsproimport.py' +--- tests/functional/openlp_plugins/songs/test_opsproimport.py 2017-12-24 07:40:07 +0000 ++++ tests/functional/openlp_plugins/songs/test_opsproimport.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_powerpraiseimport.py' +--- tests/functional/openlp_plugins/songs/test_powerpraiseimport.py 2017-12-22 22:21:38 +0000 ++++ tests/functional/openlp_plugins/songs/test_powerpraiseimport.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_presentationmanagerimport.py' +--- tests/functional/openlp_plugins/songs/test_presentationmanagerimport.py 2017-12-22 22:21:38 +0000 ++++ tests/functional/openlp_plugins/songs/test_presentationmanagerimport.py 2017-12-29 08:53:45 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_propresenterimport.py' +--- tests/functional/openlp_plugins/songs/test_propresenterimport.py 2017-12-22 22:21:38 +0000 ++++ tests/functional/openlp_plugins/songs/test_propresenterimport.py 2017-12-29 08:53:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_songbeamerimport.py' +--- tests/functional/openlp_plugins/songs/test_songbeamerimport.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_songbeamerimport.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_songproimport.py' +--- tests/functional/openlp_plugins/songs/test_songproimport.py 2017-12-22 22:21:38 +0000 ++++ tests/functional/openlp_plugins/songs/test_songproimport.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_songselect.py' +--- tests/functional/openlp_plugins/songs/test_songselect.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_songselect.py 2017-12-29 08:47:51 +0000 +@@ -5,7 +5,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_songshowplusimport.py' +--- tests/functional/openlp_plugins/songs/test_songshowplusimport.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_songshowplusimport.py 2017-12-29 08:53:48 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_sundayplusimport.py' +--- tests/functional/openlp_plugins/songs/test_sundayplusimport.py 2017-12-22 22:21:38 +0000 ++++ tests/functional/openlp_plugins/songs/test_sundayplusimport.py 2017-12-29 08:53:48 +0000 +@@ -3,7 +3,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_videopsalm.py' +--- tests/functional/openlp_plugins/songs/test_videopsalm.py 2017-12-22 22:21:38 +0000 ++++ tests/functional/openlp_plugins/songs/test_videopsalm.py 2017-12-29 08:47:52 +0000 +@@ -3,7 +3,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py' +--- tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py 2017-12-22 22:21:38 +0000 ++++ tests/functional/openlp_plugins/songs/test_wordsofworshipimport.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_worshipassistantimport.py' +--- tests/functional/openlp_plugins/songs/test_worshipassistantimport.py 2017-12-24 07:33:22 +0000 ++++ tests/functional/openlp_plugins/songs/test_worshipassistantimport.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_worshipcenterproimport.py' +--- tests/functional/openlp_plugins/songs/test_worshipcenterproimport.py 2017-12-22 17:51:59 +0000 ++++ tests/functional/openlp_plugins/songs/test_worshipcenterproimport.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songs/test_zionworximport.py' +--- tests/functional/openlp_plugins/songs/test_zionworximport.py 2017-12-28 08:22:55 +0000 ++++ tests/functional/openlp_plugins/songs/test_zionworximport.py 2017-12-29 08:53:42 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songusage/__init__.py' +--- tests/functional/openlp_plugins/songusage/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/functional/openlp_plugins/songusage/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/functional/openlp_plugins/songusage/test_songusage.py' +--- tests/functional/openlp_plugins/songusage/test_songusage.py 2017-12-23 09:22:53 +0000 ++++ tests/functional/openlp_plugins/songusage/test_songusage.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/helpers/__init__.py' +--- tests/helpers/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/helpers/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/helpers/songfileimport.py' +--- tests/helpers/songfileimport.py 2017-12-24 07:40:07 +0000 ++++ tests/helpers/songfileimport.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/helpers/testmixin.py' +--- tests/helpers/testmixin.py 2017-12-28 08:22:55 +0000 ++++ tests/helpers/testmixin.py 2017-12-29 08:47:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/__init__.py' +--- tests/interfaces/__init__.py 2017-05-08 18:33:11 +0000 ++++ tests/interfaces/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/__init__.py' +--- tests/interfaces/openlp_core/__init__.py 2017-10-23 22:09:57 +0000 ++++ tests/interfaces/openlp_core/__init__.py 2017-12-29 08:47:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/api/__init__.py' +--- tests/interfaces/openlp_core/api/__init__.py 2017-03-05 17:07:21 +0000 ++++ tests/interfaces/openlp_core/api/__init__.py 2017-12-29 08:53:45 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/common/__init__.py' +--- tests/interfaces/openlp_core/common/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_core/common/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/common/test_utils.py' +--- tests/interfaces/openlp_core/common/test_utils.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/common/test_utils.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/lib/__init__.py' +--- tests/interfaces/openlp_core/lib/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_core/lib/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/lib/test_pluginmanager.py' +--- tests/interfaces/openlp_core/lib/test_pluginmanager.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/lib/test_pluginmanager.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/__init__.py' +--- tests/interfaces/openlp_core/ui/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_core/ui/__init__.py 2017-12-29 08:53:55 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/lib/__init__.py' +--- tests/interfaces/openlp_core/ui/lib/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_core/ui/lib/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/media/__init__.py' +--- tests/interfaces/openlp_core/ui/media/__init__.py 2017-10-23 22:09:57 +0000 ++++ tests/interfaces/openlp_core/ui/media/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/media/vendor/__init__.py' +--- tests/interfaces/openlp_core/ui/media/vendor/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_core/ui/media/vendor/__init__.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/media/vendor/test_mediainfoWrapper.py' +--- tests/interfaces/openlp_core/ui/media/vendor/test_mediainfoWrapper.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/media/vendor/test_mediainfoWrapper.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_filerenamedialog.py' +--- tests/interfaces/openlp_core/ui/test_filerenamedialog.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_filerenamedialog.py 2017-12-29 08:53:42 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_mainwindow.py' +--- tests/interfaces/openlp_core/ui/test_mainwindow.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_mainwindow.py 2017-12-29 08:53:54 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_projectoreditform.py' +--- tests/interfaces/openlp_core/ui/test_projectoreditform.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_projectoreditform.py 2017-12-29 08:53:57 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_projectormanager.py' +--- tests/interfaces/openlp_core/ui/test_projectormanager.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_projectormanager.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_projectorsourceform.py' +--- tests/interfaces/openlp_core/ui/test_projectorsourceform.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_projectorsourceform.py 2017-12-29 08:53:50 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_servicemanager.py' +--- tests/interfaces/openlp_core/ui/test_servicemanager.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_servicemanager.py 2017-12-29 08:53:41 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_servicenotedialog.py' +--- tests/interfaces/openlp_core/ui/test_servicenotedialog.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_servicenotedialog.py 2017-12-29 08:53:42 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_settings_form.py' +--- tests/interfaces/openlp_core/ui/test_settings_form.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_settings_form.py 2017-12-29 08:53:48 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_shortcutlistform.py' +--- tests/interfaces/openlp_core/ui/test_shortcutlistform.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_shortcutlistform.py 2017-12-29 08:53:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_starttimedialog.py' +--- tests/interfaces/openlp_core/ui/test_starttimedialog.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_starttimedialog.py 2017-12-29 08:53:48 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/ui/test_thememanager.py' +--- tests/interfaces/openlp_core/ui/test_thememanager.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/ui/test_thememanager.py 2017-12-29 08:53:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/widgets/__init__.py' +--- tests/interfaces/openlp_core/widgets/__init__.py 2017-10-23 22:09:57 +0000 ++++ tests/interfaces/openlp_core/widgets/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/widgets/test_edits.py' +--- tests/interfaces/openlp_core/widgets/test_edits.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/widgets/test_edits.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_core/widgets/test_views.py' +--- tests/interfaces/openlp_core/widgets/test_views.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_core/widgets/test_views.py 2017-12-29 08:53:43 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/__init__.py' +--- tests/interfaces/openlp_plugins/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_plugins/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/bibles/__init__.py' +--- tests/interfaces/openlp_plugins/bibles/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_plugins/bibles/__init__.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/bibles/forms/__init__.py' +--- tests/interfaces/openlp_plugins/bibles/forms/__init__.py 2017-12-28 09:34:04 +0000 ++++ tests/interfaces/openlp_plugins/bibles/forms/__init__.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/bibles/forms/test_bibleimportform.py' +--- tests/interfaces/openlp_plugins/bibles/forms/test_bibleimportform.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_plugins/bibles/forms/test_bibleimportform.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/bibles/test_lib_http.py' +--- tests/interfaces/openlp_plugins/bibles/test_lib_http.py 2017-12-23 09:09:45 +0000 ++++ tests/interfaces/openlp_plugins/bibles/test_lib_http.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/bibles/test_lib_manager.py' +--- tests/interfaces/openlp_plugins/bibles/test_lib_manager.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_plugins/bibles/test_lib_manager.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/bibles/test_lib_parse_reference.py' +--- tests/interfaces/openlp_plugins/bibles/test_lib_parse_reference.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_plugins/bibles/test_lib_parse_reference.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/custom/__init__.py' +--- tests/interfaces/openlp_plugins/custom/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_plugins/custom/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/custom/forms/__init__.py' +--- tests/interfaces/openlp_plugins/custom/forms/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_plugins/custom/forms/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/custom/forms/test_customform.py' +--- tests/interfaces/openlp_plugins/custom/forms/test_customform.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_plugins/custom/forms/test_customform.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/custom/forms/test_customslideform.py' +--- tests/interfaces/openlp_plugins/custom/forms/test_customslideform.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_plugins/custom/forms/test_customslideform.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/media/__init__.py' +--- tests/interfaces/openlp_plugins/media/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_plugins/media/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/media/forms/__init__.py' +--- tests/interfaces/openlp_plugins/media/forms/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_plugins/media/forms/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/media/forms/test_mediaclipselectorform.py' +--- tests/interfaces/openlp_plugins/media/forms/test_mediaclipselectorform.py 2017-10-07 07:05:07 +0000 ++++ tests/interfaces/openlp_plugins/media/forms/test_mediaclipselectorform.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/songs/__init__.py' +--- tests/interfaces/openlp_plugins/songs/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_plugins/songs/__init__.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/songs/forms/__init__.py' +--- tests/interfaces/openlp_plugins/songs/forms/__init__.py 2016-12-31 11:01:36 +0000 ++++ tests/interfaces/openlp_plugins/songs/forms/__init__.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/songs/forms/test_authorsform.py' +--- tests/interfaces/openlp_plugins/songs/forms/test_authorsform.py 2017-12-23 09:09:45 +0000 ++++ tests/interfaces/openlp_plugins/songs/forms/test_authorsform.py 2017-12-29 09:03:22 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/songs/forms/test_editsongform.py' +--- tests/interfaces/openlp_plugins/songs/forms/test_editsongform.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_plugins/songs/forms/test_editsongform.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/songs/forms/test_editverseform.py' +--- tests/interfaces/openlp_plugins/songs/forms/test_editverseform.py 2017-12-23 09:09:45 +0000 ++++ tests/interfaces/openlp_plugins/songs/forms/test_editverseform.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/songs/forms/test_songmaintenanceform.py' +--- tests/interfaces/openlp_plugins/songs/forms/test_songmaintenanceform.py 2017-12-28 08:27:44 +0000 ++++ tests/interfaces/openlp_plugins/songs/forms/test_songmaintenanceform.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/interfaces/openlp_plugins/songs/forms/test_topicsform.py' +--- tests/interfaces/openlp_plugins/songs/forms/test_topicsform.py 2017-12-23 09:09:45 +0000 ++++ tests/interfaces/openlp_plugins/songs/forms/test_topicsform.py 2017-12-29 09:03:21 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/resources/projector/data.py' +--- tests/resources/projector/data.py 2017-12-28 08:22:55 +0000 ++++ tests/resources/projector/data.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/utils/__init__.py' +--- tests/utils/__init__.py 2017-12-28 08:31:35 +0000 ++++ tests/utils/__init__.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/utils/constants.py' +--- tests/utils/constants.py 2017-12-28 08:31:35 +0000 ++++ tests/utils/constants.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/utils/osdinteraction.py' +--- tests/utils/osdinteraction.py 2017-12-28 08:22:55 +0000 ++++ tests/utils/osdinteraction.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/utils/test_bzr_tags.py' +--- tests/utils/test_bzr_tags.py 2017-12-28 08:22:55 +0000 ++++ tests/utils/test_bzr_tags.py 2017-12-29 08:47:51 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # + +=== modified file 'tests/utils/test_pylint.py' +--- tests/utils/test_pylint.py 2017-12-28 08:22:55 +0000 ++++ tests/utils/test_pylint.py 2017-12-29 08:47:52 +0000 +@@ -4,7 +4,7 @@ + ############################################################################### + # OpenLP - Open Source Lyrics Projection # + # --------------------------------------------------------------------------- # +-# Copyright (c) 2008-2017 OpenLP Developers # ++# Copyright (c) 2008-2018 OpenLP Developers # + # --------------------------------------------------------------------------- # + # 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 # +