From 1215995531438146519692c3b30c92a3f8d30e17 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 9 Aug 2020 15:42:58 +0200 Subject: [PATCH 1/2] Bumped version to 0.11.1 --- docs/source/conf.py | 4 ++-- nw/__init__.py | 6 +++--- sample/nwProject.nwx | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 1e5bd90a..a57814b7 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.11.0" +version = "0.11.1" # The full version, including alpha/beta/rc tags -release = "0.11.0" +release = "0.11.1" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index ccc49e66..c3fbf7c0 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -41,9 +41,9 @@ __package__ = "nw" __author__ = "Veronica Berglyd Olsen" __copyright__ = "Copyright 2018–2020, Veronica Berglyd Olsen" __license__ = "GPLv3" -__version__ = "0.11.0" -__hexversion__ = "0x001100f0" -__date__ = "2020-08-08" +__version__ = "0.11.1" +__hexversion__ = "0x001101f0" +__date__ = "2020-08-09" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Beta" diff --git a/sample/nwProject.nwx b/sample/nwProject.nwx index 6877047e..5be0eab5 100644 --- a/sample/nwProject.nwx +++ b/sample/nwProject.nwx @@ -1,13 +1,13 @@ - + Sample Project Sample Project Jane Smith Jay Doh - 663 + 675 122 - 32747 + 32866 False @@ -119,7 +119,7 @@ 1811 318 8 - 1143 + 42 Another Scene From fff03b8986952a07a109191d39299d9a90739fbd Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 9 Aug 2020 15:56:19 +0200 Subject: [PATCH 2/2] Updated changelog --- CHANGELOG.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 115d4f00..563384ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # novelWriter ChangeLog +## Version 0.11.1 [2020-08-09] + +**Bugfixes** + +* The modality of the dialogs have been made more consistent and a few issues with conflicting settings resolved. Mostly the latter relates to some dialogs both having the `exec_()` call and the `show()` call. The former implies modal, the latter does not, and the latter usually took precedence. All dialogs are now modal with the exception of the Writing Statistics and Build Novel Project tools. PR #389. + +**User Interface** + +* The Help menu entries for the documentation have been improved a bit. If the local copy of the documentations is present (both files are checked now), and the Qt Assistant is installed, the "Documentation (Local)" entry is visible with `F1` as keyboard shortcut. The "Documentation (Online)" is always visible with `Shift+F1` keyboard shortcut. The `F1` key redirects to this too if the local copy isn't available. PR #386. +* The Writing Statistics tool now has the ability to set a cap between 100 and 100 000 words on the word count histogram bars. This is useful if the user has added a large chunk of text, in which case the histogram bar is dominated by this one entry. Now, anything on and above the cap value will have a full bar, and all other entries scale from 0 to the cap value. PR #387. + +**Documentation** + +* The main index page of the documentation now has a build date on it. PR #390. + +**Other Changes** + +* The Travis CI build system has been altered to first check that the tests pass for Python 3.8, for then to move to the other supported Python versions. These are currently 3.6 and 3.7. Python 3.9 will be added when it is released in October. PR #388. +* Some clean-up of the source code, mostly in terms of unused imports and missing docstrings. PR #391. + + ## Version 0.11 [2020-08-08] Note: The source code has now switched to a default branch named `main` ahead of the changes planned by GitHub.