Skip to content

Commit

Permalink
Release 1.6.1 (#1018)
Browse files Browse the repository at this point in the history
  • Loading branch information
vkbo authored Mar 16, 2022
1 parent 9e76498 commit 4cbbae6
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 6 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# novelWriter Changelog

## Version 1.6.1 [2022-03-16]

### Release Notes

This is a bugfix and patch release that fixes two recursion/loop issues. One can cause a crash if
the window is resized rapidly, and one can cause a hang with certain search parameters in the
editor's search box. The Latin American Spanish translation has also been updated.

### Detailed Changelog

**Installation**

* When using the new installer on Windows, the project file mime type icon path would not be
correctly configured in registry. The correct path is now used. PR #1006.

**Internationalisation**

* The Latin American Spanish translation has been updated with two missing translation strings.
PR #1017.

**Bugfixes**

* Fix a bug where rapidly resizing the main window could trigger the recursion detector in Python
if done on a slower system. The actual issue may be a race condition or similar, and the change
made at least makes it harder to trigger. PR #1007.
* With some document searches, it was possible to trigger an infinite loop in the function that
counts results. It seems to be caused by the QTextEdit widget's find function returning a
successful result status, but no actual result selection. The fix will now write a warning to the
log and exit in such cases. The number of results is also now capped at 1000. Issue #1015.
PR #1016.

----

## Version 1.6 [2022-02-20]

### Release Notes
Expand Down
6 changes: 3 additions & 3 deletions novelwriter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
__author__ = "Veronica Berglyd Olsen"
__maintainer__ = "Veronica Berglyd Olsen"
__email__ = "[email protected]"
__version__ = "1.6"
__hexversion__ = "0x010600f0"
__date__ = "2022-02-20"
__version__ = "1.6.1"
__hexversion__ = "0x010601f0"
__date__ = "2022-03-16"
__status__ = "Stable"
__domain__ = "novelwriter.io"
__url__ = "https://novelwriter.io"
Expand Down
8 changes: 8 additions & 0 deletions novelwriter/assets/text/release_notes.htm
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,13 @@ <h2>Release Notes for 1.6</h2>

<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>

<h2>Patch Notes</h2>

<h3>Patch 1.6.1 &ndash; 16 March 2022</h3>

<p>This is a bugfix and patch release that fixes two recursion/loop issues. One can cause a crash
if the window is resized rapidly, and one can cause a hang with certain search parameters in the
editor's search box. The Latin American Spanish translation has also been updated.</p>

</body>
</html>
6 changes: 3 additions & 3 deletions sample/nwProject.nwx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version='1.0' encoding='utf-8'?>
<novelWriterXML appVersion="1.6" hexVersion="0x010600f0" fileVersion="1.3" timeStamp="2022-02-20 19:44:43">
<novelWriterXML appVersion="1.6.1" hexVersion="0x010601f0" fileVersion="1.3" timeStamp="2022-03-16 22:56:22">
<project>
<name>Sample Project</name>
<title>Sample Project</title>
<author>Jane Smith</author>
<author>Jay Doh</author>
<saveCount>1299</saveCount>
<saveCount>1301</saveCount>
<autoCount>199</autoCount>
<editTime>64923</editTime>
<editTime>64982</editTime>
</project>
<settings>
<doBackup>False</doBackup>
Expand Down

0 comments on commit 4cbbae6

Please sign in to comment.