+3
-2
@@ -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
@@ -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 ---------------------------------------------------
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -34,8 +34,6 @@ The following Python packages are required to run novelWriter:
|
||||
The following are optional, but recommended:
|
||||
|
||||
* ``pyenchant`` for spell checking
|
||||
* ``latexcodec`` for escaping unicode characters in LaTeX export
|
||||
* ``pypandoc`` for additional exports to Word, Open Office, eBooks, etc.
|
||||
|
||||
|
||||
Running novelWriter
|
||||
|
||||
+3
-3
@@ -40,9 +40,9 @@ __package__ = "novelWriter"
|
||||
__author__ = "Veronica Berglyd Olsen"
|
||||
__copyright__ = "Copyright 2018–2020, 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
-1
@@ -241,7 +241,7 @@ class ToHtml(Tokenizer):
|
||||
|
||||
return
|
||||
|
||||
def getStylesheet(self):
|
||||
def getStyleSheet(self):
|
||||
"""Generate a stylesheet appropriate for the current settings.
|
||||
"""
|
||||
theStyles = []
|
||||
|
||||
+1
-1
@@ -354,7 +354,7 @@ class GuiBuildNovel(QDialog):
|
||||
|
||||
tEnd = time()
|
||||
logger.debug("Built project in %.3f ms" % (1000*(tEnd-tStart)))
|
||||
self.htmlStyle = makeHtml.getStylesheet()
|
||||
self.htmlStyle = makeHtml.getStyleSheet()
|
||||
|
||||
# Load the preview document with the html data
|
||||
self.docView.setStyleSheet(self.htmlStyle)
|
||||
|
||||
@@ -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",
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user