Bumped version and updated changelog

This commit is contained in:
Veronica K. B. Olsen
2019-11-10 15:05:54 +01:00
parent 32ac757edc
commit d8b159ff93
4 changed files with 31 additions and 5 deletions
+26
View File
@@ -1,5 +1,31 @@
# novelWriter ChangeLog
## Version 0.4.1 [2019-11-10]
**Features**
* If no external spell check package is available, novelWriter can now fall back to use a simple spell checker based on word similarity comparison provided by the Python standard package distlib. That means spell checking is always available, although the distlib-based spell checker is both slow and lacks many features of other packages. It comes with a general English dictionary, and a GB and US dictionary. These are just lists of correct words provided by aspell. PR #130.
* Language information (spell checker) is now shown on the status bar. In addition, the timer has been converted to monospace font and receive3d an icon. PR #136.
* The new icons exist in both dark and neutral mode, and the mode can be set in the preferences. This makes it easier to see the icons on a dark system theme. PR #135.
* Distraction free mode, key shortcut `F8`, and full screen mode, shortcut `F11`, are now available in the menu. PR #137.
**User Interface**
* Most text boxes now has a character limit. Before, the only limit was the limit set by Qt itself of ~32k characters. PR #126.
* Key combination `Ctrl+G` is now an alternative to `F3`, forward search, and vice versa for backwards search. This makes more sense on macOS. PR #126, issue #124.
* Replace is now `Cmd+=` on macOS, and remains `Ctrl+H` on Linux and Windows. PR #126, issue #124.
* The sample project in the source code has been improved to better show the features of novelWriter as they currently are. The old text was a bit out of date. The new text also explains the features it demonstrates. PR #132.
**Bug Fixes**
* Fixed a bug where a long file label would expand the tree pane due to the details panel expanding. PR #122, issue #120.
**Code Improvements**
* The code has been reorganised, import headers been cleaned up, and made more or less PEP8 compliant. PRs #118, #119, and #138.
* The dependency on the pycountry package has been dropped. The feature based on it now uses an internal list of country codes. PR #129.
* The themes have been improved and the loading of icons now supports a number of fall back steps. PR #135.
## Version 0.4 [2019-11-03]
**Features**
+2 -2
View File
@@ -24,9 +24,9 @@ copyright = "2018-2019, Veronica Berglyd Olsen"
author = "Veronica Berglyd Olsen"
# The short X.Y version
version = "0.4.0"
version = "0.4.1"
# The full version, including alpha/beta/rc tags
release = "0.4.0"
release = "0.4.1"
# -- General configuration ---------------------------------------------------
+2 -2
View File
@@ -25,8 +25,8 @@ __package__ = "novelWriter"
__author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182019, Veronica Berglyd Olsen"
__license__ = "GPLv3"
__version__ = "0.4.0"
__date__ = "2019-11-03"
__version__ = "0.4.1"
__date__ = "2019-11-10"
__maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net"
__status__ = "Development"
+1 -1
View File
@@ -6,7 +6,7 @@ with open("README.md", "r") as inFile:
setuptools.setup(
name = "novelWriter",
version = "0.4.0",
version = "0.4.1",
author = "Veronica Berglyd Olsen",
author_email = "code@vkbo.net",
description = "A markdown-like document editor for writing novels",