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 1/3] 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", From b4cd0332c0c0340e8aa5f86c0c79ccd2614de3f8 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 6 Jun 2020 12:27:53 +0200 Subject: [PATCH 2/3] Updated changelog --- CHANGELOG.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 461cc464..12494617 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,20 @@ # novelWriter ChangeLog -## Version 0.7.1 [2020-06-07] +## 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 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. +* 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** From a5fabc77c9df5d0a102bdac1380327a1dccc7e79 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 6 Jun 2020 12:28:31 +0200 Subject: [PATCH 3/3] Moved up the release date to today --- nw/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nw/__init__.py b/nw/__init__.py index c06cd318..9549226a 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -42,7 +42,7 @@ __copyright__ = "Copyright 2018–2020, Veronica Berglyd Olsen" __license__ = "GPLv3" __version__ = "0.7.1" __hexversion__ = "0x000701f0" -__date__ = "2020-06-07" +__date__ = "2020-06-06" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Pre-Release"