From 4d603aecf302fc0be6074dfb88dce3c1128a98b2 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 6 Sep 2020 14:48:07 +0200 Subject: [PATCH 1/5] Version bump for 1.0 beta 2 --- docs/source/conf.py | 2 +- nw/__init__.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 9aa5ae29..5576e6fb 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,7 +28,7 @@ author = "Veronica Berglyd Olsen" # The short X.Y version version = "1.0" # The full version, including alpha/beta/rc tags -release = "1.0-beta1" +release = "1.0-beta2" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index 23ed8da0..55481bea 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__ = "1.0b1" -__hexversion__ = "0x010000b1" -__date__ = "2020-08-30" +__version__ = "1.0b2" +__hexversion__ = "0x010000b2" +__date__ = "2020-09-13" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" __status__ = "Beta" From f32ec659bf0e28dd8e9d61e900cbfb0f65ea334c Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 6 Sep 2020 14:58:47 +0200 Subject: [PATCH 2/5] Updated changelog with changes so far for beta 2 --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30d3dc5f..ff1009a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # novelWriter ChangeLog +## Version 1.0 Beta 2 [2020-09-13] + +**Bugfixes** + +* If the horizontal scroll bar appeared at the bottom of the document editor or viewer, for instance if a long, un-wrapable line was entered, the scroll bar would sit on top of the document footer. The footer bar now properly moves out of the way when the horizontal scroll bar appears. Issue #433, PR #434. + +**New Features** + +* It is now possible to set a different spell check language for a project than the one set in the main Preferences. It is only possible to select a different language, not a different spell check tool. The setting is managed in the first tab of the Project Settings dialog. Issue #368, PR #437. +* The document editor now has the Cut/Copy/Paste options in the main context menu. In addition, Select All, Select Word, and Select Paragraph has been added to the menu. The latter two will select the word or paragraph under the mouse pointer, not the cursor as the main menu entries do. Issue #438, PR #439. +* The document viewer has a new custom context menu with Copy, Select All, Select Word and Select Paragraph with identical functionality and look to the context menu entries in the document editor. PR #439. + +**Feature Improvements** + +* The document split tool now asks for permission before generating the documents. This adds a final confirmation before generating a lot of new documents that it can be tedious to clean up if the action was activated by mistake. PR #436. +* Both split and merge tools now preserve the document status or importance value from the source item. Previously, it would be reset to the default value. PR #436. + + ## Version 1.0 Beta 1 [2020-08-30] **Bugfixes** From 1ff0e831aa5eee8ed812dbdfe38d9f5ed125e206 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Tue, 8 Sep 2020 23:25:07 +0200 Subject: [PATCH 3/5] Updated changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff1009a1..ecad190f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ * It is now possible to set a different spell check language for a project than the one set in the main Preferences. It is only possible to select a different language, not a different spell check tool. The setting is managed in the first tab of the Project Settings dialog. Issue #368, PR #437. * The document editor now has the Cut/Copy/Paste options in the main context menu. In addition, Select All, Select Word, and Select Paragraph has been added to the menu. The latter two will select the word or paragraph under the mouse pointer, not the cursor as the main menu entries do. Issue #438, PR #439. * The document viewer has a new custom context menu with Copy, Select All, Select Word and Select Paragraph with identical functionality and look to the context menu entries in the document editor. PR #439. +* The document view panel now has a back navigation and forward navigation history of 20 documents. The navigation is activated by two buttons in the header, menu entries and keyboard shortcuts in the `View` menu, and by navigation buttons on the mouse. Issue #441, PR #442. +* Clicking on a document in the project tree with the middle mouse button will now open the document in the document viewer. PR #443. **Feature Improvements** From 6e50d4cc0acec46f5001f94d0bcc53593fd8f20a Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Thu, 10 Sep 2020 21:41:28 +0200 Subject: [PATCH 4/5] Updated codecov settings file --- .codecov.yml => codecov.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) rename .codecov.yml => codecov.yml (77%) diff --git a/.codecov.yml b/codecov.yml similarity index 77% rename from .codecov.yml rename to codecov.yml index 45ebc6c7..805f5187 100644 --- a/.codecov.yml +++ b/codecov.yml @@ -3,14 +3,16 @@ codecov: coverage: precision: 2 - round: up + round: down range: "70...100" status: project: default: threshold: 1% - patch: no + patch: + default: + threshold: 1% changes: no parsers: @@ -21,4 +23,4 @@ parsers: method: no macro: no -comment: false +# comment: false From 33e77fd84005cbd39eb430a18cf9e4bc79a0726c Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Fri, 11 Sep 2020 12:32:17 +0200 Subject: [PATCH 5/5] Updated changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecad190f..404f7cdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,12 +13,18 @@ * The document viewer has a new custom context menu with Copy, Select All, Select Word and Select Paragraph with identical functionality and look to the context menu entries in the document editor. PR #439. * The document view panel now has a back navigation and forward navigation history of 20 documents. The navigation is activated by two buttons in the header, menu entries and keyboard shortcuts in the `View` menu, and by navigation buttons on the mouse. Issue #441, PR #442. * Clicking on a document in the project tree with the middle mouse button will now open the document in the document viewer. PR #443. +* Added an edit and a search button to the top left corner of the document editor, in the header. The edit button opens the edit item dialog for the open document, and the search button toggles the search box for the document. PR #445. +* Added show/hide comment and synopsis buttons to the bottom right corner of the document viewer, in the footer. These toggle on and off the rendering of these elements in the viewed document. The corresponding settings in Preferences have been removed. PR #445. **Feature Improvements** * The document split tool now asks for permission before generating the documents. This adds a final confirmation before generating a lot of new documents that it can be tedious to clean up if the action was activated by mistake. PR #436. * Both split and merge tools now preserve the document status or importance value from the source item. Previously, it would be reset to the default value. PR #436. +**Test Suite** + +* Improved test coverage. PR #446. + ## Version 1.0 Beta 1 [2020-08-30]