From 0907bf195e0504585986dee5111fad94bc68d49e Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 17 Jan 2021 21:11:51 +0100 Subject: [PATCH 1/3] Bump version to 1.0.2 and update changelog --- CHANGELOG.md | 24 ++++++++++++++++++++++++ docs/source/conf.py | 4 ++-- nw/__init__.py | 6 +++--- 3 files changed, 29 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12ab3ef6..d1162cdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # novelWriter Change Log +## Version 1.0.2 [2021-01-24] + +### Release Notes + +### Detailed Changelog + +**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 was not cleared when a project was closed, and the new + title not set when a new project was first created. Issue #560, PR #561. + +**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 of project folder + structure. PR #557. + +---- + ## 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..f0d09ff3 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-24" __status__ = "Stable" __domain__ = "novelwriter.io" __url__ = "https://novelwriter.io" From adc17272dcf09785633d3bf6c1b028dafa6579c4 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Tue, 19 Jan 2021 20:17:15 +0100 Subject: [PATCH 2/3] Updated changelog with latest changes --- CHANGELOG.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1162cdf..9a02b966 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ ### 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 @@ -13,14 +19,20 @@ 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 was not cleared when a project was closed, and the new - title not set when a new project was first created. Issue #560, PR #561. +* 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 of project folder + 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. ---- From 447966e3b826428535c884ef8e8ce0ad4dfdc353 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Tue, 19 Jan 2021 20:56:29 +0100 Subject: [PATCH 3/3] Changed release date and updated release notes --- CHANGELOG.md | 6 +++++- nw/__init__.py | 2 +- nw/assets/text/release_notes.htm | 14 +++++++++++--- sample/nwProject.nwx | 6 +++--- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a02b966..8a875128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ # novelWriter Change Log -## Version 1.0.2 [2021-01-24] +## 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** diff --git a/nw/__init__.py b/nw/__init__.py index f0d09ff3..02438d68 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -65,7 +65,7 @@ __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __version__ = "1.0.2" __hexversion__ = "0x010002f0" -__date__ = "2021-01-24" +__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 @@ +

Release Notes for 1.0.2

+

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.

+ +
+

Release Notes for 1.0.1

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.

-

Release Notes for 1.0

diff --git a/sample/nwProject.nwx b/sample/nwProject.nwx index 95a204f5..f2e81250 100644 --- a/sample/nwProject.nwx +++ b/sample/nwProject.nwx @@ -1,13 +1,13 @@ - + Sample Project Sample Project Jane Smith Jay Doh - 824 + 826 153 - 39478 + 39506 False