@@ -1,5 +1,35 @@
|
||||
# novelWriter Changelog
|
||||
|
||||
## Version 1.3.1 [2021-05-06]
|
||||
|
||||
### Release Notes
|
||||
|
||||
This is a patch release primarily to fix a problem with the Qt translation library used to make
|
||||
novelWriter available in multiple languages. One of the function calls made to the library was
|
||||
added recently, in Qt 5.15, which many users on Linux will not have installed on their system. The
|
||||
issue could be resolved by updating the library, but it's an unnecessary and inconvenient
|
||||
restriction.
|
||||
|
||||
### Detailed Changelog
|
||||
|
||||
**Bugfixes**
|
||||
|
||||
* The code to load translation files for the main GUI was using a function in the QTranslate class
|
||||
that was added in version 5.15, which means novelWriter could not start on a lower version of the
|
||||
Qt library if translation files were present. We don't want to force users to use Qt 5.15, so the
|
||||
call has been removed. Issue #773. PR #774.
|
||||
|
||||
**Other Fixes**
|
||||
|
||||
* When generating a new project on Windows, the code that generates the new documents in the
|
||||
project would create duplicate handles, causing a warning to be printed. The warning is harmless
|
||||
as the collisions are handled. They are caused by the resolution of the clock available to Python
|
||||
on Windows being in the tens of millisecond range, much slower than the code generates the new
|
||||
project files. The solution was to append a counter to the timestamp from the clock, ensuring
|
||||
that the seed is always unique. Issue #769. PR #776.
|
||||
|
||||
----
|
||||
|
||||
## Version 1.3 [2021-05-02]
|
||||
|
||||
### Release Notes
|
||||
|
||||
+2
-2
@@ -25,9 +25,9 @@ copyright = "2018–2021, Veronica Berglyd Olsen"
|
||||
author = "Veronica Berglyd Olsen"
|
||||
|
||||
# The short X.Y version
|
||||
version = "1.3"
|
||||
version = "1.3.1"
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = "1.3"
|
||||
release = "1.3.1"
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
||||
|
||||
+3
-3
@@ -62,9 +62,9 @@ __license__ = "GPLv3"
|
||||
__author__ = "Veronica Berglyd Olsen"
|
||||
__maintainer__ = "Veronica Berglyd Olsen"
|
||||
__email__ = "code@vkbo.net"
|
||||
__version__ = "1.3"
|
||||
__hexversion__ = "0x010300f0"
|
||||
__date__ = "2021-05-02"
|
||||
__version__ = "1.3.1"
|
||||
__hexversion__ = "0x010301f0"
|
||||
__date__ = "2021-05-06"
|
||||
__status__ = "Stable"
|
||||
__domain__ = "novelwriter.io"
|
||||
__url__ = "https://novelwriter.io"
|
||||
|
||||
@@ -2,6 +2,18 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<h2>Release Notes for 1.3.1</h2>
|
||||
<p><i>Released on 6 May 2021</i></p>
|
||||
<p>This is a patch release primarily to fix a problem with the Qt translation library used to make
|
||||
novelWriter available in multiple languages. One of the function calls made to the library was
|
||||
added recently, in Qt 5.15, which many users on Linux will not have installed on their system. The
|
||||
issue could be resolved by updating the library, but it's an unnecessary and inconvenient
|
||||
restriction.</p>
|
||||
|
||||
<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<h2>Release Notes for 1.3</h2>
|
||||
<p><i>Released on 2 May 2021</i></p>
|
||||
<p>The main feature of the 1.3 release is internationalisation. The release introduces support for
|
||||
@@ -24,7 +36,5 @@ provided the translation file for chapter numbers in German.</p>
|
||||
<p>The work to rewrite novelWriter to allow for internationalisation was done by Bruno Meneguello
|
||||
and Veronica Berglyd Olsen.</p>
|
||||
|
||||
<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<novelWriterXML appVersion="1.3" hexVersion="0x010300f0" fileVersion="1.2" timeStamp="2021-05-02 16:48:34">
|
||||
<novelWriterXML appVersion="1.3.1" hexVersion="0x010301f0" fileVersion="1.2" timeStamp="2021-05-06 22:23:09">
|
||||
<project>
|
||||
<name>Sample Project</name>
|
||||
<title>Sample Project</title>
|
||||
<author>Jane Smith</author>
|
||||
<author>Jay Doh</author>
|
||||
<saveCount>1060</saveCount>
|
||||
<saveCount>1061</saveCount>
|
||||
<autoCount>166</autoCount>
|
||||
<editTime>49679</editTime>
|
||||
<editTime>49821</editTime>
|
||||
</project>
|
||||
<settings>
|
||||
<doBackup>False</doBackup>
|
||||
|
||||
Reference in New Issue
Block a user