Skip to content

Commit 486676b

Browse files
authored
Merge pull request #777 from vkbo/release_1.3.1
Release 1.3.1
2 parents b1d597e + 542cbf1 commit 486676b

File tree

5 files changed

+50
-10
lines changed

5 files changed

+50
-10
lines changed

CHANGELOG.md

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

3+
## Version 1.3.1 [2021-05-06]
4+
5+
### Release Notes
6+
7+
This is a patch release primarily to fix a problem with the Qt translation library used to make
8+
novelWriter available in multiple languages. One of the function calls made to the library was
9+
added recently, in Qt 5.15, which many users on Linux will not have installed on their system. The
10+
issue could be resolved by updating the library, but it's an unnecessary and inconvenient
11+
restriction.
12+
13+
### Detailed Changelog
14+
15+
**Bugfixes**
16+
17+
* The code to load translation files for the main GUI was using a function in the QTranslate class
18+
that was added in version 5.15, which means novelWriter could not start on a lower version of the
19+
Qt library if translation files were present. We don't want to force users to use Qt 5.15, so the
20+
call has been removed. Issue #773. PR #774.
21+
22+
**Other Fixes**
23+
24+
* When generating a new project on Windows, the code that generates the new documents in the
25+
project would create duplicate handles, causing a warning to be printed. The warning is harmless
26+
as the collisions are handled. They are caused by the resolution of the clock available to Python
27+
on Windows being in the tens of millisecond range, much slower than the code generates the new
28+
project files. The solution was to append a counter to the timestamp from the clock, ensuring
29+
that the seed is always unique. Issue #769. PR #776.
30+
31+
----
32+
333
## Version 1.3 [2021-05-02]
434

535
### 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"
28+
version = "1.3.1"
2929
# The full version, including alpha/beta/rc tags
30-
release = "1.3"
30+
release = "1.3.1"
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"
66-
__hexversion__ = "0x010300f0"
67-
__date__ = "2021-05-02"
65+
__version__ = "1.3.1"
66+
__hexversion__ = "0x010301f0"
67+
__date__ = "2021-05-06"
6868
__status__ = "Stable"
6969
__domain__ = "novelwriter.io"
7070
__url__ = "https://novelwriter.io"

nw/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.3.1</h2>
6+
<p><i>Released on 6 May 2021</i></p>
7+
<p>This is a patch release primarily to fix a problem with the Qt translation library used to make
8+
novelWriter available in multiple languages. One of the function calls made to the library was
9+
added recently, in Qt 5.15, which many users on Linux will not have installed on their system. The
10+
issue could be resolved by updating the library, but it's an unnecessary and inconvenient
11+
restriction.</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.3</h2>
618
<p><i>Released on 2 May 2021</i></p>
719
<p>The main feature of the 1.3 release is internationalisation. The release introduces support for
@@ -24,7 +36,5 @@ <h2>Release Notes for 1.3</h2>
2436
<p>The work to rewrite novelWriter to allow for internationalisation was done by Bruno Meneguello
2537
and Veronica Berglyd Olsen.</p>
2638

27-
<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>
28-
2939
</body>
3040
</html>

sample/nwProject.nwx

Lines changed: 3 additions & 3 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" hexVersion="0x010300f0" fileVersion="1.2" timeStamp="2021-05-02 16:48:34">
2+
<novelWriterXML appVersion="1.3.1" hexVersion="0x010301f0" fileVersion="1.2" timeStamp="2021-05-06 22:23:09">
33
<project>
44
<name>Sample Project</name>
55
<title>Sample Project</title>
66
<author>Jane Smith</author>
77
<author>Jay Doh</author>
8-
<saveCount>1060</saveCount>
8+
<saveCount>1061</saveCount>
99
<autoCount>166</autoCount>
10-
<editTime>49679</editTime>
10+
<editTime>49821</editTime>
1111
</project>
1212
<settings>
1313
<doBackup>False</doBackup>

0 commit comments

Comments
 (0)