diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d8b991a..bd5028a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # novelWriter ChangeLog +## Version 1.0 Release Candidate 2 [2020-11-29] + +**Bugfixes** + +* The headers and footers of the document editor and viewer would be clipped on high DPI monitors. This was due to the QWidget holding these did not automatically scale in the layout. The proper height of these are now calculated and enforced instead of relying on automated scaling. Issue #499, PR #502. +* Fixed a few inconsistencies in scaling of toggle switches, the form layouts, and the margins of the Item Editor when viewing on a high DPI screen. PR #502. + +**User Interface** + +* Added all the possible keywords for tags and references to the Insert menu. Since the list was growing long, the Insert menu entries have been split up into four sub menus according to the previous grouping. Issue #501, PR #503. + + ## Version 1.0 Release Candidate 1 [2020-11-16] **Installation** diff --git a/docs/source/conf.py b/docs/source/conf.py index c0f62bfc..25b17b8a 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.0" # The full version, including alpha/beta/rc tags -release = "1.0-rc1" +release = "1.0-rc2" # -- General configuration --------------------------------------------------- diff --git a/nw/__init__.py b/nw/__init__.py index 670351b9..f3681594 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -58,15 +58,16 @@ from nw.config import Config # __package__ = "nw" -__author__ = "Veronica Berglyd Olsen" -__copyright__ = "Copyright 2018–2020, Veronica Berglyd Olsen" __license__ = "GPLv3" -__version__ = "1.0rc1" -__hexversion__ = "0x010000c1" -__date__ = "2020-11-16" +__author__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen" +__copyright__ = "Copyright 2018–2020, Veronica Berglyd Olsen" __email__ = "code@vkbo.net" +__version__ = "1.0rc2" +__hexversion__ = "0x010000c2" +__date__ = "2020-11-29" __status__ = "Beta" +__isstable__ = False __url__ = "https://novelwriter.io" __sourceurl__ = "https://github.com/vkbo/novelWriter" __issuesurl__ = "https://github.com/vkbo/novelWriter/issues"