diff --git a/CHANGELOG.md b/CHANGELOG.md index 00509e4e..036c0bc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # novelWriter Changelog +## Version 1.6.2 [2022-08-18] + +### Release Notes + +This is a bugfix release that fixes a rare problem causing novelWriter to crash if the spell +checker language setting was configured to an empty value. + +A few other minor issues have also been fixed: The project language setting is now properly +exported to ODT documents. Spaces are no longer inserted automatically in front of colons in +certain meta data settings when the feature is enabled (it is primarily used for French). Lastly, +the slider splitting the editor and viewer panels can no longer be dragged until the viewer +disappears. It was not necessarily obvious how the viewer panel could be restored in such cases. + +### Detailed Changelog + +**Bugfixes** + +* Fixed an issue where the project language setting was not exported when building Open Document + files. Issue #1073. PR #1087. +* Fixed an issue where the splitter in the main window could be dragged until it hid the document + viewer panel. This is no longer possible. Issue #1085. PR #1087. +* Fixed an issue where an empty spell check language setting would crash novelWriter. Issue #1096. + PR #1098. +* Added a checker that blocks the automatic insertion of spaces in front of special characters in + the cases where the character is a colon in either a meta tag, or as part of the synopsis + keyword. This feature is used for certain languages like French and Spanish. Issue #1090. + PR #1099. + +---- + ## Version 1.6.2 [2022-03-20] ### Release Notes diff --git a/novelwriter/__init__.py b/novelwriter/__init__.py index 0afbf118..4428de01 100644 --- a/novelwriter/__init__.py +++ b/novelwriter/__init__.py @@ -60,9 +60,9 @@ __license__ = "GPLv3" __author__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" -__version__ = "1.6.2" -__hexversion__ = "0x010602f0" -__date__ = "2022-03-20" +__version__ = "1.6.3" +__hexversion__ = "0x010603f0" +__date__ = "2022-08-18" __status__ = "Stable" __domain__ = "novelwriter.io" __url__ = "https://novelwriter.io" diff --git a/novelwriter/assets/text/release_notes.htm b/novelwriter/assets/text/release_notes.htm index 0850e30c..a66c4368 100644 --- a/novelwriter/assets/text/release_notes.htm +++ b/novelwriter/assets/text/release_notes.htm @@ -53,5 +53,16 @@ empty documents would trigger a rebuild of the index each time the project was o been fixed. Another fix resolves an error message being written to the console logging output when a new document was created. Both errors were harmless.

+

Patch 1.6.3 – 18 August 2022

+ +

This is a bugfix release that fixes a rare problem causing novelWriter to crash if the spell +checker language setting was configured to an empty value.

+

A few other minor issues have also been fixed: The project language setting is now properly +exported to ODT documents. Spaces are no longer inserted automatically in front of colons in +certain meta data settings when the feature is enabled (it is primarily used for French). Lastly, +the slider splitting the editor and viewer panels can no longer be dragged until the viewer +disappears. It was not necessarily obvious how the viewer panel could be restored in such cases. +

+