From 7addce2cb94f47a796da5ce2b185d4a777eaa8be Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" Date: Thu, 27 Jun 2019 21:32:22 +0200 Subject: [PATCH] Bumped version and update changelog --- CHANGELOG.md | 23 +++++++++++++++++++++++ nw/__init__.py | 4 ++-- setup.py | 2 +- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59c2c4a2..15ca0cee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # novelWriter ChangeLog +## Version 0.2.0 [2019-06-27] + +**Documentation** + +* Added documentation in English. The help file opens in the document view pane when the user presses `F1` or selects it from the Help menu. #27 + +**Themes** + +* Complete rewrite of how syntax highlighting and GUI themes are handled. These are now set separately, and the dark theme uses QPalette to handle the dark colours, which makes the dark theme a lot more portable between operating systems. #34 and #35 +* Added the five Tomorrow colour themes to list of syntax highlighter themes. #34 and #35 + +**User Interface** + +* Added a preferences dialog for the program settings. No longer necessary to edit the config file. #30 +* The document viewer remembers scroll bar position when pressing `Ctrl+R` on a document already being viewed. #28 +* Removed version number from windows title. #28 +* The auto-replace items in Project Settings are now editable. #29 +* Changed how document margins are handled. This implementation works better and drops the difference between horizontal and vertical margins in favour of using the QDocument margin setting. #33 + +**Code Improvements** + +* Spell checking is now handled by a standard class that can be subclassed to support different spell check tools. This was done because pyenchant is no longer maintained and having a standard wrapper makes it easier to support other tools. #31 + ## Version 0.1.5 [2019-06-08] **Bug Fixes** diff --git a/nw/__init__.py b/nw/__init__.py index 1c43ad9a..6c0bcb41 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -22,8 +22,8 @@ __package__ = "novelWriter" __author__ = "Veronica Berglyd Olsen" __copyright__ = "Copyright 2018–2019, Veronica Berglyd Olsen" __license__ = "GPLv3" -__version__ = "0.1.5" -__date__ = "2019.06.08" +__version__ = "0.2.0" +__date__ = "2019.06.27" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Development" diff --git a/setup.py b/setup.py index 0758848f..03b276f6 100755 --- a/setup.py +++ b/setup.py @@ -2,6 +2,6 @@ from distutils.core import setup setup( name="novelwriter", - version="0.1.5", + version="0.2.0", py_modules=["nw"], )