Skip to content

Commit 8cdb7c2

Browse files
committed
Bump version to 2.0.7 and update changelog
1 parent 1a716d8 commit 8cdb7c2

File tree

4 files changed

+68
-5
lines changed

4 files changed

+68
-5
lines changed

CHANGELOG.md

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

3+
## Version 2.0.7 [2023-04-16]
4+
5+
### Release Notes
6+
7+
This is a patch release that fixes a few issues and adds a Japanese translation.
8+
9+
The issues were mostly related to spell checking. In particular, issues with finding the word
10+
boundary when using underscore characters for italics markup. These issues should now be resolved.
11+
In addition, escaped markup characters are now renderred properly in HTML and ODT build formats.
12+
13+
A few usability improvements have also been made. The Add Item menu in the project tree no longer
14+
shows the options to create Novel Documents when an item in the tree is selected that cannot hold
15+
such a document. In addition, the "Change Label" context menu entry has been changed to say
16+
"Rename", which is a more logical choice.
17+
18+
### Detailed Changelog
19+
20+
**Bugfixes**
21+
22+
* Fixed an issue where novelWriter sometimes shows up in the desktop environment on Linux under
23+
another name than it's supposed to, which meant it would show up without the correct icon. The
24+
desktop environment was apparently guessing its name based on various values. It is now set
25+
explicitly. PR #1405.
26+
* Fixed an issue where the syntax highlighting for spell checked words were not cleared when spell
27+
checking was disabled. Issue #1414. PR #1416.
28+
* Fixed a series of issues with spell checking of words and sentences with italics styling using
29+
underscores. The spell checker relies on RegEx for splitting words, and RegEx considers the
30+
underscore a word character. Issue #1415. PR #1417.
31+
* Fixed an issue where escaped markup characters were not being cleaned up when building HTML and
32+
ODT outputs. Issue #1412. PR #1418.
33+
34+
**Usability Fixes**
35+
36+
* The context menu entry "Change Label" in the project tree has now been changed to say "Rename",
37+
which matches with the main menu, and is also more in line with what users expect. PR #1403.
38+
* The entries for creating new Novel Documents in the project tree's Add Item menu are now hidden
39+
when the select item in the tree does not allow Novel Documents. This is less confusing than the
40+
previous behaviour where it would just create a Project Note regardless of selected file option.
41+
Issue #1404. PR #1406.
42+
43+
**Internationalisation**
44+
45+
* Added Japanese translation, contributed by @hebekeg. PR #1407.
46+
* Updated existing translations. PR #1407.
47+
48+
**Packaging**
49+
50+
* Legacy AppImage formats have been added to support glibc 2.24. This is a temporary solution until
51+
the AppImage base image is deprecated later in 2023. Issue #1391. PR #1410.
52+
53+
----
54+
355
## Version 2.0.6 [2023-02-26]
456

557
### Release Notes

novelwriter/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
__author__ = "Veronica Berglyd Olsen"
6060
__maintainer__ = "Veronica Berglyd Olsen"
6161
__email__ = "[email protected]"
62-
__version__ = "2.0.6"
63-
__hexversion__ = "0x020006f0"
64-
__date__ = "2023-02-26"
62+
__version__ = "2.0.7"
63+
__hexversion__ = "0x020007f0"
64+
__date__ = "2023-04-16"
6565
__status__ = "Stable"
6666
__domain__ = "novelwriter.io"
6767
__url__ = "https://novelwriter.io"

novelwriter/assets/text/release_notes.htm

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,16 @@ <h3>Patch 2.0.6 &ndash; 26 February 2023</h3>
135135
<p>The backlinks in the Reference Panel below the Document Viewer were no longer working. They have
136136
now been fixed. They were broken due to a change in the link format in 2.0.</p>
137137

138+
<h3>Patch 2.0.7 &ndash; 16 April 2023</h3>
139+
140+
<p>This is a patch release that fixes a few issues and adds a Japanese translation.</p>
141+
<p>The issues were mostly related to spell checking. In particular, issues with finding the word
142+
boundary when using underscore characters for italics markup. These issues should now be resolved.
143+
In addition, escaped markup characters are now renderred properly in HTML and ODT build formats.</p>
144+
<p>A few usability improvements have also been made. The Add Item menu in the project tree no
145+
longer shows the options to create Novel Documents when an item in the tree is selected that cannot
146+
hold such a document. In addition, the "Change Label" context menu entry has been changed to say
147+
"Rename", which is a more logical choice.</p>
148+
138149
</body>
139150
</html>

sample/nwProject.nwx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<novelWriterXML appVersion="2.0.6" hexVersion="0x020006f0" fileVersion="1.5" timeStamp="2023-04-04 18:12:56">
3-
<project id="e2be99af-f9bf-4403-857a-c3d1ac25abea" saveCount="1473" autoCount="237" editTime="74507">
2+
<novelWriterXML appVersion="2.0.7" hexVersion="0x020007f0" fileVersion="1.5" timeStamp="2023-04-15 20:52:06">
3+
<project id="e2be99af-f9bf-4403-857a-c3d1ac25abea" saveCount="1475" autoCount="237" editTime="74579">
44
<name>Sample Project</name>
55
<title>Sample Project</title>
66
<author>Jane Smith</author>

0 commit comments

Comments
 (0)