diff --git a/CHANGELOG.md b/CHANGELOG.md index 236d217a..98e21175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # novelWriter ChangeLog +## Version 0.4.3 [2019-11-24] + +**User Interface** + +* Added keyboard shortcuts and menu entries for formatting headers, comments, and removing block formats. PR #155. +* Disable re-highlighting of open file when resizing window. This is potentially a slow process if the spell checker is on and the file is large. There is no need to do this just for reflowing text, so it is now disabled on resize events. PR #153 fixing issue #150. +* Improved the speed of the syntax highlighter by about 40% by not using regular expressions for highlighting block formats and by skipping empty lines entirely. PR #154. + +**Bug Fixes** + +* Fixed an issue when closing the import file dialog without selecting a file, the import would procede, but fail on file not found. The import is now cancelled when there is no file selected. PR #149. +* Fixed an issue with markdown export did not take into account hard line breaks. PR #152 fixing issue #151. +* Fixed a crash when running file status check when the project contains orphaned files. PR #152. + ## Version 0.4.2 [2019-11-17] **User Interface** diff --git a/docs/source/conf.py b/docs/source/conf.py index 8cdb4fad..62a72b99 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,9 +24,9 @@ copyright = "2018-2019, Veronica Berglyd Olsen" author = "Veronica Berglyd Olsen" # The short X.Y version -version = "0.4.2" +version = "0.4.3" # The full version, including alpha/beta/rc tags -release = "0.4.2" +release = "0.4.3" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index 7f1e2e6d..245b9043 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -25,8 +25,8 @@ __package__ = "novelWriter" __author__ = "Veronica Berglyd Olsen" __copyright__ = "Copyright 2018–2019, Veronica Berglyd Olsen" __license__ = "GPLv3" -__version__ = "0.4.2" -__date__ = "2019-11-17" +__version__ = "0.4.3" +__date__ = "2019-11-24" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Development" diff --git a/setup.py b/setup.py index 38e3f3c8..75f2fbd7 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open("README.md", "r") as inFile: setuptools.setup( name = "novelWriter", - version = "0.4.2", + version = "0.4.3", author = "Veronica Berglyd Olsen", author_email = "code@vkbo.net", description = "A markdown-like document editor for writing novels",