Merge pull request #283 from vkbo/release_0.7.1

Release 0.7.1
This commit is contained in:
Veronica K. Berglyd Olsen
2020-06-06 12:31:07 +02:00
committed by GitHub
4 changed files with 27 additions and 6 deletions
+21
View File
@@ -1,5 +1,26 @@
# novelWriter ChangeLog
## Version 0.7.1 [2020-06-06]
**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.
* Correctly fixes issue #273, which was actually due to an old css setting from early development. PR #287.
**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 opening an item in the project tree, the focus remains on the tree and no longer switches to the editor. It makes it easier to flip through files and look at them by pressing enter repeatedly. PRs #278 and #287.
* Added a title icon and document icon to the outline view. PR #278.
* The timeline class root folder now has a calendar icon instead of a clock. PR #287.
* 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.
* A link colour has been added to the Build Novel Project tool. It's the same colour as the header. PR #287.
**Other Changes**
* Reduced the number of files and folders in the source code a bit. PR #277.
## Version 0.7 [2020-06-01]
**Bugfixes**
+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.7.0"
version = "0.7.1"
# The full version, including alpha/beta/rc tags
release = "0.7.0"
release = "0.7.1"
# -- General configuration ---------------------------------------------------
+3 -3
View File
@@ -40,9 +40,9 @@ __package__ = "novelWriter"
__author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182020, Veronica Berglyd Olsen"
__license__ = "GPLv3"
__version__ = "0.7.0"
__hexversion__ = "0x000700f0"
__date__ = "2020-06-01"
__version__ = "0.7.1"
__hexversion__ = "0x000701f0"
__date__ = "2020-06-06"
__maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net"
__status__ = "Pre-Release"
+1 -1
View File
@@ -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",