Release 1.6.2 (#1024)
This commit is contained in:
committed by
GitHub
parent
8c4e5b99fe
commit
203e353e92
+28
-3
@@ -1,12 +1,37 @@
|
||||
# novelWriter Changelog
|
||||
|
||||
## Version 1.6.2 [2022-03-20]
|
||||
|
||||
### Release Notes
|
||||
|
||||
This is a bugfix release that fixes a couple of minor issues. Projects containing one or more empty
|
||||
documents would trigger a rebuild of the index each time the project was opened. This has now been
|
||||
fixed. Another fix resolves an error message being written to the console logging output when a new
|
||||
document was created. Both errors were harmless.
|
||||
|
||||
### Detailed Changelog
|
||||
|
||||
**Bugfixes**
|
||||
|
||||
* Fixed an issue where projects containing empty documents would trigger an index rebuild on open,
|
||||
but the empty document would be skipped due to a check that skips empty documents. As a
|
||||
consequence, the index would be rebuilt each time the project was opened. Empty documents are now
|
||||
added to the index, resolving this issue. Issue #1020. PR #1022.
|
||||
* Fixed an issue where the shasum calculation would be performed when a new document was created,
|
||||
which would fail as the file did not yet exist. The error was handled, but an error message was
|
||||
printed to the console log. The shasum is now no longer called if the file doesn't already exist.
|
||||
Issue #1021. PR #1023.
|
||||
|
||||
----
|
||||
|
||||
## Version 1.6.1 [2022-03-16]
|
||||
|
||||
### Release Notes
|
||||
|
||||
This is a bugfix and patch release that fixes two recursion/loop issues. One can cause a crash if
|
||||
the window is resized rapidly, and one can cause a hang with certain search parameters in the
|
||||
editor's search box. The Latin American Spanish translation has also been updated.
|
||||
This is a bugfix and patch release that fixes two recursion/loop issues. One would potentially
|
||||
cause a crash if the window was resized rapidly, and one would cause a hang with certain search
|
||||
parameters in the editor's search box. The Latin American Spanish translation has also been
|
||||
updated.
|
||||
|
||||
### Detailed Changelog
|
||||
|
||||
|
||||
@@ -60,9 +60,9 @@ __license__ = "GPLv3"
|
||||
__author__ = "Veronica Berglyd Olsen"
|
||||
__maintainer__ = "Veronica Berglyd Olsen"
|
||||
__email__ = "code@vkbo.net"
|
||||
__version__ = "1.6.1"
|
||||
__hexversion__ = "0x010601f0"
|
||||
__date__ = "2022-03-16"
|
||||
__version__ = "1.6.2"
|
||||
__hexversion__ = "0x010602f0"
|
||||
__date__ = "2022-03-20"
|
||||
__status__ = "Stable"
|
||||
__domain__ = "novelwriter.io"
|
||||
__url__ = "https://novelwriter.io"
|
||||
|
||||
@@ -41,9 +41,17 @@ not compatible.</p>
|
||||
|
||||
<h3>Patch 1.6.1 – 16 March 2022</h3>
|
||||
|
||||
<p>This is a bugfix and patch release that fixes two recursion/loop issues. One can cause a crash
|
||||
if the window is resized rapidly, and one can cause a hang with certain search parameters in the
|
||||
editor's search box. The Latin American Spanish translation has also been updated.</p>
|
||||
<p>This is a bugfix and patch release that fixes two recursion/loop issues. One would potentially
|
||||
cause a crash if the window was resized rapidly, and one would cause a hang with certain search
|
||||
parameters in the editor's search box. The Latin American Spanish translation has also been
|
||||
updated.</p>
|
||||
|
||||
<h3>Patch 1.6.2 – 20 March 2022</h3>
|
||||
|
||||
<p>This is a bugfix release that fixes a couple of minor issues. Projects containing one or more
|
||||
empty documents would trigger a rebuild of the index each time the project was opened. This has now
|
||||
been fixed. Another fix resolves an error message being written to the console logging output when
|
||||
a new document was created. Both errors were harmless.</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<novelWriterXML appVersion="1.6.1" hexVersion="0x010601f0" fileVersion="1.3" timeStamp="2022-03-16 22:56:22">
|
||||
<novelWriterXML appVersion="1.6.2" hexVersion="0x010602f0" fileVersion="1.3" timeStamp="2022-03-20 15:40:34">
|
||||
<project>
|
||||
<name>Sample Project</name>
|
||||
<title>Sample Project</title>
|
||||
<author>Jane Smith</author>
|
||||
<author>Jay Doh</author>
|
||||
<saveCount>1301</saveCount>
|
||||
<saveCount>1302</saveCount>
|
||||
<autoCount>199</autoCount>
|
||||
<editTime>64982</editTime>
|
||||
<editTime>64999</editTime>
|
||||
</project>
|
||||
<settings>
|
||||
<doBackup>False</doBackup>
|
||||
|
||||
Reference in New Issue
Block a user