Skip to content

Commit c22354f

Browse files
authored
Release 1.6.6 (#1210)
2 parents e93e125 + 4862ac3 commit c22354f

File tree

4 files changed

+31
-9
lines changed

4 files changed

+31
-9
lines changed

CHANGELOG.md

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

3+
## Version 1.6.6 [2022-10-25]
4+
5+
### Release Notes
6+
7+
This is a bugfix release that fixes a minor issues with following tags in the editor. It is now
8+
possible to also follow tags that contain spaces.
9+
10+
### Detailed Changelog
11+
12+
**Bugfixes**
13+
14+
* Fix a bug where only the word under the cursor would be looked up when the user tried to follow a
15+
tag in the editor. The lookup function now uses the same parser for the `@`-line as the syntax
16+
highlighter does, so they should behave consistently. Issue #1195. PR #1209.
17+
18+
----
19+
320
## Version 1.6.5 [2022-10-13]
421

522
### Release Notes
623

7-
This is a bugfix release that fixes a a few minor issues. The idle time for new projects would be
24+
This is a bugfix release that fixes a few minor issues. The idle time for new projects would be
825
artificially inflated as the clock was not reset when the project was first created. This only
926
affects the first entry in the writing statistics. A scaling issue for the Preferences dialog has
1027
also been fixed. It only affected screens with UI scaling enabled. Lastly, typing `Shift+Enter` in

novelwriter/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
__author__ = "Veronica Berglyd Olsen"
6161
__maintainer__ = "Veronica Berglyd Olsen"
6262
__email__ = "[email protected]"
63-
__version__ = "1.6.5"
64-
__hexversion__ = "0x010605f0"
65-
__date__ = "2022-10-13"
63+
__version__ = "1.6.6"
64+
__hexversion__ = "0x010606f0"
65+
__date__ = "2022-10-25"
6666
__status__ = "Stable"
6767
__domain__ = "novelwriter.io"
6868
__url__ = "https://novelwriter.io"

novelwriter/assets/text/release_notes.htm

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,18 @@ <h3>Patch 1.6.4 &ndash; 29 September 2022</h3>
7272

7373
<h3>Patch 1.6.5 &ndash; 13 October 2022</h3>
7474

75-
<p>This is a bugfix release that fixes a a few minor issues. The idle time for new projects would
75+
<p>This is a bugfix release that fixes a few minor issues. The idle time for new projects would
7676
be artificially inflated as the clock was not reset when the project was first created. This only
7777
affects the first entry in the writing statistics. A scaling issue for the Preferences dialog has
7878
also been fixed. It only affected screens with UI scaling enabled. Lastly, typing Shift+Enter in
7979
the text editor now creates a regular line break instead of a special line separator. The line
8080
separator serves no purpose in plain text, and was producing inconsistencies in how text is
8181
processed and displayed.</p>
8282

83+
<h3>Patch 1.6.6 &ndash; 25 October 2022</h3>
84+
85+
<p>This is a bugfix release that fixes a minor issues with following tags in the editor. It is now
86+
possible to also follow tags that contain spaces.</p>
87+
8388
</body>
8489
</html>

sample/nwProject.nwx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<novelWriterXML appVersion="1.6.5" hexVersion="0x010605f0" fileVersion="1.3" timeStamp="2022-10-13 10:43:08">
2+
<novelWriterXML appVersion="1.6.6" hexVersion="0x010606f0" fileVersion="1.3" timeStamp="2022-10-25 18:26:15">
33
<project>
44
<name>Sample Project</name>
55
<title>Sample Project</title>
66
<author>Jane Smith</author>
77
<author>Jay Doh</author>
8-
<saveCount>1306</saveCount>
8+
<saveCount>1312</saveCount>
99
<autoCount>199</autoCount>
10-
<editTime>65126</editTime>
10+
<editTime>65207</editTime>
1111
</project>
1212
<settings>
1313
<doBackup>False</doBackup>
@@ -121,7 +121,7 @@
121121
<charCount>2429</charCount>
122122
<wordCount>432</wordCount>
123123
<paraCount>14</paraCount>
124-
<cursorPos>219</cursorPos>
124+
<cursorPos>62</cursorPos>
125125
</item>
126126
<item handle="bc0cbd2a407f3" order="2" parent="e7ded148d6e4a">
127127
<name>Another Scene</name>

0 commit comments

Comments
 (0)