diff --git a/CHANGELOG.md b/CHANGELOG.md index 12ab3ef6..8a875128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,45 @@ # novelWriter Change Log +## Version 1.0.2 [2021-01-19] + +### Release Notes + +This patch release fixes a few minor cosmetic issues, a minor issue with the indexer, and a bug +when adding words to the user's own spell check dictionary. Additionally, the documentation has +been updated based on user feedback, and some install issues resolved. + +### Detailed Changelog + +**Installation** + +* The dependency list was missing in the setup configuration for PyPi due to a bug in the + `setup.cfg` file. The dependencies have been moved to a different section where the setup tool + now picks them up properly. Issue #570, PR #573 by @stranger-danger-zamu. + +**Bug Fixes** + +* Fixed an issue with note files being moved between a non-novel root folder and a novel root + folder without clearing its index entry in the former note or novel index. This would cause + duplicate entries for such a file. PR #558. +* Fixed a cosmetic issue where the meta data panel below the project tree was not cleared when the + project was closed. PR #559. +* Fixed an issue where the main window title would not be cleared when a project was closed, and + the new title not set when a new project was first created. Issue #560, PR #561. +* The editor context menu option to "Add Word to Dictionary" should also be visible when there are + no spell checker suggestions. The entry was erroneously added under an if-condition that excluded + it in those cases. Issue #574, PR #575. + +**Documentation** + +* Fixed some typos and spelling mistakes in the documentation, and reworded parts of the text that + were unclear. The technical page has also been extended with more information on project folder + structure. PR #557. +* Clarify install instructions, and remove the duplicate instructions in the README file and + replace them with a brief section. The full instructions are in the documentation. Issues #566 + and #570, PR #576. + +---- + ## Version 1.0.1 [2021-01-10] ### Release Notes diff --git a/docs/source/conf.py b/docs/source/conf.py index d6f4580a..86a78181 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,9 +25,9 @@ copyright = "2018–2021, Veronica Berglyd Olsen" author = "Veronica Berglyd Olsen" # The short X.Y version -version = "1.0.1" +version = "1.0.2" # The full version, including alpha/beta/rc tags -release = "1.0.1" +release = "1.0.2" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index 51126435..02438d68 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -63,9 +63,9 @@ __license__ = "GPLv3" __author__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" -__version__ = "1.0.1" -__hexversion__ = "0x010001f0" -__date__ = "2021-01-10" +__version__ = "1.0.2" +__hexversion__ = "0x010002f0" +__date__ = "2021-01-19" __status__ = "Stable" __domain__ = "novelwriter.io" __url__ = "https://novelwriter.io" diff --git a/nw/assets/text/release_notes.htm b/nw/assets/text/release_notes.htm index f1a9bfaa..cdee0872 100644 --- a/nw/assets/text/release_notes.htm +++ b/nw/assets/text/release_notes.htm @@ -2,6 +2,17 @@
+Released on 19 January 2021
+This patch release fixes a few minor cosmetic issues, a minor issue with the indexer, and a bug +when adding words to the user's own spell check dictionary. Additionally, the documentation has +been updated based on user feedback, and some install issues resolved.
+ +The full changelog is available +here.
+ +Released on 10 January 2021
This release is mainly to bring the documentation up to date, as I forgot to update the install @@ -13,9 +24,6 @@ issues with the document and project changed icons on the status bar have also b indicators were previously set to changed status even if no actual change had been made to the project.
-The full changelog is available -here.
-