Skip to content

Commit

Permalink
Merge pull request #38 from vkbo/release_0.2.0
Browse files Browse the repository at this point in the history
Release 0.2.0
  • Loading branch information
vkbo authored Jun 27, 2019
2 parents bda4499 + 7addce2 commit 0b741f6
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down
4 changes: 2 additions & 2 deletions nw/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
__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__ = "[email protected]"
__status__ = "Development"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
from distutils.core import setup
setup(
name="novelwriter",
version="0.1.5",
version="0.2.0",
py_modules=["nw"],
)

0 comments on commit 0b741f6

Please sign in to comment.