From 949439361e4f53e4834f35bbf69fd7c413c22c1c Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 23 Jan 2021 16:27:17 +0100 Subject: [PATCH] Bump version to 1.1 RC1 and update changelog --- CHANGELOG.md | 19 +++++++++++++++++-- docs/source/conf.py | 2 +- nw/__init__.py | 6 +++--- 3 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6050339e..ce70905b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # novelWriter Change Log -## Version 1.1 Dev (Alpha) +## Version 1.1 RC1 [2021-01-31] ### Release Notes @@ -11,7 +11,22 @@ * Added a Novel tab under the project tree where the user can navigate the novel's layout of chapters and scenes, similar to the Outline view, but next to the document editor. The Outline view and Novel/Project trees now also behave more in cooperation. When files on one are selected - or moved, the other will follow and update. PR #537. + or moved, the other will follow and update. Issues #541 and #185, PR #538. +* Added a Project Details dialog that lists project details (moved from Project Settings' Details + Tab) and a Table of Contents tab where details on chapter level is displayed. This table also + shows an estimated page count and estimated page location of each chapter. Issue #528, PR #555. +* Added three buttins below the project tree view that connects to Project Details, Writing + Statistics, and Project Settings. PR #555. +* Added support for multi-paragraph quote (dialogue) highlighting. This feature is optional, and + can be enabled/disabled in Preferences. Issue #546, PR #577. +* The settings and tabs in the Preferences dialog have been re-arranged into more tabs with less + options on each tab. PR #577. +* Minor changes to margins and alignments of widgets on the main GUI. PR #565. + +**Code Maintenance** + +* Reformatting of source file headers and adding license headers to all test source files. Test + source files are now also organised into subfolders. PR #563. ---- diff --git a/docs/source/conf.py b/docs/source/conf.py index ae98916c..5ea00293 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ author = "Veronica Berglyd Olsen" # The short X.Y version version = "1.1" # The full version, including alpha/beta/rc tags -release = "1.1-alpha0" +release = "1.1-rc1" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index dd8d2579..457085d1 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -63,9 +63,9 @@ __license__ = "GPLv3" __author__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" -__version__ = "1.1a0" -__hexversion__ = "0x010100a0" -__date__ = "2020-12-13" +__version__ = "1.1rc1" +__hexversion__ = "0x010100c1" +__date__ = "2021-01-31" __status__ = "Unstable" __domain__ = "novelwriter.io" __url__ = "https://novelwriter.io"