From 41a0788b4cff3452fed57ece37db5ca6b548e0d0 Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sun, 8 Jan 2023 18:47:04 +0100 Subject: [PATCH] Update copyright year to 2023 --- novelwriter/__init__.py | 4 ++-- novelwriter/common.py | 2 +- novelwriter/config.py | 2 +- novelwriter/constants.py | 2 +- novelwriter/core/coretools.py | 2 +- novelwriter/core/document.py | 2 +- novelwriter/core/index.py | 2 +- novelwriter/core/item.py | 2 +- novelwriter/core/options.py | 2 +- novelwriter/core/project.py | 2 +- novelwriter/core/projectdata.py | 2 +- novelwriter/core/projectxml.py | 2 +- novelwriter/core/spellcheck.py | 2 +- novelwriter/core/status.py | 2 +- novelwriter/core/storage.py | 2 +- novelwriter/core/tohtml.py | 2 +- novelwriter/core/tokenizer.py | 2 +- novelwriter/core/tomd.py | 2 +- novelwriter/core/toodt.py | 2 +- novelwriter/core/tree.py | 2 +- novelwriter/custom.py | 2 +- novelwriter/dialogs/about.py | 2 +- novelwriter/dialogs/docmerge.py | 2 +- novelwriter/dialogs/docsplit.py | 2 +- novelwriter/dialogs/editlabel.py | 2 +- novelwriter/dialogs/preferences.py | 2 +- novelwriter/dialogs/projdetails.py | 2 +- novelwriter/dialogs/projload.py | 2 +- novelwriter/dialogs/projsettings.py | 2 +- novelwriter/dialogs/quotes.py | 2 +- novelwriter/dialogs/updates.py | 2 +- novelwriter/dialogs/wordlist.py | 2 +- novelwriter/enum.py | 2 +- novelwriter/error.py | 2 +- novelwriter/gui/components.py | 2 +- novelwriter/gui/doceditor.py | 2 +- novelwriter/gui/dochighlight.py | 2 +- novelwriter/gui/docviewer.py | 2 +- novelwriter/gui/itemdetails.py | 2 +- novelwriter/gui/mainmenu.py | 2 +- novelwriter/gui/outline.py | 2 +- novelwriter/gui/projtree.py | 2 +- novelwriter/gui/sidebar.py | 2 +- novelwriter/gui/statusbar.py | 2 +- novelwriter/gui/theme.py | 2 +- novelwriter/guimain.py | 2 +- novelwriter/tools/build.py | 2 +- novelwriter/tools/lipsum.py | 2 +- novelwriter/tools/projwizard.py | 2 +- novelwriter/tools/writingstats.py | 2 +- sample/nwProject.nwx | 4 ++-- setup.py | 2 +- tests/conftest.py | 2 +- tests/mock.py | 2 +- tests/test_base/test_base_common.py | 2 +- tests/test_base/test_base_config.py | 2 +- tests/test_base/test_base_error.py | 2 +- tests/test_base/test_base_init.py | 2 +- tests/test_core/test_core_coretools.py | 2 +- tests/test_core/test_core_document.py | 2 +- tests/test_core/test_core_index.py | 2 +- tests/test_core/test_core_item.py | 2 +- tests/test_core/test_core_options.py | 2 +- tests/test_core/test_core_project.py | 2 +- tests/test_core/test_core_projectxml.py | 2 +- tests/test_core/test_core_spellcheck.py | 2 +- tests/test_core/test_core_status.py | 2 +- tests/test_core/test_core_storage.py | 2 +- tests/test_core/test_core_tohtml.py | 2 +- tests/test_core/test_core_tokenizer.py | 2 +- tests/test_core/test_core_tomd.py | 2 +- tests/test_core/test_core_toodt.py | 2 +- tests/test_core/test_core_tree.py | 2 +- tests/test_dialogs/test_dlg_about.py | 2 +- tests/test_dialogs/test_dlg_dialogs.py | 2 +- tests/test_dialogs/test_dlg_docmerge.py | 2 +- tests/test_dialogs/test_dlg_docsplit.py | 2 +- tests/test_dialogs/test_dlg_preferences.py | 2 +- tests/test_dialogs/test_dlg_projdetails.py | 2 +- tests/test_dialogs/test_dlg_projload.py | 2 +- tests/test_dialogs/test_dlg_projsettings.py | 2 +- tests/test_dialogs/test_dlg_wordlist.py | 2 +- tests/test_gui/test_gui_doceditor.py | 2 +- tests/test_gui/test_gui_docviewer.py | 2 +- tests/test_gui/test_gui_guimain.py | 2 +- tests/test_gui/test_gui_i18n.py | 2 +- tests/test_gui/test_gui_mainmenu.py | 2 +- tests/test_gui/test_gui_noveltree.py | 2 +- tests/test_gui/test_gui_outline.py | 2 +- tests/test_gui/test_gui_projtree.py | 2 +- tests/test_gui/test_gui_statusbar.py | 2 +- tests/test_gui/test_gui_theme.py | 2 +- tests/test_tools/test_tools_build.py | 2 +- tests/test_tools/test_tools_lipsum.py | 2 +- tests/test_tools/test_tools_projwizard.py | 2 +- tests/test_tools/test_tools_writingstats.py | 2 +- tests/tools.py | 2 +- 97 files changed, 99 insertions(+), 99 deletions(-) diff --git a/novelwriter/__init__.py b/novelwriter/__init__.py index 1f24c66c..e4ffb61c 100644 --- a/novelwriter/__init__.py +++ b/novelwriter/__init__.py @@ -7,7 +7,7 @@ File History: Created: 2018-09-22 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -54,7 +54,7 @@ from novelwriter.config import Config ## __package__ = "novelwriter" -__copyright__ = "Copyright 2018–2022, Veronica Berglyd Olsen" +__copyright__ = "Copyright 2018–2023, Veronica Berglyd Olsen" __license__ = "GPLv3" __author__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen" diff --git a/novelwriter/common.py b/novelwriter/common.py index 5db4752d..ea38d841 100644 --- a/novelwriter/common.py +++ b/novelwriter/common.py @@ -7,7 +7,7 @@ File History: Created: 2019-05-12 [0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/config.py b/novelwriter/config.py index e60a9444..1f45b58d 100644 --- a/novelwriter/config.py +++ b/novelwriter/config.py @@ -7,7 +7,7 @@ File History: Created: 2018-09-22 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/constants.py b/novelwriter/constants.py index 3d13d1f2..ed7604ca 100644 --- a/novelwriter/constants.py +++ b/novelwriter/constants.py @@ -7,7 +7,7 @@ File History: Created: 2019-04-28 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/coretools.py b/novelwriter/core/coretools.py index 8434626d..f31c9709 100644 --- a/novelwriter/core/coretools.py +++ b/novelwriter/core/coretools.py @@ -8,7 +8,7 @@ Created: 2022-10-02 [2.0rc1] DocMerger Created: 2022-10-11 [2.0rc1] DocSplitter This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/document.py b/novelwriter/core/document.py index ab9b8ac9..d71f2309 100644 --- a/novelwriter/core/document.py +++ b/novelwriter/core/document.py @@ -7,7 +7,7 @@ File History: Created: 2018-09-29 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/index.py b/novelwriter/core/index.py index 15bc4e8d..9a83f9c4 100644 --- a/novelwriter/core/index.py +++ b/novelwriter/core/index.py @@ -12,7 +12,7 @@ Created: 2022-05-29 [2.0rc1] TagsIndex Created: 2022-05-29 [2.0rc1] ItemIndex This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/item.py b/novelwriter/core/item.py index 155e31b0..e04d7c25 100644 --- a/novelwriter/core/item.py +++ b/novelwriter/core/item.py @@ -7,7 +7,7 @@ File History: Created: 2018-10-27 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/options.py b/novelwriter/core/options.py index cbf3fe14..2432e0c9 100644 --- a/novelwriter/core/options.py +++ b/novelwriter/core/options.py @@ -8,7 +8,7 @@ Created: 2019-10-21 [0.3.1] Rewritten: 2020-02-19 [0.4.5] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/project.py b/novelwriter/core/project.py index a9b22312..dea9737d 100644 --- a/novelwriter/core/project.py +++ b/novelwriter/core/project.py @@ -7,7 +7,7 @@ File History: Created: 2018-09-29 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/projectdata.py b/novelwriter/core/projectdata.py index 599855e4..12176901 100644 --- a/novelwriter/core/projectdata.py +++ b/novelwriter/core/projectdata.py @@ -7,7 +7,7 @@ File History: Created: 2022-10-30 [2.0rc2] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/projectxml.py b/novelwriter/core/projectxml.py index a264570f..d3855cf0 100644 --- a/novelwriter/core/projectxml.py +++ b/novelwriter/core/projectxml.py @@ -9,7 +9,7 @@ Created: 2022-09-28 [2.0rc2] ProjectXMLReader Created: 2022-10-31 [2.0rc2] ProjectXMLWriter This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/spellcheck.py b/novelwriter/core/spellcheck.py index 30396d0d..884de15f 100644 --- a/novelwriter/core/spellcheck.py +++ b/novelwriter/core/spellcheck.py @@ -7,7 +7,7 @@ File History: Created: 2019-06-11 [0.1.5] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/status.py b/novelwriter/core/status.py index 2dbd5568..edfede2c 100644 --- a/novelwriter/core/status.py +++ b/novelwriter/core/status.py @@ -8,7 +8,7 @@ Created: 2019-05-19 [0.1.3] Rewritten: 2022-04-05 [2.0b1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/storage.py b/novelwriter/core/storage.py index 3d23efbc..d1cb0b87 100644 --- a/novelwriter/core/storage.py +++ b/novelwriter/core/storage.py @@ -7,7 +7,7 @@ File History: Created: 2022-11-01 [2.0rc2] NWStorage This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/tohtml.py b/novelwriter/core/tohtml.py index db458a07..d95d217a 100644 --- a/novelwriter/core/tohtml.py +++ b/novelwriter/core/tohtml.py @@ -7,7 +7,7 @@ File History: Created: 2019-05-07 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/tokenizer.py b/novelwriter/core/tokenizer.py index 0b2ab376..f6434fcf 100644 --- a/novelwriter/core/tokenizer.py +++ b/novelwriter/core/tokenizer.py @@ -7,7 +7,7 @@ File History: Created: 2019-05-05 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/tomd.py b/novelwriter/core/tomd.py index 14698cd1..e37c47e3 100644 --- a/novelwriter/core/tomd.py +++ b/novelwriter/core/tomd.py @@ -7,7 +7,7 @@ File History: Created: 2021-02-06 [1.2b1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/toodt.py b/novelwriter/core/toodt.py index 19497ade..968d7b87 100644 --- a/novelwriter/core/toodt.py +++ b/novelwriter/core/toodt.py @@ -7,7 +7,7 @@ File History: Created: 2021-01-26 [1.2b1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/core/tree.py b/novelwriter/core/tree.py index c71b1804..da5686db 100644 --- a/novelwriter/core/tree.py +++ b/novelwriter/core/tree.py @@ -7,7 +7,7 @@ File History: Created: 2020-05-07 [0.4.5] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/custom.py b/novelwriter/custom.py index 5d9d8122..46bd081d 100644 --- a/novelwriter/custom.py +++ b/novelwriter/custom.py @@ -9,7 +9,7 @@ Created: 2020-05-03 [0.4.5] QSwitch Created: 2020-05-17 [0.5.1] PagedDialog This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/about.py b/novelwriter/dialogs/about.py index f3af1cbf..e482b897 100644 --- a/novelwriter/dialogs/about.py +++ b/novelwriter/dialogs/about.py @@ -7,7 +7,7 @@ File History: Created: 2020-05-21 [0.5.2] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/docmerge.py b/novelwriter/dialogs/docmerge.py index ed2b2dde..25c8676f 100644 --- a/novelwriter/dialogs/docmerge.py +++ b/novelwriter/dialogs/docmerge.py @@ -8,7 +8,7 @@ Created: 2020-01-23 [0.4.3] Rewritten: 2022-10-06 [2.0rc1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/docsplit.py b/novelwriter/dialogs/docsplit.py index e7fabeee..0db6d6c2 100644 --- a/novelwriter/dialogs/docsplit.py +++ b/novelwriter/dialogs/docsplit.py @@ -8,7 +8,7 @@ Created: 2020-02-01 [0.4.3] Rewritten: 2022-10-12 [2.0rc1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/editlabel.py b/novelwriter/dialogs/editlabel.py index bc780898..d2551441 100644 --- a/novelwriter/dialogs/editlabel.py +++ b/novelwriter/dialogs/editlabel.py @@ -7,7 +7,7 @@ File History: Created: 2022-06-11 [2.0rc1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/preferences.py b/novelwriter/dialogs/preferences.py index e7936991..41f4a032 100644 --- a/novelwriter/dialogs/preferences.py +++ b/novelwriter/dialogs/preferences.py @@ -7,7 +7,7 @@ File History: Created: 2019-06-10 [0.1.5] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/projdetails.py b/novelwriter/dialogs/projdetails.py index df8d9ae8..bec2f400 100644 --- a/novelwriter/dialogs/projdetails.py +++ b/novelwriter/dialogs/projdetails.py @@ -7,7 +7,7 @@ File History: Created: 2021-01-03 [1.1rc1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/projload.py b/novelwriter/dialogs/projload.py index 326e8bce..d6f876c4 100644 --- a/novelwriter/dialogs/projload.py +++ b/novelwriter/dialogs/projload.py @@ -7,7 +7,7 @@ File History: Created: 2020-02-26 [0.4.5] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/projsettings.py b/novelwriter/dialogs/projsettings.py index be469385..23fb28c5 100644 --- a/novelwriter/dialogs/projsettings.py +++ b/novelwriter/dialogs/projsettings.py @@ -7,7 +7,7 @@ File History: Created: 2018-09-29 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/quotes.py b/novelwriter/dialogs/quotes.py index 685459d4..ffd169da 100644 --- a/novelwriter/dialogs/quotes.py +++ b/novelwriter/dialogs/quotes.py @@ -7,7 +7,7 @@ File History: Created: 2020-06-18 [0.9] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/updates.py b/novelwriter/dialogs/updates.py index 020e2338..685f8698 100644 --- a/novelwriter/dialogs/updates.py +++ b/novelwriter/dialogs/updates.py @@ -7,7 +7,7 @@ File History: Created: 2021-08-21 [1.5b1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/dialogs/wordlist.py b/novelwriter/dialogs/wordlist.py index a8994887..ca667ed2 100644 --- a/novelwriter/dialogs/wordlist.py +++ b/novelwriter/dialogs/wordlist.py @@ -7,7 +7,7 @@ File History: Created: 2021-02-12 [1.2rc1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/enum.py b/novelwriter/enum.py index b5038da3..d2fcf61b 100644 --- a/novelwriter/enum.py +++ b/novelwriter/enum.py @@ -7,7 +7,7 @@ File History: Created: 2018-11-02 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/error.py b/novelwriter/error.py index 855f3723..bb803711 100644 --- a/novelwriter/error.py +++ b/novelwriter/error.py @@ -7,7 +7,7 @@ File History: Created: 2020-08-02 [0.10.2] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/components.py b/novelwriter/gui/components.py index ed8c91fb..3556ae9c 100644 --- a/novelwriter/gui/components.py +++ b/novelwriter/gui/components.py @@ -8,7 +8,7 @@ Created: 2020-05-17 [0.5.1] StatusLED Created: 2022-11-17 [2.0] NovelSelector This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/doceditor.py b/novelwriter/gui/doceditor.py index bc1421af..1430d174 100644 --- a/novelwriter/gui/doceditor.py +++ b/novelwriter/gui/doceditor.py @@ -13,7 +13,7 @@ Created: 2020-06-27 [0.10] GuiDocEditFooter Rewritten: 2020-10-07 [1.0b3] BackgroundWordCounter This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/dochighlight.py b/novelwriter/gui/dochighlight.py index 1b06d25f..d344c8f6 100644 --- a/novelwriter/gui/dochighlight.py +++ b/novelwriter/gui/dochighlight.py @@ -7,7 +7,7 @@ File History: Created: 2019-04-06 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/docviewer.py b/novelwriter/gui/docviewer.py index f0ac6345..c111f6a1 100644 --- a/novelwriter/gui/docviewer.py +++ b/novelwriter/gui/docviewer.py @@ -11,7 +11,7 @@ Created: 2020-06-09 [0.8] GuiDocViewFooter Created: 2020-09-08 [1.0b1] GuiDocViewHistory This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/itemdetails.py b/novelwriter/gui/itemdetails.py index 9183ebfe..f36a78d3 100644 --- a/novelwriter/gui/itemdetails.py +++ b/novelwriter/gui/itemdetails.py @@ -7,7 +7,7 @@ File History: Created: 2019-04-24 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/mainmenu.py b/novelwriter/gui/mainmenu.py index 77eff2b1..0da2d783 100644 --- a/novelwriter/gui/mainmenu.py +++ b/novelwriter/gui/mainmenu.py @@ -7,7 +7,7 @@ File History: Created: 2019-04-27 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/outline.py b/novelwriter/gui/outline.py index b04f44c9..1d90ab89 100644 --- a/novelwriter/gui/outline.py +++ b/novelwriter/gui/outline.py @@ -11,7 +11,7 @@ Created: 2019-11-16 [0.4.1] GuiOutlineHeaderMenu Created: 2020-06-02 [0.7] GuiOutlineDetails This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/projtree.py b/novelwriter/gui/projtree.py index 96af1ecd..d2cf564a 100644 --- a/novelwriter/gui/projtree.py +++ b/novelwriter/gui/projtree.py @@ -9,7 +9,7 @@ Created: 2022-06-06 [2.0rc1] GuiProjectView Created: 2022-06-06 [2.0rc1] GuiProjectToolBar This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/sidebar.py b/novelwriter/gui/sidebar.py index 37a37538..c27c8311 100644 --- a/novelwriter/gui/sidebar.py +++ b/novelwriter/gui/sidebar.py @@ -7,7 +7,7 @@ File History: Created: 2022-05-10 [2.0rc1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/statusbar.py b/novelwriter/gui/statusbar.py index a5824214..b811f80b 100644 --- a/novelwriter/gui/statusbar.py +++ b/novelwriter/gui/statusbar.py @@ -8,7 +8,7 @@ Created: 2019-04-20 [0.0.1] GuiMainStatus Created: 2020-05-17 [0.5.1] StatusLED This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/gui/theme.py b/novelwriter/gui/theme.py index 17e58ff4..746cde06 100644 --- a/novelwriter/gui/theme.py +++ b/novelwriter/gui/theme.py @@ -8,7 +8,7 @@ Created: 2019-05-18 [0.1.3] GuiTheme Created: 2019-11-08 [0.4] GuiIcons This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/guimain.py b/novelwriter/guimain.py index 4b89e03b..aa26b95d 100644 --- a/novelwriter/guimain.py +++ b/novelwriter/guimain.py @@ -7,7 +7,7 @@ File History: Created: 2018-09-22 [0.0.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/tools/build.py b/novelwriter/tools/build.py index 4b2a940c..13ec29d2 100644 --- a/novelwriter/tools/build.py +++ b/novelwriter/tools/build.py @@ -7,7 +7,7 @@ File History: Created: 2020-05-09 [0.5] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/tools/lipsum.py b/novelwriter/tools/lipsum.py index f084dfa2..9f0679c4 100644 --- a/novelwriter/tools/lipsum.py +++ b/novelwriter/tools/lipsum.py @@ -7,7 +7,7 @@ File History: Created: 2022-04-02 [2.0rc1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/tools/projwizard.py b/novelwriter/tools/projwizard.py index c9cc157b..3dee4861 100644 --- a/novelwriter/tools/projwizard.py +++ b/novelwriter/tools/projwizard.py @@ -7,7 +7,7 @@ File History: Created: 2020-07-11 [0.10.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/novelwriter/tools/writingstats.py b/novelwriter/tools/writingstats.py index 5e8606d3..a5981985 100644 --- a/novelwriter/tools/writingstats.py +++ b/novelwriter/tools/writingstats.py @@ -7,7 +7,7 @@ File History: Created: 2019-10-20 [0.3] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/sample/nwProject.nwx b/sample/nwProject.nwx index 77487231..f16b4c45 100644 --- a/sample/nwProject.nwx +++ b/sample/nwProject.nwx @@ -1,6 +1,6 @@ - - + + Sample Project Sample Project Jane Smith diff --git a/setup.py b/setup.py index 17c2ffa5..cf70a546 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ File History: Created: 2019-05-16 [0.5.1] This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/conftest.py b/tests/conftest.py index 39cc96cd..dd2004d6 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -3,7 +3,7 @@ novelWriter – Test Suite Configuration ====================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/mock.py b/tests/mock.py index e70034bd..96a4c5f8 100644 --- a/tests/mock.py +++ b/tests/mock.py @@ -3,7 +3,7 @@ novelWriter – Test Suite Mocked Classes ======================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_base/test_base_common.py b/tests/test_base/test_base_common.py index a3d9d28e..0aec498a 100644 --- a/tests/test_base/test_base_common.py +++ b/tests/test_base/test_base_common.py @@ -3,7 +3,7 @@ novelWriter – Common Functions Tester ===================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_base/test_base_config.py b/tests/test_base/test_base_config.py index 8282e558..17d9ddf9 100644 --- a/tests/test_base/test_base_config.py +++ b/tests/test_base/test_base_config.py @@ -3,7 +3,7 @@ novelWriter – Config Class Tester ================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_base/test_base_error.py b/tests/test_base/test_base_error.py index 9ba9b9b2..d90e6eb1 100644 --- a/tests/test_base/test_base_error.py +++ b/tests/test_base/test_base_error.py @@ -3,7 +3,7 @@ novelWriter – Error Handler Tester ================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_base/test_base_init.py b/tests/test_base/test_base_init.py index 2cc4d255..1d41c8de 100644 --- a/tests/test_base/test_base_init.py +++ b/tests/test_base/test_base_init.py @@ -3,7 +3,7 @@ novelWriter – Main Init Tester ============================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_coretools.py b/tests/test_core/test_core_coretools.py index a737406e..d3789b80 100644 --- a/tests/test_core/test_core_coretools.py +++ b/tests/test_core/test_core_coretools.py @@ -3,7 +3,7 @@ novelWriter – Project Document Tools Tester =========================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_document.py b/tests/test_core/test_core_document.py index 50dd28bf..58eb10fc 100644 --- a/tests/test_core/test_core_document.py +++ b/tests/test_core/test_core_document.py @@ -3,7 +3,7 @@ novelWriter – NWDocument Class Tester ===================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_index.py b/tests/test_core/test_core_index.py index dd94155f..c3838772 100644 --- a/tests/test_core/test_core_index.py +++ b/tests/test_core/test_core_index.py @@ -3,7 +3,7 @@ novelWriter – NWIndex Class Tester ================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_item.py b/tests/test_core/test_core_item.py index 2633ed7e..892bf250 100644 --- a/tests/test_core/test_core_item.py +++ b/tests/test_core/test_core_item.py @@ -3,7 +3,7 @@ novelWriter – NWItem Class Tester ================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_options.py b/tests/test_core/test_core_options.py index 8d1b74fb..1a9cf381 100644 --- a/tests/test_core/test_core_options.py +++ b/tests/test_core/test_core_options.py @@ -3,7 +3,7 @@ novelWriter – OptionState Class Tester ====================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_project.py b/tests/test_core/test_core_project.py index 4897c85e..eee8e2ba 100644 --- a/tests/test_core/test_core_project.py +++ b/tests/test_core/test_core_project.py @@ -3,7 +3,7 @@ novelWriter – NWProject Class Tester ==================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_projectxml.py b/tests/test_core/test_core_projectxml.py index f8b06cf8..74c60c74 100644 --- a/tests/test_core/test_core_projectxml.py +++ b/tests/test_core/test_core_projectxml.py @@ -3,7 +3,7 @@ novelWriter – ProjectXMLReader/Writer Class Tester ================================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_spellcheck.py b/tests/test_core/test_core_spellcheck.py index b3b00bf4..b13e7100 100644 --- a/tests/test_core/test_core_spellcheck.py +++ b/tests/test_core/test_core_spellcheck.py @@ -3,7 +3,7 @@ novelWriter – Spell Check Classes Tester ======================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_status.py b/tests/test_core/test_core_status.py index 760f31f5..fdfa1588 100644 --- a/tests/test_core/test_core_status.py +++ b/tests/test_core/test_core_status.py @@ -3,7 +3,7 @@ novelWriter – NWStatus Class Tester =================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_storage.py b/tests/test_core/test_core_storage.py index 8986b65e..1a26ebef 100644 --- a/tests/test_core/test_core_storage.py +++ b/tests/test_core/test_core_storage.py @@ -3,7 +3,7 @@ novelWriter – NWStorage Class Tester ==================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_tohtml.py b/tests/test_core/test_core_tohtml.py index 44f16673..d459bff1 100644 --- a/tests/test_core/test_core_tohtml.py +++ b/tests/test_core/test_core_tohtml.py @@ -3,7 +3,7 @@ novelWriter – ToHtml Class Tester ================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_tokenizer.py b/tests/test_core/test_core_tokenizer.py index f2e939a2..4b535730 100644 --- a/tests/test_core/test_core_tokenizer.py +++ b/tests/test_core/test_core_tokenizer.py @@ -3,7 +3,7 @@ novelWriter – Tokenizer Class Tester ==================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_tomd.py b/tests/test_core/test_core_tomd.py index aec51566..43f44d35 100644 --- a/tests/test_core/test_core_tomd.py +++ b/tests/test_core/test_core_tomd.py @@ -3,7 +3,7 @@ novelWriter – ToMd Class Tester =============================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_toodt.py b/tests/test_core/test_core_toodt.py index cbc9ce17..22ea18be 100644 --- a/tests/test_core/test_core_toodt.py +++ b/tests/test_core/test_core_toodt.py @@ -3,7 +3,7 @@ novelWriter – ToOdt Class Tester ================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_core/test_core_tree.py b/tests/test_core/test_core_tree.py index 731e11aa..7b9d02da 100644 --- a/tests/test_core/test_core_tree.py +++ b/tests/test_core/test_core_tree.py @@ -3,7 +3,7 @@ novelWriter – NWTree Class Tester ================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_dialogs/test_dlg_about.py b/tests/test_dialogs/test_dlg_about.py index 8567b07c..71f7771b 100644 --- a/tests/test_dialogs/test_dlg_about.py +++ b/tests/test_dialogs/test_dlg_about.py @@ -3,7 +3,7 @@ novelWriter – About Dialog Class Tester ======================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_dialogs/test_dlg_dialogs.py b/tests/test_dialogs/test_dlg_dialogs.py index 772554ea..cc2e6223 100644 --- a/tests/test_dialogs/test_dlg_dialogs.py +++ b/tests/test_dialogs/test_dlg_dialogs.py @@ -3,7 +3,7 @@ novelWriter – Other Dialog Classes Tester ========================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_dialogs/test_dlg_docmerge.py b/tests/test_dialogs/test_dlg_docmerge.py index 134ed5a2..c2f876d2 100644 --- a/tests/test_dialogs/test_dlg_docmerge.py +++ b/tests/test_dialogs/test_dlg_docmerge.py @@ -3,7 +3,7 @@ novelWriter – Merge and Split Dialog Classes Tester =================================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_dialogs/test_dlg_docsplit.py b/tests/test_dialogs/test_dlg_docsplit.py index 9eb296f2..34463b88 100644 --- a/tests/test_dialogs/test_dlg_docsplit.py +++ b/tests/test_dialogs/test_dlg_docsplit.py @@ -3,7 +3,7 @@ novelWriter – Merge and Split Dialog Classes Tester =================================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_dialogs/test_dlg_preferences.py b/tests/test_dialogs/test_dlg_preferences.py index a5990d95..ebe97b73 100644 --- a/tests/test_dialogs/test_dlg_preferences.py +++ b/tests/test_dialogs/test_dlg_preferences.py @@ -3,7 +3,7 @@ novelWriter – Preferences Dialog Class Tester ============================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_dialogs/test_dlg_projdetails.py b/tests/test_dialogs/test_dlg_projdetails.py index 92df7f39..50150257 100644 --- a/tests/test_dialogs/test_dlg_projdetails.py +++ b/tests/test_dialogs/test_dlg_projdetails.py @@ -3,7 +3,7 @@ novelWriter – Project Details Dialog Class Tester ================================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_dialogs/test_dlg_projload.py b/tests/test_dialogs/test_dlg_projload.py index d5019f11..6f226fda 100644 --- a/tests/test_dialogs/test_dlg_projload.py +++ b/tests/test_dialogs/test_dlg_projload.py @@ -3,7 +3,7 @@ novelWriter – Project Load Dialog Class Tester ============================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_dialogs/test_dlg_projsettings.py b/tests/test_dialogs/test_dlg_projsettings.py index e90fe6ef..8d933237 100644 --- a/tests/test_dialogs/test_dlg_projsettings.py +++ b/tests/test_dialogs/test_dlg_projsettings.py @@ -3,7 +3,7 @@ novelWriter – Project Settings Dialog Class Tester ================================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_dialogs/test_dlg_wordlist.py b/tests/test_dialogs/test_dlg_wordlist.py index 7f8d989c..fef4b4a3 100644 --- a/tests/test_dialogs/test_dlg_wordlist.py +++ b/tests/test_dialogs/test_dlg_wordlist.py @@ -3,7 +3,7 @@ novelWriter – Other Dialog Classes Tester ========================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gui/test_gui_doceditor.py b/tests/test_gui/test_gui_doceditor.py index 3de027df..7497f950 100644 --- a/tests/test_gui/test_gui_doceditor.py +++ b/tests/test_gui/test_gui_doceditor.py @@ -3,7 +3,7 @@ novelWriter – Main GUI Editor Class Tester ========================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gui/test_gui_docviewer.py b/tests/test_gui/test_gui_docviewer.py index f7c2d766..02f6002f 100644 --- a/tests/test_gui/test_gui_docviewer.py +++ b/tests/test_gui/test_gui_docviewer.py @@ -3,7 +3,7 @@ novelWriter – Main GUI Viewer Class Tester ========================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gui/test_gui_guimain.py b/tests/test_gui/test_gui_guimain.py index ec17114c..e6a5256e 100644 --- a/tests/test_gui/test_gui_guimain.py +++ b/tests/test_gui/test_gui_guimain.py @@ -3,7 +3,7 @@ novelWriter – Main GUI Editor Class Tester ========================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gui/test_gui_i18n.py b/tests/test_gui/test_gui_i18n.py index f5c6cb06..b514001c 100644 --- a/tests/test_gui/test_gui_i18n.py +++ b/tests/test_gui/test_gui_i18n.py @@ -3,7 +3,7 @@ novelWriter – Main GUI i18n Tests ================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gui/test_gui_mainmenu.py b/tests/test_gui/test_gui_mainmenu.py index 157b9d46..92a820a0 100644 --- a/tests/test_gui/test_gui_mainmenu.py +++ b/tests/test_gui/test_gui_mainmenu.py @@ -3,7 +3,7 @@ novelWriter – Main GUI Main Menu Class Tester ============================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gui/test_gui_noveltree.py b/tests/test_gui/test_gui_noveltree.py index c75a29f3..313d720e 100644 --- a/tests/test_gui/test_gui_noveltree.py +++ b/tests/test_gui/test_gui_noveltree.py @@ -3,7 +3,7 @@ novelWriter – Main GUI Novel Tree Class Tester ============================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gui/test_gui_outline.py b/tests/test_gui/test_gui_outline.py index 707f497d..7b5bbfc6 100644 --- a/tests/test_gui/test_gui_outline.py +++ b/tests/test_gui/test_gui_outline.py @@ -3,7 +3,7 @@ novelWriter – Main GUI Outline Class Tester =========================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gui/test_gui_projtree.py b/tests/test_gui/test_gui_projtree.py index 684f4dd3..cf1a4ab2 100644 --- a/tests/test_gui/test_gui_projtree.py +++ b/tests/test_gui/test_gui_projtree.py @@ -3,7 +3,7 @@ novelWriter – Main GUI Project Tree Class Tester ================================================ This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gui/test_gui_statusbar.py b/tests/test_gui/test_gui_statusbar.py index 58ea144e..f0a3ce9f 100644 --- a/tests/test_gui/test_gui_statusbar.py +++ b/tests/test_gui/test_gui_statusbar.py @@ -3,7 +3,7 @@ novelWriter – Main Status Bar Class Tester ========================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_gui/test_gui_theme.py b/tests/test_gui/test_gui_theme.py index c8133f6b..9899c1c1 100644 --- a/tests/test_gui/test_gui_theme.py +++ b/tests/test_gui/test_gui_theme.py @@ -3,7 +3,7 @@ novelWriter – GUI Theme and Icons Classes Tester ================================================ This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_tools/test_tools_build.py b/tests/test_tools/test_tools_build.py index 44d5330f..259e0924 100644 --- a/tests/test_tools/test_tools_build.py +++ b/tests/test_tools/test_tools_build.py @@ -3,7 +3,7 @@ novelWriter – Build Dialog Class Tester ======================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_tools/test_tools_lipsum.py b/tests/test_tools/test_tools_lipsum.py index e0cf85f1..31944091 100644 --- a/tests/test_tools/test_tools_lipsum.py +++ b/tests/test_tools/test_tools_lipsum.py @@ -3,7 +3,7 @@ novelWriter – Lorem Ipsum Tool Tester ===================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_tools/test_tools_projwizard.py b/tests/test_tools/test_tools_projwizard.py index 77db942f..9fe8865b 100644 --- a/tests/test_tools/test_tools_projwizard.py +++ b/tests/test_tools/test_tools_projwizard.py @@ -3,7 +3,7 @@ novelWriter – New Project Wizard Class Tester ============================================= This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/test_tools/test_tools_writingstats.py b/tests/test_tools/test_tools_writingstats.py index c071cf43..895635fd 100644 --- a/tests/test_tools/test_tools_writingstats.py +++ b/tests/test_tools/test_tools_writingstats.py @@ -3,7 +3,7 @@ novelWriter – Writing Stats Dialog Class Tester =============================================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/tools.py b/tests/tools.py index 5b77af92..fa5107a5 100644 --- a/tests/tools.py +++ b/tests/tools.py @@ -3,7 +3,7 @@ novelWriter – Test Suite Tools ============================== This file is a part of novelWriter -Copyright 2018–2022, Veronica Berglyd Olsen +Copyright 2018–2023, Veronica Berglyd Olsen This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by