Updated version and changelog

This commit is contained in:
Veronica K. B. Olsen
2020-05-23 21:30:58 +02:00
parent a5e4f89d50
commit e2e4d7836c
5 changed files with 11 additions and 12 deletions
+3 -2
View File
@@ -1,6 +1,6 @@
# novelWriter ChangeLog
## Version 0.6 [2020-xx-xx]
## Version 0.6 [2020-05-24]
**Bugfixes**
@@ -8,11 +8,12 @@
**User Interface**
* The Export Tool has been removed and replaced by a new tool called "Build Novel Project". The new tool has the same filtering options as the Export Tool, but with more formatting options for titles. It also has a preview window to display the generated document. A Save As button provides exports to HTML, novelWriter Markdown. plain text, PDF and Open Document format. LaTeX export has not been ported over, and interfacing with Pandoc is no longer supported either. Although, as before, the HTML export can be converted with Pandoc to other formats outside of novelWriter. The new tool also supports printing. PR #204
* The Export Tool has been removed and replaced by a new tool called "Build Novel Project". The new tool has the same filtering options as the Export Tool, but with more formatting options for titles. It also has a preview window to display the generated document. A Save As button provides exports to HTML, novelWriter Markdown. plain text, PDF and Open Document format. LaTeX export has not been ported over, and interfacing with Pandoc is no longer supported either. Although, as before, the HTML export can be converted with Pandoc to other formats outside of novelWriter. The new tool also supports printing. PRs #204, #220 and #221
* The Project Settings, Preferences, Item Editor, Merge Documents, and Split Documents dialogs have been redesigned. The ones with tabs now have vertical tabs on the left with horizontal labels. The dialog design should be more compact, and have room for more tabs for future settings. PR #212
* A new icon, as well as a mimetype icon for the project files, have been designed and added to the app. PRs #213 and #214
* The About dialog has been completely redesigned to allow more information. PR #217
* The Open Project dialog has been cleaned up and made more readable. The project paths have been moved out of the list, and are now displayed when an item is selected instead. Icons have been added, and the New project dialog can also be triggered from this dialog. PR #218
* The document stats have been added to the details panel below the project tree. PR #219
## Version 0.5.2 [2020-05-21]
+2 -2
View File
@@ -24,9 +24,9 @@ copyright = "2018-2020, Veronica Berglyd Olsen"
author = "Veronica Berglyd Olsen"
# The short X.Y version
version = "0.5.2"
version = "0.6"
# The full version, including alpha/beta/rc tags
release = "0.5.2"
release = "0.6"
# -- General configuration ---------------------------------------------------
+2 -2
View File
@@ -6,8 +6,8 @@ You can download novelWriter from https://github.com/vkbo/novelWriter/releases
Latest version is |version|:
* ZIP file: https://github.com/vkbo/novelWriter/archive/v0.5.2.zip
* TAR file: https://github.com/vkbo/novelWriter/archive/v0.5.2.tar.gz
* ZIP file: https://github.com/vkbo/novelWriter/archive/v0.6.zip
* TAR file: https://github.com/vkbo/novelWriter/archive/v0.6.tar.gz
Extract the archive to a location of your choice.
+3 -3
View File
@@ -40,9 +40,9 @@ __package__ = "novelWriter"
__author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182020, Veronica Berglyd Olsen"
__license__ = "GPLv3"
__version__ = "0.5.2"
__hexversion__ = "0x000502f0"
__date__ = "2020-05-21"
__version__ = "0.6"
__hexversion__ = "0x000600f0"
__date__ = "2020-05-24"
__maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net"
__status__ = "Pre-Release"
+1 -3
View File
@@ -6,7 +6,7 @@ with open("README.md", "r") as inFile:
setuptools.setup(
name = "novelWriter",
version = "0.5.2",
version = "0.6",
author = "Veronica Berglyd Olsen",
author_email = "code@vkbo.net",
description = "A markdown-like document editor for writing novels",
@@ -40,7 +40,5 @@ setuptools.setup(
"pyqt5",
"lxml",
"pyenchant",
"latexcodec",
"pypandoc",
],
)