diff --git a/CHANGELOG.md b/CHANGELOG.md index 091ecf1c..fa9f33a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,88 @@ # novelWriter Change Log +## Version 1.0 [2021-01-03] + +### Release Notes + +Based on my own testing and usage, and no serious bugs discovered in quite some time (aside from a +few corner case issues), it appears that novelWriter is stable enough for a 1.0 release. Thanks to +all the new users who keep providing feedback on bugs, cosmetic issues, or suggesting improvements +and new features. I'm glad to hear that others find my application useful, and I will keep making +improvements as I get new suggestions and have new ideas myself. At the same time, I will continue +to keep novelWriter simple and clean and avoid feature-bloat. + +This release mainly fixes cosmetic and other minor issues to the user interface and makes a few +minor improvements to some less used features. Aside from this, nothing major has changed since the +last release candidate. + +This release concludes over two years of tinkering with this project. The project grew out of +numerous lunch and coffee discussions with my colleague Marian Lückhof at my former job. We were +both looking for a tool for writing novels on Linux that suited our needs. We started assembling a +wish list of features that has become novelWriter. In addition, users on GitHub have continued to +test new features, provide very helpful feedback, and make new suggestions for improvements. +Especially the feedback from @johnblommers has been helpful during much of the initial development +time. Over the last months more users have started posting ideas and feedback. Thanks to all of you +for your contributions. + +The 1.0 release is intended as a first release of the core features of novelWriter. That does not +mean that all planned features have been fully implemented. There is a long list of ideas and +suggestions to consider and implement. New ideas and suggestions are welcome. Either as feature +requests in the issue tracker, or if not fully formed, can be discussed on the +[discussions page](https://github.com/vkbo/novelWriter/discussions). + +### Detailed Changelog + +**Bugfixes** + +* Fixed a minor cosmetic issue with the checkbox next to the "Distraction Free Mode" entry in the + menu where its checkmark wouldn't always correspond to the current state of the mode. PR #532. +* When opening the "Writing Stats" dialog in a new project where there is no session log file yet, + an error dialog would pop up to complain the file is missing. A missing file is not an error, and + should just be quietly ignored. PR #535. +* Don't enforce string data type in meta data lines written to the head of documents. Some of the + entries can potentially be of NoneType, and the enforced type will then cause a crash. PR #539. +* Fixed a couple of faulty checks in the index and outline details panel. The checks were not + reachable by user actions, but put in place to capture coding errors. PR #549. + +**User Interface** + +* The placeholder text in the "Build Novel Project" tool was referring to the name of the build + button by a previous label. It now refers to the label that is on the current button. PR #535. +* Add "Move Item Up" and "Move Item Down" to the project tree context menu. These connect to the + same function as the same entries in the Tools menu. PR #535. +* Block the Item Editor for the root Trash folder. PR #539. + +**Other Changes** + +* The special "Orphaned Files" folder has been dropped. Since the document class saves most of the + document meta data to the header of document files, it is no longer strictly necessary and it + does complicate the code behind the project tree as the orphaned folder isn't a tracked folder + and therefore needs a fair bit of customised code to fit into the rest of the tree data model. + Files found in the project's storage folder that do not exist in the project file will now be + imported into the main project tree based on a set of fallbacks. All recovered files are prefixed + with the word "Recovered". Issue #540, PR #543. +* Changed the way novel headers are added to the Outline view in cases where the strict logic of + header levelled isn't obeyed. Previously. a scene header not under a chapter would be added to a + previous chapter. That may be a bit confusing. Now, instead, a scene outside a chapter will just + be bumped up one level. PR #549. + +**Documentation** + +* Fixed some minor typo or wrong word errors in the contributing guidelines. PR #537 by Curtis + Gedak @gedakc. +* Fixed minor grammar and typo issues in documentation. PR #544 by Curtis Gedak @gedakc. +* Updated documentation with latest changes and rewritten some sections to make the terminology + more consistent. PR #548. + +**Code Improvements** + +* Also enforce the maximum line length in text documents. PR #534. +* Updated various parts of the code where a question message box is opened and redirected the call + to the main GUI class. This was done mostly for consistency, but the feature was added earlier to + ensure that core classes do not depend on Qt libraries. PR #535. + +---- + ## Version 1.0 Release Candidate 2 [2020-12-13] ### Release Notes diff --git a/docs/source/conf.py b/docs/source/conf.py index 25b17b8a..c887039d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,13 +21,13 @@ import sphinx_rtd_theme # noqa: F401 # -- Project information ----------------------------------------------------- project = "novelWriter" -copyright = "2018-2020, Veronica Berglyd Olsen" +copyright = "2018–2021, Veronica Berglyd Olsen" author = "Veronica Berglyd Olsen" # The short X.Y version version = "1.0" # The full version, including alpha/beta/rc tags -release = "1.0-rc2" +release = "1.0" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index cb4eb949..8733dad2 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -9,7 +9,7 @@ Created: 2018-09-22 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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 @@ -58,15 +58,15 @@ from nw.config import Config # __package__ = "nw" -__copyright__ = "Copyright 2018–2020, Veronica Berglyd Olsen" +__copyright__ = "Copyright 2018–2021, Veronica Berglyd Olsen" __license__ = "GPLv3" __author__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" -__version__ = "1.0rc2" -__hexversion__ = "0x010000c2" -__date__ = "2020-12-13" -__status__ = "Beta" +__version__ = "1.0" +__hexversion__ = "0x010000f0" +__date__ = "2021-01-03" +__status__ = "Stable" __domain__ = "novelwriter.io" __url__ = "https://novelwriter.io" __sourceurl__ = "https://github.com/vkbo/novelWriter" diff --git a/nw/assets/text/release_notes.htm b/nw/assets/text/release_notes.htm index 4aabc506..cc4bb93a 100644 --- a/nw/assets/text/release_notes.htm +++ b/nw/assets/text/release_notes.htm @@ -2,6 +2,36 @@ +

Release Notes for 1.0

+

Released on 3 January 2021

+

Based on my own testing and usage, and no serious bugs discovered in quite some time (aside from +a few corner case issues), it appears that novelWriter is stable enough for a 1.0 release. Thanks +to all the new users who keep providing feedback on bugs, cosmetic issues, or suggesting +improvements and new features. I'm glad to hear that others find my application useful, and I will +keep making improvements as I get new suggestions and have new ideas myself. At the same time, I +will continue to keep novelWriter simple and clean and avoid feature-bloat.

+

This release mainly fixes cosmetic and other minor issues to the user interface and makes a few +minor improvements to some less used features. Aside from this, nothing major has changed since the +last release candidate.

+

This release concludes over two years of tinkering with this project. The project grew out of +numerous lunch and coffee discussions with my colleague Marian Lückhof at my former job. We were +both looking for a tool for writing novels on Linux that suited our needs. We started assembling a +wish list of features that has become novelWriter. In addition, users on GitHub have continued to +test new features, provide very helpful feedback, and make new suggestions for improvements. +Especially the feedback from @johnblommers has been helpful during much of the initial development +time. Over the last months more users have started posting ideas and feedback. Thanks to all of you +for your contributions.

+

The 1.0 release is intended as a first release of the core features of novelWriter. That does +not mean that all planned features have been fully implemented. There is a long list of ideas and +suggestions to consider and implement. New ideas and suggestions are welcome. Either as feature +requests in the issue tracker, or if not fully formed, can be discussed on the +discussions page. + +

The full changelog is available +here.

+ +
+

Release Notes for 1.0 RC2

Released on 13 December 2020

This second release candidate for 1.0 comes with only minor changes and improvements, and a @@ -25,9 +55,6 @@ of these are corner cases that may not even be reachable by unexpected user acti

Hopefully, these changes have resulted in an even more stable version of novelWriter. If no more issues are discovered, the next release will be the final version 1.0 release.

-

The full changelog is available -here.

-

Release Notes for 1.0 RC1

diff --git a/nw/common.py b/nw/common.py index 47e86ff6..f0e5900e 100644 --- a/nw/common.py +++ b/nw/common.py @@ -9,7 +9,7 @@ Created: 2019-05-12 [0.1.0] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/config.py b/nw/config.py index 9c232109..ddec796f 100644 --- a/nw/config.py +++ b/nw/config.py @@ -9,7 +9,7 @@ Created: 2018-09-22 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/constants/constants.py b/nw/constants/constants.py index 8a82f676..b0ea61c5 100644 --- a/nw/constants/constants.py +++ b/nw/constants/constants.py @@ -9,7 +9,7 @@ Created: 2019-04-28 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/constants/enum.py b/nw/constants/enum.py index e1bcfb46..7079ce6e 100644 --- a/nw/constants/enum.py +++ b/nw/constants/enum.py @@ -9,7 +9,7 @@ Created: 2018-11-02 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/constants/iso.py b/nw/constants/iso.py index ccdc0808..4cc83bcd 100644 --- a/nw/constants/iso.py +++ b/nw/constants/iso.py @@ -9,7 +9,7 @@ Created: 2019-11-05 [0.4.0] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/document.py b/nw/core/document.py index 67cd1253..e7ed46ba 100644 --- a/nw/core/document.py +++ b/nw/core/document.py @@ -9,7 +9,7 @@ Created: 2018-09-29 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/index.py b/nw/core/index.py index 09b8e091..f94bbf3e 100644 --- a/nw/core/index.py +++ b/nw/core/index.py @@ -9,7 +9,7 @@ Created: 2019-05-27 [0.1.4] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/item.py b/nw/core/item.py index 477f2df9..2ac93c42 100644 --- a/nw/core/item.py +++ b/nw/core/item.py @@ -9,7 +9,7 @@ Created: 2018-10-27 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/options.py b/nw/core/options.py index e0a937dc..db94ae45 100644 --- a/nw/core/options.py +++ b/nw/core/options.py @@ -10,7 +10,7 @@ Rewritten: 2020-02-19 [0.4.5] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/project.py b/nw/core/project.py index 1af00534..d6b6da78 100644 --- a/nw/core/project.py +++ b/nw/core/project.py @@ -9,7 +9,7 @@ Created: 2018-09-29 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/spellcheck.py b/nw/core/spellcheck.py index 83ff2540..8e71831c 100644 --- a/nw/core/spellcheck.py +++ b/nw/core/spellcheck.py @@ -9,7 +9,7 @@ Created: 2019-06-11 [0.1.5] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/status.py b/nw/core/status.py index ccec2e73..71e2f8e4 100644 --- a/nw/core/status.py +++ b/nw/core/status.py @@ -9,7 +9,7 @@ Created: 2019-05-19 [0.1.3] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/tohtml.py b/nw/core/tohtml.py index f3166d02..55da29d1 100644 --- a/nw/core/tohtml.py +++ b/nw/core/tohtml.py @@ -9,7 +9,7 @@ Created: 2019-05-07 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/tokenizer.py b/nw/core/tokenizer.py index 6039121d..2e7d0c6e 100644 --- a/nw/core/tokenizer.py +++ b/nw/core/tokenizer.py @@ -9,7 +9,7 @@ Created: 2019-05-05 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/tools.py b/nw/core/tools.py index 342f62bb..9e8229e3 100644 --- a/nw/core/tools.py +++ b/nw/core/tools.py @@ -12,7 +12,7 @@ Created: 2020-07-05 [0.10.0] numberToRoman This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/core/tree.py b/nw/core/tree.py index 0c59fd7f..d559d91b 100644 --- a/nw/core/tree.py +++ b/nw/core/tree.py @@ -9,7 +9,7 @@ Created: 2020-05-07 [0.4.5] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/error.py b/nw/error.py index 24a802aa..586d1a1b 100644 --- a/nw/error.py +++ b/nw/error.py @@ -9,7 +9,7 @@ Created: 2020-08-02 [0.10.2] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/about.py b/nw/gui/about.py index 8beb7d9f..fe73387f 100644 --- a/nw/gui/about.py +++ b/nw/gui/about.py @@ -9,7 +9,7 @@ Created: 2020-05-21 [0.5.2] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/build.py b/nw/gui/build.py index c4a8fd8b..9cfa7085 100644 --- a/nw/gui/build.py +++ b/nw/gui/build.py @@ -9,7 +9,7 @@ Created: 2020-05-09 [0.5] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/custom.py b/nw/gui/custom.py index 2c655c57..1658d5f1 100644 --- a/nw/gui/custom.py +++ b/nw/gui/custom.py @@ -11,7 +11,7 @@ Created: 2020-05-17 [0.5.1] PagedDialog This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/doceditor.py b/nw/gui/doceditor.py index 48e44fbf..f782fa62 100644 --- a/nw/gui/doceditor.py +++ b/nw/gui/doceditor.py @@ -15,7 +15,7 @@ Rewritten: 2020-10-07 [1.0b3] BackgroundWordCounter This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/dochighlight.py b/nw/gui/dochighlight.py index 51a00f02..d06d1175 100644 --- a/nw/gui/dochighlight.py +++ b/nw/gui/dochighlight.py @@ -9,7 +9,7 @@ Created: 2019-04-06 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/docmerge.py b/nw/gui/docmerge.py index f2a49e19..54dc1811 100644 --- a/nw/gui/docmerge.py +++ b/nw/gui/docmerge.py @@ -9,7 +9,7 @@ Created: 2020-01-23 [0.4.3] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/docsplit.py b/nw/gui/docsplit.py index 8299d14e..609168db 100644 --- a/nw/gui/docsplit.py +++ b/nw/gui/docsplit.py @@ -9,7 +9,7 @@ Created: 2020-02-01 [0.4.3] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/docviewer.py b/nw/gui/docviewer.py index fab3b5ef..34f5ded3 100644 --- a/nw/gui/docviewer.py +++ b/nw/gui/docviewer.py @@ -13,7 +13,7 @@ Created: 2020-09-08 [1.0b1] GuiDocViewHistory This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/itemdetails.py b/nw/gui/itemdetails.py index da1a8f4a..cbb006df 100644 --- a/nw/gui/itemdetails.py +++ b/nw/gui/itemdetails.py @@ -9,7 +9,7 @@ Created: 2019-04-24 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/itemeditor.py b/nw/gui/itemeditor.py index 86c81768..9815ed59 100644 --- a/nw/gui/itemeditor.py +++ b/nw/gui/itemeditor.py @@ -9,7 +9,7 @@ Created: 2019-04-27 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/mainmenu.py b/nw/gui/mainmenu.py index f49abc2a..554eca52 100644 --- a/nw/gui/mainmenu.py +++ b/nw/gui/mainmenu.py @@ -9,7 +9,7 @@ Created: 2019-04-27 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/outline.py b/nw/gui/outline.py index 21b86524..38046576 100644 --- a/nw/gui/outline.py +++ b/nw/gui/outline.py @@ -9,7 +9,7 @@ Created: 2019-11-16 [0.4.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/outlinedetails.py b/nw/gui/outlinedetails.py index 2e199c9b..0a6dce7f 100644 --- a/nw/gui/outlinedetails.py +++ b/nw/gui/outlinedetails.py @@ -9,7 +9,7 @@ Created: 2020-06-02 [0.7.0] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/preferences.py b/nw/gui/preferences.py index 4ae78a98..90b86a88 100644 --- a/nw/gui/preferences.py +++ b/nw/gui/preferences.py @@ -9,7 +9,7 @@ Created: 2019-06-10 [0.1.5] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/projload.py b/nw/gui/projload.py index 5c8736ea..348e26d7 100644 --- a/nw/gui/projload.py +++ b/nw/gui/projload.py @@ -9,7 +9,7 @@ Created: 2020-02-26 [0.4.5] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/projsettings.py b/nw/gui/projsettings.py index e02fece6..6521e76c 100644 --- a/nw/gui/projsettings.py +++ b/nw/gui/projsettings.py @@ -9,7 +9,7 @@ Created: 2018-09-29 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/projtree.py b/nw/gui/projtree.py index e1802a8b..7d7e7e54 100644 --- a/nw/gui/projtree.py +++ b/nw/gui/projtree.py @@ -10,7 +10,7 @@ Created: 2020-06-04 [0.7.0] GuiProjectTreeMenu This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/projwizard.py b/nw/gui/projwizard.py index 1beb4e54..358f715c 100644 --- a/nw/gui/projwizard.py +++ b/nw/gui/projwizard.py @@ -9,7 +9,7 @@ Created: 2020-07-11 [0.10.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/statusbar.py b/nw/gui/statusbar.py index c430da8c..8fceafa5 100644 --- a/nw/gui/statusbar.py +++ b/nw/gui/statusbar.py @@ -9,7 +9,7 @@ Created: 2019-04-20 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/theme.py b/nw/gui/theme.py index cd691aa2..61e2fca7 100644 --- a/nw/gui/theme.py +++ b/nw/gui/theme.py @@ -10,7 +10,7 @@ Created: 2019-11-08 [0.4.0] GuiIcons This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/gui/writingstats.py b/nw/gui/writingstats.py index 18abe3ff..b1eb3d42 100644 --- a/nw/gui/writingstats.py +++ b/nw/gui/writingstats.py @@ -9,7 +9,7 @@ Created: 2019-10-20 [0.3] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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/nw/guimain.py b/nw/guimain.py index c03eceea..920a689e 100644 --- a/nw/guimain.py +++ b/nw/guimain.py @@ -9,7 +9,7 @@ Created: 2018-09-22 [0.0.1] This file is a part of novelWriter - Copyright 2018–2020, Veronica Berglyd Olsen + Copyright 2018–2021, 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