Release 0.2.2

This commit is contained in:
Veronica K. B. Olsen
2019-09-29 19:07:05 +02:00
parent 5d93b4367e
commit abfa164e31
3 changed files with 13 additions and 3 deletions
+10
View File
@@ -1,5 +1,15 @@
# novelWriter ChangeLog
## Version 0.2.2 [2019-09-29]
**Bug Fixes**
* Fixed a bug where loading a config file with the dictionary language set to "none", or presumably an missing dictionary, would trigger a fatal error. PR #47
**User Interface**
* Added a basic search function for the currently open document. This is a simple interface to the find command that exists in the Qt document editor. It will be extended further in the future. PR #49
## Version 0.2.1 [2019-09-14]
**Bug Fixes**
+2 -2
View File
@@ -22,8 +22,8 @@ __package__ = "novelWriter"
__author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182019, Veronica Berglyd Olsen"
__license__ = "GPLv3"
__version__ = "0.2.1"
__date__ = "2019-09-14"
__version__ = "0.2.2"
__date__ = "2019-09-29"
__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.2.1",
version="0.2.2",
py_modules=["nw"],
)