Merge pull request #147 from vkbo/release_0.4.2

Release 0.4.2
This commit is contained in:
Veronica K. Berglyd Olsen
2019-11-17 17:56:33 +01:00
committed by GitHub
4 changed files with 16 additions and 5 deletions
+11
View File
@@ -1,5 +1,16 @@
# novelWriter ChangeLog # novelWriter ChangeLog
## Version 0.4.2 [2019-11-17]
**User Interface**
* Distraction free mode now also hides the menu bar, but all keyboard shortcuts used for editing remain active. The rest are disabled. PR #142.
**Bug Fixes**
* Fixed various issues with spell checking highlighting. The highlighting and the editor didn't always agree on what words were spelled wrong. PR #141.
* The status bar now shows what spell checking language is actually loaded. Previously, it just showed the language selected in the settings. That was a bit misleading as the available dictionaries can change due to the change in installed dictionary on the system. PR #145.
## Version 0.4.1 [2019-11-10] ## Version 0.4.1 [2019-11-10]
**Features** **Features**
+2 -2
View File
@@ -24,9 +24,9 @@ copyright = "2018-2019, Veronica Berglyd Olsen"
author = "Veronica Berglyd Olsen" author = "Veronica Berglyd Olsen"
# The short X.Y version # The short X.Y version
version = "0.4.1" version = "0.4.2"
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = "0.4.1" release = "0.4.2"
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
+2 -2
View File
@@ -25,8 +25,8 @@ __package__ = "novelWriter"
__author__ = "Veronica Berglyd Olsen" __author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182019, Veronica Berglyd Olsen" __copyright__ = "Copyright 20182019, Veronica Berglyd Olsen"
__license__ = "GPLv3" __license__ = "GPLv3"
__version__ = "0.4.1" __version__ = "0.4.2"
__date__ = "2019-11-10" __date__ = "2019-11-17"
__maintainer__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net" __email__ = "code@vkbo.net"
__status__ = "Development" __status__ = "Development"
+1 -1
View File
@@ -6,7 +6,7 @@ with open("README.md", "r") as inFile:
setuptools.setup( setuptools.setup(
name = "novelWriter", name = "novelWriter",
version = "0.4.1", version = "0.4.2",
author = "Veronica Berglyd Olsen", author = "Veronica Berglyd Olsen",
author_email = "code@vkbo.net", author_email = "code@vkbo.net",
description = "A markdown-like document editor for writing novels", description = "A markdown-like document editor for writing novels",