Skip to content

Commit 86d324a

Browse files
authored
Release 2.0.6 (#1382)
2 parents a7ba0ec + 026f0b9 commit 86d324a

File tree

4 files changed

+48
-5
lines changed

4 files changed

+48
-5
lines changed

CHANGELOG.md

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

3+
## Version 2.0.6 [2023-02-26]
4+
5+
### Release Notes
6+
7+
This is a patch release that fixes a few minor bugs and a broken feature.
8+
9+
When opening a document from the Novel Tree or Outline View, the Project Tree would receive focus
10+
even when it was hidden. This has been corrected and no focus change is made. The Project Tree now
11+
also receives focus automatically when a new Project Item is created.
12+
13+
The backlinks in the Reference Panel below the Document Viewer were no longer working. They have
14+
now been fixed. They were broken due to a change in the link format in 2.0.
15+
16+
### Detailed Changelog
17+
18+
**Bugfixes**
19+
20+
* The Reference Panel link would no longer recognise the new, shorter links after the 2.0 project
21+
index change. The explicit check has now been made more lenient and will accept any link that is
22+
at least 13 characters long (the length of a document handle). Test coverage has been added for
23+
handling Reference Panel links. Issue #1378. PR #1379.
24+
* The `setSelectedItem` method of the project tree class had a `setFocus()` call. It should not do
25+
this as global focus is handled by the main GUI class, and doing this explicitly in the
26+
`setSelectedItem` method is presumptuous. Issue #1369. PR #1379.
27+
28+
**Usability Fixes**
29+
30+
* When creating new items in the project tree via shortcuts, the project tree receives focus. Since
31+
these actions can be accessed when the project tree does not have focus, a user would have to
32+
switch focus to be able to open new items. The tree now automatically receives focus when a new
33+
item is created. Issue #1376. PR #1379.
34+
35+
----
36+
337
## Version 2.0.5 [2023-02-12]
438

539
### 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.5"
63-
__hexversion__ = "0x020005f0"
64-
__date__ = "2023-02-12"
62+
__version__ = "2.0.6"
63+
__hexversion__ = "0x020006f0"
64+
__date__ = "2023-02-26"
6565
__status__ = "Stable"
6666
__domain__ = "novelwriter.io"
6767
__url__ = "https://novelwriter.io"

novelwriter/assets/text/release_notes.htm

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,14 @@ <h3>Patch 2.0.5 &ndash; 12 February 2023</h3>
126126
<p>An Italian translation has been added, and Russian is currently available for project builds. A
127127
full translation into Russian is on its way.</p>
128128

129+
<h3>Patch 2.0.6 &ndash; 26 February 2023</h3>
130+
131+
<p>This is a patch release that fixes a few minor bugs and a broken feature.</p>
132+
<p>When opening a document from the Novel Tree or Outline View, the Project Tree would receive
133+
focus even when it was hidden. This has been corrected and no focus change is made. The Project
134+
Tree now also receives focus automatically when a new Project Item is created.</p>
135+
<p>The backlinks in the Reference Panel below the Document Viewer were no longer working. They have
136+
now been fixed. They were broken due to a change in the link format in 2.0.</p>
137+
129138
</body>
130139
</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.5" hexVersion="0x020005f0" fileVersion="1.5" timeStamp="2023-02-12 16:02:30">
3-
<project id="e2be99af-f9bf-4403-857a-c3d1ac25abea" saveCount="1471" autoCount="237" editTime="74437">
2+
<novelWriterXML appVersion="2.0.6" hexVersion="0x020006f0" fileVersion="1.5" timeStamp="2023-02-26 11:15:06">
3+
<project id="e2be99af-f9bf-4403-857a-c3d1ac25abea" saveCount="1473" autoCount="237" editTime="74454">
44
<name>Sample Project</name>
55
<title>Sample Project</title>
66
<author>Jane Smith</author>

0 commit comments

Comments
 (0)