From d23a9d941a54fc31f8c5b392901674bd309c80a5 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Thu, 4 Jun 2020 20:20:50 +0200 Subject: [PATCH] Release 0.7.1 --- CHANGELOG.md | 18 ++++++++++++++++++ docs/source/conf.py | 4 ++-- nw/__init__.py | 6 +++--- setup.py | 2 +- 4 files changed, 24 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b953215d..461cc464 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # novelWriter ChangeLog +## Version 0.7.1 [2020-06-07] + +**Bugfixes** + +* For some fonts (especially Ubuntu) the minimum column width in the tree widgets would be estimated to be too large. It especially meant that the "include when exporting" flag had a column much wider than it needed to be. This setting is now overridden with the known size of the icon, plus a 6 pixel margin. PR #278. + +**User Interface** + +* The Build Novel Project tool now has an option to not style the text before printing or exporting to file. PR #276. +* When clicking enter on an item in the project tree, the focus remains on the tree and no longer switches to the editor like it does when you double click. It makes it easier to flip through files and look at them by pressing enter repeatedly. PR #278. +* Added a title icon and document icon to the outline view. PR #278. +* Regrouped the options on the Build Novel Project tool a bit. They are now sorted into Titles, Format, Text and File categories, with more consistent labelling. PR #278. + +**Other Changes** + +* Reduced the number of files and folders in the source code a bit. PR #277. + + ## Version 0.7 [2020-06-01] **Bugfixes** diff --git a/docs/source/conf.py b/docs/source/conf.py index d54df48e..a2f53984 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.7.0" +version = "0.7.1" # The full version, including alpha/beta/rc tags -release = "0.7.0" +release = "0.7.1" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index e0696373..c06cd318 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.7.0" -__hexversion__ = "0x000700f0" -__date__ = "2020-06-01" +__version__ = "0.7.1" +__hexversion__ = "0x000701f0" +__date__ = "2020-06-07" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Pre-Release" diff --git a/setup.py b/setup.py index 46e916af..6c54a5f7 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open("README.md", "r") as inFile: setuptools.setup( name = "novelWriter", - version = "0.7", + version = "0.7.1", author = "Veronica Berglyd Olsen", author_email = "code@vkbo.net", description = "A markdown-like document editor for writing novels",