Merge pull request #345 from vkbo/release_0.9.2

Release 0.9.2
This commit is contained in:
Veronica K. Berglyd Olsen
2020-06-26 21:28:18 +02:00
committed by GitHub
5 changed files with 25 additions and 9 deletions
+16
View File
@@ -1,5 +1,21 @@
# novelWriter ChangeLog
## Version 0.9.2 [2020-06-26]
**Bugfixes**
* The project tree word counts were getting mixed up when a file was moved to the trash folder, or permanently deleted. This has now been fixed, and moving a file should give a zero net change of project word count. Permanently deleting it will result in a negative net change. Issue #333, PR #335.
**User Interface**
* There is a feature in the project tree class that ensures that the tree item being acted on is visible in the tree. It is called when you for instance click the header of an open document. It was also activated when opening a document from the tree view with either double-click by mouse, or by using the Enter key. This meant that the tree view would often move, which made it hard to mouse click on items after eachother since you ended up chasing a moving target. This feature is now disabled for document open. In addition, the scroll into view feature has been added to the search/replace call to move into the next document when reaching the end of the current document. This was requested in Issue #332. PR #334.
* The Build Novel Project tool will now display the build time of the document in the preview window in order for the user to know if it is potentially out of date. The timestamp is given, as well as a fuzzy time string, indicating the age of the content. Issue #331, PRs #336 and #337.
**Documentation**
* The documentation has been updated to clarify the correct formatting for italic, bold and strikethrough formatting tags. Issue #220, PR #338.
## Version 0.9.1 [2020-06-21]
**Bugfixes**
+2 -2
View File
@@ -24,9 +24,9 @@ copyright = "2018-2020, Veronica Berglyd Olsen"
author = "Veronica Berglyd Olsen"
# The short X.Y version
version = "0.9.1"
version = "0.9.2"
# The full version, including alpha/beta/rc tags
release = "0.9.1"
release = "0.9.2"
# -- General configuration ---------------------------------------------------
+3 -3
View File
@@ -40,9 +40,9 @@ __package__ = "novelWriter"
__author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182020, Veronica Berglyd Olsen"
__license__ = "GPLv3"
__version__ = "0.9.1"
__hexversion__ = "0x000901f0"
__date__ = "2020-06-21"
__version__ = "0.9.2"
__hexversion__ = "0x000902f0"
__date__ = "2020-06-26"
__maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net"
__status__ = "Pre-Release"
+3 -3
View File
@@ -1,13 +1,13 @@
<?xml version='1.0' encoding='utf-8'?>
<novelWriterXML appVersion="0.9.0rc1" hexVersion="0x000900c1" fileVersion="1.1" timeStamp="2020-06-19 19:50:54">
<novelWriterXML appVersion="0.9.2" hexVersion="0x000902f0" fileVersion="1.1" timeStamp="2020-06-26 21:20:24">
<project>
<name>Sample Project</name>
<title>Sample Project</title>
<author>Jane Smith</author>
<author>Jay Doh</author>
<saveCount>407</saveCount>
<saveCount>408</saveCount>
<autoCount>71</autoCount>
<editTime>15118</editTime>
<editTime>15120</editTime>
</project>
<settings>
<doBackup>False</doBackup>
+1 -1
View File
@@ -6,7 +6,7 @@ with open("README.md", "r") as inFile:
setuptools.setup(
name = "novelWriter",
version = "0.9.1",
version = "0.9.2",
author = "Veronica Berglyd Olsen",
author_email = "code@vkbo.net",
description = "A markdown-like document editor for writing novels",