Updated version and changelog

This commit is contained in:
Veronica K. B. Olsen
2019-10-20 16:45:06 +02:00
parent 86911ace70
commit 2ac8f371ec
3 changed files with 15 additions and 3 deletions
+12
View File
@@ -1,5 +1,17 @@
# novelWriter ChangeLog
## Version 0.3.1 [2019-10-20]
**Bug Fixes**
* The backup request dialog should pop up on any change to the project during the last session, not just on unsaved changes. PR #58
* The regex that searches for words for the spell check highlighter was not including unicode characters, so it would underline parts of words using unicode characters even if the word was spelled correctly. PR #58
* When having unsaved changes in an open document, while changing editor configuration options, the document would be reloaded from disk when the changes were applied. This means the unsaved changes were lost. The document is now saved before the editor is re-initialised. PR #58
**User Interface**
* Added a GUI to display the session log. The log has been around for a while, and records when a project is opened, when it's closed and how many words were added or removed during the session. This information is no available in a small dialog under `Project > Session Log` in the main menu. PR #59
## Version 0.3 [2019-10-19]
**User Interface**
+2 -2
View File
@@ -22,8 +22,8 @@ __package__ = "novelWriter"
__author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182019, Veronica Berglyd Olsen"
__license__ = "GPLv3"
__version__ = "0.3"
__date__ = "2019-10-19"
__version__ = "0.3.1"
__date__ = "2019-10-20"
__maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net"
__status__ = "Development"
+1 -1
View File
@@ -2,6 +2,6 @@
from distutils.core import setup
setup(
name="novelwriter",
version="0.3",
version="0.3.1",
py_modules=["nw"],
)