Skip to content

Commit 3e77c71

Browse files
committed
Bump version and update changelog and release notes
1 parent e638262 commit 3e77c71

File tree

4 files changed

+40
-7
lines changed

4 files changed

+40
-7
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# novelWriter Changelog
22

3+
## Version 1.5.2 [2021-12-12]
4+
5+
### Release Notes
6+
7+
This is a bugfix release that fixes two issues. The first is an issue with an error in the HTML
8+
output if a paragraph has alignment or indentation tags while at the same time containing
9+
emphasised text. The second is an issue where the application cannot load a project with spell
10+
checking enabled if there is something wrong with the spell check package.
11+
12+
### Detailed Changelog
13+
14+
**Bugfixes**
15+
16+
* When the HTML converter replaced grater than or smaller than symbols with the corresponding HTML
17+
entities. the poisition of the formatting tags following in the text would be shifted, but the
18+
positions were not updated. This is now solved by updating these positions when such a symbol is
19+
encountered. This issue has been backported from 1.6 development. Issue #929.
20+
* If the pyenchant package is installed, but the underlying enchant library is broken in one way or
21+
another, the pyenchant package will error, causing novelWriter to crash. All calls to the
22+
pyenchant package has now been wrapped in try/except blocks to prevent this. Issue #933.
23+
24+
----
25+
326
## Version 1.5.1 [2021-10-23]
427

528
### Release Notes

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
author = "Veronica Berglyd Olsen"
2020

2121
# The short X.Y version
22-
version = "1.5.1"
22+
version = "1.5.2"
2323
# The full version, including alpha/beta/rc tags
24-
release = "1.5.1"
24+
release = "1.5.2"
2525

2626
# -- General Configuration ---------------------------------------------------
2727

novelwriter/__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.5.1"
65-
__hexversion__ = "0x010501f0"
66-
__date__ = "2021-10-23"
64+
__version__ = "1.5.2"
65+
__hexversion__ = "0x010502f0"
66+
__date__ = "2021-12-12"
6767
__status__ = "Stable"
6868
__domain__ = "novelwriter.io"
6969
__url__ = "https://novelwriter.io"

novelwriter/assets/text/release_notes.htm

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

5+
<h2>Release Notes for 1.5.2</h2>
6+
<p><i>Released on 12 December 2021</i></p>
7+
8+
<p>This is a bugfix release that fixes two issues. The first is an issue with an error in the HTML
9+
output if a paragraph has alignment or indentation tags while at the same time containing
10+
emphasised text. The second is an issue where the application cannot load a project with spell
11+
checking enabled if there is something wrong with the spell check package.</p>
12+
13+
<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>
14+
15+
<hr/>
16+
517
<h2>Release Notes for 1.5.1</h2>
618
<p><i>Released on 23 October 2021</i></p>
719

@@ -10,8 +22,6 @@ <h2>Release Notes for 1.5.1</h2>
1022
the project tree when the Novel tab is visible. If the Novel tab is selected, the focus shift now
1123
correctly gives focus to the Novel tree.</p>
1224

13-
<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>
14-
1525
<hr/>
1626

1727
<h2>Release Notes for 1.5</h2>

0 commit comments

Comments
 (0)