diff --git a/CHANGELOG.md b/CHANGELOG.md index dacddfba..ad850830 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/docs/source/conf.py b/docs/source/conf.py index 0ab76427..800e047d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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 --------------------------------------------------- diff --git a/docs/source/started.txt b/docs/source/started.txt index dc151d93..5c279e14 100644 --- a/docs/source/started.txt +++ b/docs/source/started.txt @@ -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 diff --git a/nw/__init__.py b/nw/__init__.py index d64437fe..7e328d00 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -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" diff --git a/nw/core/tohtml.py b/nw/core/tohtml.py index ba099335..53503ba5 100644 --- a/nw/core/tohtml.py +++ b/nw/core/tohtml.py @@ -241,7 +241,7 @@ class ToHtml(Tokenizer): return - def getStylesheet(self): + def getStyleSheet(self): """Generate a stylesheet appropriate for the current settings. """ theStyles = [] diff --git a/nw/gui/build.py b/nw/gui/build.py index d5da32f9..b31ec8c9 100644 --- a/nw/gui/build.py +++ b/nw/gui/build.py @@ -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) diff --git a/setup.py b/setup.py index a84ce257..f9736fee 100755 --- a/setup.py +++ b/setup.py @@ -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", ], )