Release 0.7.1

This commit is contained in:
Veronica K. B. Olsen
2020-06-04 20:20:50 +02:00
parent e775103c81
commit d23a9d941a
4 changed files with 24 additions and 6 deletions
+18
View File
@@ -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**
+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-07"
__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",