Skip to content

Commit 6890b27

Browse files
authored
Release 1.4 RC 1 (#824)
* Bump version to 1.4 RC 1 * Update changelog and release notes
1 parent 9f667a0 commit 6890b27

File tree

4 files changed

+40
-8
lines changed

4 files changed

+40
-8
lines changed

CHANGELOG.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# novelWriter Changelog
22

3-
## Version 1.4 Beta 1 [2021-06-13]
3+
## Version 1.4 RC 1 [2021-07-12]
44

55
### Release Notes
66

@@ -10,6 +10,10 @@ this version to work on your projects.
1010

1111
Below are the main feature changes of this release.
1212

13+
#### Internationalisation
14+
15+
Translation files have been added for Simplified Chinese by Qianzhi Long.
16+
1317
#### Line Breaks
1418

1519
The way line breaks inside paragraphs work has been changed. A single line break is now treated as
@@ -54,6 +58,32 @@ results in the paragraph being centred.
5458
Format menu entries and keyboard shortcuts have been added so that you don't have to memorise these
5559
codes.
5660

61+
_These Release Notes also include the changes from 1.4 Beta 1._
62+
63+
### Detailed Changelog
64+
65+
**Internationalisation**
66+
67+
* Translation files have been added for Simplified Chinese. The translation has been provided by
68+
Qianzhi Long (@longqzh). PR #817.
69+
70+
**Code Improvements**
71+
72+
* Improve PEP8 compliance for the source code. PRs #816 and #820.
73+
* The way messages are written to the logging tool has been improved. PR #818.
74+
* Some improvements to parsing and encoding of HTML has been added. PR #821.
75+
* Test coverage of the document editor has been improved. PR #787.
76+
77+
----
78+
79+
## Version 1.4 Beta 1 [2021-06-13]
80+
81+
### Release Notes
82+
83+
This is a preview release of novelWriter 1.4. It contains some new features and a lot of code
84+
refactoring. This release is a testing release, and may contain bugs. Please be careful when using
85+
this version to work on your projects.
86+
5787
### Detailed Changelog
5888

5989
**Bugfixes**

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = "1.4"
2828
# The full version, including alpha/beta/rc tags
29-
release = "1.4-beta1"
29+
release = "1.4-rc1"
3030

3131

3232
# -- General configuration ---------------------------------------------------

nw/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
__author__ = "Veronica Berglyd Olsen"
6262
__maintainer__ = "Veronica Berglyd Olsen"
6363
__email__ = "[email protected]"
64-
__version__ = "1.4b1"
65-
__hexversion__ = "0x010400b1"
66-
__date__ = "2021-06-13"
64+
__version__ = "1.4rc1"
65+
__hexversion__ = "0x010400c1"
66+
__date__ = "2021-07-12"
6767
__status__ = "Stable"
6868
__domain__ = "novelwriter.io"
6969
__url__ = "https://novelwriter.io"

nw/assets/text/release_notes.htm

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@
22
<html>
33
<body>
44

5-
<h2>Release Notes for 1.4 Beta 1</h2>
6-
<p><i>Released on 13 June 2021</i></p>
5+
<h2>Release Notes for 1.4 RC 1</h2>
6+
<p><i>Released on 12 July 2021</i></p>
77

88
<p>This is a preview release of novelWriter 1.4. It contains some new features and a lot of code
99
refactoring. This release is a testing release, and may contain bugs. Please be careful when using
1010
this version to work on your projects.</p>
1111
<p>Below are the main feature changes of this release.</p>
1212

13-
<h3>Line Breaks</h3>
13+
<h3>Internationalisation</h3>
14+
<p>Translation files have been added for Simplified Chinese by Qianzhi Long.</p>
1415

16+
<h3>Line Breaks</h3>
1517
<p>The way line breaks inside paragraphs work has been changed. A single line break is now treated
1618
as a proper line break and will show up in the document viewer and exported documents. A single
1719
line break does not start a new paragraph, but forces a break inside the paragraph like a Shift +

0 commit comments

Comments
 (0)