@@ -1,5 +1,32 @@
|
||||
# novelWriter Changelog
|
||||
|
||||
## Version 1.2.1 [2021-03-21]
|
||||
|
||||
### Release Notes
|
||||
|
||||
This patch release is a bug fix release addressing issues with the document editor's search and
|
||||
replace tool. Due to some recently added restrictions on when various tools are active, depending
|
||||
on which part of the main window has the user's focus, the search tool keyboard shortcuts and
|
||||
buttons were blocked when they shouldn't. This release resolves these issues.
|
||||
|
||||
### 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.
|
||||
|
||||
**Documentation**
|
||||
|
||||
* Improve the instructions for setup on Linux when manually installing using the `setup.py` script.
|
||||
Previously, the documentation wasn't very clear on the difference between a user space install
|
||||
and a system wide install. Neither did it explain how to install `setuptools` if the package is
|
||||
missing. Issue #714. PR #715.
|
||||
|
||||
----
|
||||
|
||||
## Version 1.2 [2021-03-14]
|
||||
|
||||
### Release Notes
|
||||
|
||||
+2
-2
@@ -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 ---------------------------------------------------
|
||||
|
||||
+3
-3
@@ -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"
|
||||
|
||||
@@ -2,6 +2,18 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
|
||||
<h2>Release Notes for 1.2.1</h2>
|
||||
<p><i>Released on 21 March 2021</i></p>
|
||||
<p>This patch release is a bug fix release addressing issues with the document editor's search and
|
||||
replace tool. Due to some recently added restrictions on when various tools are active, depending
|
||||
on which part of the main window has the user's focus, the search tool keyboard shortcuts and
|
||||
buttons were blocked when they shouldn't. This release resolves these issues.</p>
|
||||
|
||||
<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<h2>Release Notes for 1.2</h2>
|
||||
<p><i>Released on 14 March 2021</i></p>
|
||||
<p>This release is mainly focused on the Build Novel Project tool. Completely new export classes
|
||||
@@ -79,7 +91,5 @@ indexer now checks that a keyword (tag or reference) is valid before saving it t
|
||||
Previously, an invalid keyword could be saved to the index and potentially crash the application.
|
||||
</p>
|
||||
|
||||
<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<novelWriterXML appVersion="1.2rc1" hexVersion="0x010200c1" fileVersion="1.2" timeStamp="2021-02-20 17:08:19">
|
||||
<novelWriterXML appVersion="1.2.1" hexVersion="0x010201f0" fileVersion="1.2" timeStamp="2021-03-21 17:08:18">
|
||||
<project>
|
||||
<name>Sample Project</name>
|
||||
<title>Sample Project</title>
|
||||
<author>Jane Smith</author>
|
||||
<author>Jay Doh</author>
|
||||
<saveCount>937</saveCount>
|
||||
<saveCount>938</saveCount>
|
||||
<autoCount>161</autoCount>
|
||||
<editTime>46797</editTime>
|
||||
<editTime>46831</editTime>
|
||||
</project>
|
||||
<settings>
|
||||
<doBackup>False</doBackup>
|
||||
|
||||
Reference in New Issue
Block a user