Merge pull request #54 from vkbo/release_0.2.3

Release 0.2.3
This commit is contained in:
Veronica K. Berglyd Olsen
2019-10-06 21:20:04 +02:00
committed by GitHub
3 changed files with 10 additions and 3 deletions
+7
View File
@@ -1,5 +1,12 @@
# novelWriter ChangeLog
## Version 0.2.3 [2019-10-06]
**User Interface**
* The search feature now also allows for replacing text, so the basic search/replace tools in now complete. PRs #51 and #52
* All icons have been removed from the menu, and the dark theme has received a new set of basic icons. They are not very fancy, so will perhaps be replaced by a proper icon set later. PR #53
## Version 0.2.2 [2019-09-29]
**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.2"
__date__ = "2019-09-29"
__version__ = "0.2.3"
__date__ = "2019-10-06"
__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.2",
version="0.2.3",
py_modules=["nw"],
)