Skip to content

Commit f39cda7

Browse files
authored
Merge pull request #811 from vkbo/release_1.3.3
Release 1.3.3
2 parents 57ae559 + b28d826 commit f39cda7

File tree

5 files changed

+57
-11
lines changed

5 files changed

+57
-11
lines changed

CHANGELOG.md

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

3+
## Version 1.3.3 [2021-06-13]
4+
5+
### Release Notes
6+
7+
This patch release fixes a potential file encoding issue when running setup on Windows, and a minor
8+
issue with the project word count not being updated immediately when a file is deleted. In
9+
addition, the keyboard shortcuts to change focus between the project tree, the editor, the viewer,
10+
and the outline panel, have been changed for Windows users. They keyboard shortcuts were
11+
interfering with the Alt codes used for special characters. The shortcuts are unchanged for Linux
12+
and macOS.
13+
14+
### Detailed Changelog
15+
16+
**Bugfixes**
17+
18+
* Fix an issue with file encoding when extracting version information from the source code during
19+
setup on Windows. This seems to be a limited issue, but the changes make the relevant function
20+
more fault tolerant. Issue #805. PR #807.
21+
* The project word count on the status bar was not always updated when a file was permanently
22+
deleted from the project. This has now been resolved. Issue #799. PR #810.
23+
* The keyboard shortcuts to change focus will on Windows interfere with the alt key codes as the
24+
focus shortcuts used `Alt+` to `Alt+4`. On Windows, these are now instead `Ctrl+Alt+1` to
25+
`Ctrl+Alt+4`. Part of issue #740. PR #808.
26+
27+
**Source Code**
28+
29+
* Remove a redundant line in the source code. PR #802.
30+
* Make the XML parse for project items a little less panicky when encountering unexpected XML tags.
31+
Generally, this shouldn't be a problem, but the XML parser should silently ignore unexpected tags
32+
when parsing the project file. This may occur if a project is opened in an earlier version of
33+
novelWriter. If so, a warning is issued anyway, so it is safe to disregard unrecognised tags as
34+
the user has already actively selected to proceed and been sufficiently warned. PR #809.
35+
36+
----
37+
338
## Version 1.3.2 [2021-05-30]
439

540
### Release Notes

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
author = "Veronica Berglyd Olsen"
2626

2727
# The short X.Y version
28-
version = "1.3.2"
28+
version = "1.3.3"
2929
# The full version, including alpha/beta/rc tags
30-
release = "1.3.2"
30+
release = "1.3.3"
3131

3232
# -- General configuration ---------------------------------------------------
3333

nw/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@
6262
__author__ = "Veronica Berglyd Olsen"
6363
__maintainer__ = "Veronica Berglyd Olsen"
6464
__email__ = "[email protected]"
65-
__version__ = "1.3.2"
66-
__hexversion__ = "0x010302f0"
67-
__date__ = "2021-05-30"
65+
__version__ = "1.3.3"
66+
__hexversion__ = "0x010303f0"
67+
__date__ = "2021-06-13"
6868
__status__ = "Stable"
6969
__domain__ = "novelwriter.io"
7070
__url__ = "https://novelwriter.io"

nw/assets/text/release_notes.htm

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

5+
<h2>Release Notes for 1.3.3</h2>
6+
<p><i>Released on 13 June 2021</i></p>
7+
<p>This patch release fixes a potential file encoding issue when running setup on Windows, and a
8+
minor issue with the project word count not being updated immediately when a file is deleted. In
9+
addition, the keyboard shortcuts to change focus between the project tree, the editor, the viewer,
10+
and the outline panel, have been changed for Windows users. They keyboard shortcuts were
11+
interfering with the Alt codes used for special characters. The shortcuts are unchanged for Linux
12+
and macOS.</p>
13+
14+
<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>
15+
16+
<hr/>
17+
518
<h2>Release Notes for 1.3.2</h2>
619
<p><i>Released on 30 May 2021</i></p>
720
<p>This is a patch release that fixes some minor issues. One issue was with the split tool, which
821
would drop the last line from the source document during a split if it was missing a final line
922
break. A minor issue with the display of word counts on the details panel under the project tree
1023
has also been fixed. In addition, the setup script commands for Linux have been improved a bit.</p>
1124

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

1627
<h2>Release Notes for 1.3.1</h2>

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.3.2" hexVersion="0x010302f0" fileVersion="1.2" timeStamp="2021-05-30 12:14:18">
2+
<novelWriterXML appVersion="1.3.3" hexVersion="0x010303f0" fileVersion="1.2" timeStamp="2021-06-13 17:11:05">
33
<project>
44
<name>Sample Project</name>
55
<title>Sample Project</title>
66
<author>Jane Smith</author>
77
<author>Jay Doh</author>
8-
<saveCount>1062</saveCount>
9-
<autoCount>166</autoCount>
10-
<editTime>49870</editTime>
8+
<saveCount>1071</saveCount>
9+
<autoCount>169</autoCount>
10+
<editTime>50488</editTime>
1111
</project>
1212
<settings>
1313
<doBackup>False</doBackup>

0 commit comments

Comments
 (0)