From 93965138da8b1f33bbae20aa2e6e2a97e587c26e Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Wed, 17 Mar 2021 17:23:20 +0100 Subject: [PATCH] Bump version and update changelog for patch 1.2.1 --- CHANGELOG.md | 15 +++++++++++++++ docs/source/conf.py | 4 ++-- nw/__init__.py | 6 +++--- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db32fcdc..6246994c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # novelWriter Changelog +## Version 1.2.1 [2021-03-21] + +### Release Notes + +### Detailed Changelog + +**Bugfixes** + +* Fixed an issue with the search bar where the button and shortcut actions would be blocked unless + the document itself had focus. This focus check was added for all the text altering functions, + but should not affect search and replace. The search and replace actions now bypass the regular + action pipeline with the focus check. Issue #708. PR #709. + +---- + ## Version 1.2 [2021-03-14] ### Release Notes diff --git a/docs/source/conf.py b/docs/source/conf.py index b6ab9f0b..7cf8bf39 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" +version = "1.2.1" # The full version, including alpha/beta/rc tags -release = "1.2" +release = "1.2.1" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index 129f97a1..c1184649 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" -__hexversion__ = "0x010200f0" -__date__ = "2021-03-14" +__version__ = "1.2.1" +__hexversion__ = "0x010201f0" +__date__ = "2021-03-21" __status__ = "Stable" __domain__ = "novelwriter.io" __url__ = "https://novelwriter.io"