Skip to content

Commit 672e368

Browse files
authored
Release 1.6.3 (#1102)
2 parents 20da333 + 53c1d1b commit 672e368

File tree

3 files changed

+44
-3
lines changed

3 files changed

+44
-3
lines changed

CHANGELOG.md

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

3+
## Version 1.6.2 [2022-08-18]
4+
5+
### Release Notes
6+
7+
This is a bugfix release that fixes a rare problem causing novelWriter to crash if the spell
8+
checker language setting was configured to an empty value.
9+
10+
A few other minor issues have also been fixed: The project language setting is now properly
11+
exported to ODT documents. Spaces are no longer inserted automatically in front of colons in
12+
certain meta data settings when the feature is enabled (it is primarily used for French). Lastly,
13+
the slider splitting the editor and viewer panels can no longer be dragged until the viewer
14+
disappears. It was not necessarily obvious how the viewer panel could be restored in such cases.
15+
16+
### Detailed Changelog
17+
18+
**Bugfixes**
19+
20+
* Fixed an issue where the project language setting was not exported when building Open Document
21+
files. Issue #1073. PR #1087.
22+
* Fixed an issue where the splitter in the main window could be dragged until it hid the document
23+
viewer panel. This is no longer possible. Issue #1085. PR #1087.
24+
* Fixed an issue where an empty spell check language setting would crash novelWriter. Issue #1096.
25+
PR #1098.
26+
* Added a checker that blocks the automatic insertion of spaces in front of special characters in
27+
the cases where the character is a colon in either a meta tag, or as part of the synopsis
28+
keyword. This feature is used for certain languages like French and Spanish. Issue #1090.
29+
PR #1099.
30+
31+
----
32+
333
## Version 1.6.2 [2022-03-20]
434

535
### 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.2"
64-
__hexversion__ = "0x010602f0"
65-
__date__ = "2022-03-20"
63+
__version__ = "1.6.3"
64+
__hexversion__ = "0x010603f0"
65+
__date__ = "2022-08-18"
6666
__status__ = "Stable"
6767
__domain__ = "novelwriter.io"
6868
__url__ = "https://novelwriter.io"

novelwriter/assets/text/release_notes.htm

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,16 @@ <h3>Patch 1.6.2 &ndash; 20 March 2022</h3>
5353
been fixed. Another fix resolves an error message being written to the console logging output when
5454
a new document was created. Both errors were harmless.</p>
5555

56+
<h3>Patch 1.6.3 &ndash; 18 August 2022</h3>
57+
58+
<p>This is a bugfix release that fixes a rare problem causing novelWriter to crash if the spell
59+
checker language setting was configured to an empty value.</p>
60+
<p>A few other minor issues have also been fixed: The project language setting is now properly
61+
exported to ODT documents. Spaces are no longer inserted automatically in front of colons in
62+
certain meta data settings when the feature is enabled (it is primarily used for French). Lastly,
63+
the slider splitting the editor and viewer panels can no longer be dragged until the viewer
64+
disappears. It was not necessarily obvious how the viewer panel could be restored in such cases.
65+
</p>
66+
5667
</body>
5768
</html>

0 commit comments

Comments
 (0)