Skip to content

Commit 33146f0

Browse files
committed
Bump version to 1.4 final, and update changelog and release notes
1 parent 732450e commit 33146f0

File tree

4 files changed

+40
-19
lines changed

4 files changed

+40
-19
lines changed

CHANGELOG.md

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# novelWriter Changelog
22

3-
## Version 1.4 RC 1 [2021-07-12]
3+
## Version 1.4 [2021-07-27]
44

55
### Release Notes
66

7-
This is a preview release of novelWriter 1.4. It contains some new features and a lot of code
8-
refactoring. This release is a testing release, and may contain bugs. Please be careful when using
9-
this version to work on your projects.
10-
11-
Below are the main feature changes of this release.
7+
This release contains some new features and a lot of code refactoring. Among the main new features
8+
is paragraph alignment and indentation. Regular line breaks within paragraphs are now also
9+
supported. The changes are described in more detail below.
1210

1311
#### Internationalisation
1412

@@ -50,15 +48,39 @@ A single angle bracket will push the text away from the edge it points away from
5048
single `>` before the paragraph, or a single `<` after the paragraph, will add indentation on the
5149
respective side. It's perfectly valid to do this on both sides at the same time.
5250

53-
A double set of angle brackets will push the text all the way towards the opposite aide. Therefore,
51+
A double set of angle brackets will push the text all the way towards the opposite side. Therefore,
5452
a double set of `>>` before the paragraph will indicate right alignment, and a double set of `<<`
5553
after the paragraph will force left alignment. Also here both can be used at the same time, which
5654
results in the paragraph being centred.
5755

5856
Format menu entries and keyboard shortcuts have been added so that you don't have to memorise these
5957
codes.
6058

61-
_These Release Notes also include the changes from 1.4 Beta 1._
59+
_These Release Notes also include the changes from 1.4 Beta 1 and RC 1._
60+
61+
### Detailed Changelog
62+
63+
**Bugfixes**
64+
65+
* The way margins are determined in the paged dialogs used many places, including Preferences, has
66+
been improved. These margins would sometimes be set to zero when they shouldn't. PR #834.
67+
* Dialogs that are non-modal are no longer duplicated when opened multiple times. Instead, the
68+
existing dialog is moved to the front. PR #834.
69+
70+
**Internationalisation**
71+
72+
* US English and Norwegian translations have been updated by @vkbo. PR #825.
73+
* French translations have been updated by @jyhelle. PR #829.
74+
75+
----
76+
77+
## Version 1.4 RC 1 [2021-07-12]
78+
79+
### Release Notes
80+
81+
This is a preview release of novelWriter 1.4. It contains some new features and a lot of code
82+
refactoring. This release is a testing release, and may contain bugs. Please be careful when using
83+
this version to work on your projects.
6284

6385
### Detailed Changelog
6486

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-rc1"
29+
release = "1.4"
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.4rc1"
65-
__hexversion__ = "0x010400c1"
66-
__date__ = "2021-07-12"
64+
__version__ = "1.4"
65+
__hexversion__ = "0x010400f0"
66+
__date__ = "2021-07-27"
6767
__status__ = "Stable"
6868
__domain__ = "novelwriter.io"
6969
__url__ = "https://novelwriter.io"

nw/assets/text/release_notes.htm

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
<html>
33
<body>
44

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

8-
<p>This is a preview release of novelWriter 1.4. It contains some new features and a lot of code
9-
refactoring. This release is a testing release, and may contain bugs. Please be careful when using
10-
this version to work on your projects.</p>
11-
<p>Below are the main feature changes of this release.</p>
8+
<p>This release contains some new features and a lot of code refactoring. Among the main new
9+
features is paragraph alignment and indentation. Regular line breaks within paragraphs are now also
10+
supported. The changes are described in more detail below.</p>
1211

1312
<h3>Internationalisation</h3>
1413
<p>Translation files have been added for Simplified Chinese by Qianzhi Long.</p>
@@ -41,7 +40,7 @@ <h3>Text Alignment and Indentation</h3>
4140
<p>A single angle bracket will push the text away from the edge it points away from. Therefore, a
4241
single '&gt;' before the paragraph, or a single '&lt;' after the paragraph, will add indentation on
4342
the respective side. It's perfectly valid to do this on both sides at the same time.</p>
44-
<p>A double set of angle brackets will push the text all the way towards the opposite aide.
43+
<p>A double set of angle brackets will push the text all the way towards the opposite side.
4544
Therefore, a double set of '&gt;&gt;' before the paragraph will indicate right alignment, and a
4645
double set of '&lt;&lt;' after the paragraph will force left alignment. Also here both can be used
4746
at the same time, which results in the paragraph being centred.</p>

0 commit comments

Comments
 (0)