Skip to content

Commit 4cbbae6

Browse files
authored
Release 1.6.1 (#1018)
1 parent 9e76498 commit 4cbbae6

File tree

4 files changed

+47
-6
lines changed

4 files changed

+47
-6
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# novelWriter Changelog
22

3+
## Version 1.6.1 [2022-03-16]
4+
5+
### Release Notes
6+
7+
This is a bugfix and patch release that fixes two recursion/loop issues. One can cause a crash if
8+
the window is resized rapidly, and one can cause a hang with certain search parameters in the
9+
editor's search box. The Latin American Spanish translation has also been updated.
10+
11+
### Detailed Changelog
12+
13+
**Installation**
14+
15+
* When using the new installer on Windows, the project file mime type icon path would not be
16+
correctly configured in registry. The correct path is now used. PR #1006.
17+
18+
**Internationalisation**
19+
20+
* The Latin American Spanish translation has been updated with two missing translation strings.
21+
PR #1017.
22+
23+
**Bugfixes**
24+
25+
* Fix a bug where rapidly resizing the main window could trigger the recursion detector in Python
26+
if done on a slower system. The actual issue may be a race condition or similar, and the change
27+
made at least makes it harder to trigger. PR #1007.
28+
* With some document searches, it was possible to trigger an infinite loop in the function that
29+
counts results. It seems to be caused by the QTextEdit widget's find function returning a
30+
successful result status, but no actual result selection. The fix will now write a warning to the
31+
log and exit in such cases. The number of results is also now capped at 1000. Issue #1015.
32+
PR #1016.
33+
34+
----
35+
336
## Version 1.6 [2022-02-20]
437

538
### Release Notes

novelwriter/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
__author__ = "Veronica Berglyd Olsen"
6161
__maintainer__ = "Veronica Berglyd Olsen"
6262
__email__ = "[email protected]"
63-
__version__ = "1.6"
64-
__hexversion__ = "0x010600f0"
65-
__date__ = "2022-02-20"
63+
__version__ = "1.6.1"
64+
__hexversion__ = "0x010601f0"
65+
__date__ = "2022-03-16"
6666
__status__ = "Stable"
6767
__domain__ = "novelwriter.io"
6868
__url__ = "https://novelwriter.io"

novelwriter/assets/text/release_notes.htm

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,13 @@ <h2>Release Notes for 1.6</h2>
3737

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

40+
<h2>Patch Notes</h2>
41+
42+
<h3>Patch 1.6.1 &ndash; 16 March 2022</h3>
43+
44+
<p>This is a bugfix and patch release that fixes two recursion/loop issues. One can cause a crash
45+
if the window is resized rapidly, and one can cause a hang with certain search parameters in the
46+
editor's search box. The Latin American Spanish translation has also been updated.</p>
47+
4048
</body>
4149
</html>

sample/nwProject.nwx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<novelWriterXML appVersion="1.6" hexVersion="0x010600f0" fileVersion="1.3" timeStamp="2022-02-20 19:44:43">
2+
<novelWriterXML appVersion="1.6.1" hexVersion="0x010601f0" fileVersion="1.3" timeStamp="2022-03-16 22:56:22">
33
<project>
44
<name>Sample Project</name>
55
<title>Sample Project</title>
66
<author>Jane Smith</author>
77
<author>Jay Doh</author>
8-
<saveCount>1299</saveCount>
8+
<saveCount>1301</saveCount>
99
<autoCount>199</autoCount>
10-
<editTime>64923</editTime>
10+
<editTime>64982</editTime>
1111
</project>
1212
<settings>
1313
<doBackup>False</doBackup>

0 commit comments

Comments
 (0)