Bump version and updated changelog for 1.0 RC2 release

This commit is contained in:
Veronica K. B. Olsen
2020-11-21 15:35:26 +01:00
parent 5715247de9
commit 73eb2e474d
3 changed files with 19 additions and 6 deletions
+12
View File
@@ -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**
+1 -1
View File
@@ -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 ---------------------------------------------------
+6 -5
View File
@@ -58,15 +58,16 @@ from nw.config import Config
#
__package__ = "nw"
__author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182020, Veronica Berglyd Olsen"
__license__ = "GPLv3"
__version__ = "1.0rc1"
__hexversion__ = "0x010000c1"
__date__ = "2020-11-16"
__author__ = "Veronica Berglyd Olsen"
__maintainer__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182020, 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"