From cb0591fe5f90dbbd4f8a4714496d9702c114effe Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 27 Mar 2021 15:38:48 +0100 Subject: [PATCH] Bump version to 1.2.2 and update changelog --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ docs/source/conf.py | 4 ++-- nw/__init__.py | 6 +++--- 3 files changed, 32 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9af3972d..6c302d9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # novelWriter Changelog +## Version 1.2.2 [2021-03-28] + +### Release Notes + +### Detailed Changelog + +**Bugfixes** + +* The way Focus Mode worked when activated through the menu and through the document header button + were inconsistent. The header button would deactivate the edit, search and close buttons, while + the menu entry would not. These two methods now call the same set of functions to ensure the + behaviour is consistent. PR #717. +* Closing the document while in Focus Mode now ends Focus Mode. Previously, the editor would be + left stuck in Focus Mode with no way to exit. PR #717. + +**User Interface** + +* The keyboard shortcuts for the search and replace tool now also work in Focus Mode. Previously, + the menu entries and their shortcuts were deactivated in this mode. Issue #716. PR #717. + +**Installation** + +* The setup script command do build minimal install archive files now also generate SHA 256 file + sum files. PR #724. + +---- + ## Version 1.2.1 [2021-03-21] ### Release Notes diff --git a/docs/source/conf.py b/docs/source/conf.py index 7cf8bf39..33e77da1 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.2.1" +version = "1.2.2" # The full version, including alpha/beta/rc tags -release = "1.2.1" +release = "1.2.2" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index c1184649..4b7a05e3 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -62,9 +62,9 @@ __license__ = "GPLv3" __author__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" -__version__ = "1.2.1" -__hexversion__ = "0x010201f0" -__date__ = "2021-03-21" +__version__ = "1.2.2" +__hexversion__ = "0x010202f0" +__date__ = "2021-03-28" __status__ = "Stable" __domain__ = "novelwriter.io" __url__ = "https://novelwriter.io"