Merge pull request #46 from vkbo/release_0.2.1

Release 0.2.1
This commit is contained in:
Veronica K. Berglyd Olsen
2019-09-14 13:24:58 +02:00
committed by GitHub
3 changed files with 22 additions and 3 deletions
+19
View File
@@ -1,5 +1,24 @@
# novelWriter ChangeLog
## Version 0.2.1 [2019-09-14]
**Bug Fixes**
* The _Tomorrow_ theme had the wrong set of colours. PR #39
**Documentation**
* Added the backup feature to the documentation. PR #40
**User Interface**
* The auto-replace list in project settings is now sorted alphabetically. PR #43
* Added version checking of the Qt5 and PyQt5 dependencies. Non-essential functionality that depends on very recent versions of Qt5 are now switched off if version is too low. Currently only affects the custom tab stop length, which requires version 5.10. this resolves issue #44. PR #45
**Code Improvements**
* Minor changes to the About novelWriter dialog and to how backup filenames are generated. PR #41
## Version 0.2.0 [2019-06-27]
**Documentation**
+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.0"
__date__ = "2019-06-27"
__version__ = "0.2.1"
__date__ = "2019-09-14"
__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.0",
version="0.2.1",
py_modules=["nw"],
)