@@ -1,5 +1,45 @@
|
|||||||
# novelWriter Change Log
|
# novelWriter Change Log
|
||||||
|
|
||||||
|
## Version 1.0.2 [2021-01-19]
|
||||||
|
|
||||||
|
### Release Notes
|
||||||
|
|
||||||
|
This patch release fixes a few minor cosmetic issues, a minor issue with the indexer, and a bug
|
||||||
|
when adding words to the user's own spell check dictionary. Additionally, the documentation has
|
||||||
|
been updated based on user feedback, and some install issues resolved.
|
||||||
|
|
||||||
|
### Detailed Changelog
|
||||||
|
|
||||||
|
**Installation**
|
||||||
|
|
||||||
|
* The dependency list was missing in the setup configuration for PyPi due to a bug in the
|
||||||
|
`setup.cfg` file. The dependencies have been moved to a different section where the setup tool
|
||||||
|
now picks them up properly. Issue #570, PR #573 by @stranger-danger-zamu.
|
||||||
|
|
||||||
|
**Bug Fixes**
|
||||||
|
|
||||||
|
* Fixed an issue with note files being moved between a non-novel root folder and a novel root
|
||||||
|
folder without clearing its index entry in the former note or novel index. This would cause
|
||||||
|
duplicate entries for such a file. PR #558.
|
||||||
|
* Fixed a cosmetic issue where the meta data panel below the project tree was not cleared when the
|
||||||
|
project was closed. PR #559.
|
||||||
|
* Fixed an issue where the main window title would not be cleared when a project was closed, and
|
||||||
|
the new title not set when a new project was first created. Issue #560, PR #561.
|
||||||
|
* The editor context menu option to "Add Word to Dictionary" should also be visible when there are
|
||||||
|
no spell checker suggestions. The entry was erroneously added under an if-condition that excluded
|
||||||
|
it in those cases. Issue #574, PR #575.
|
||||||
|
|
||||||
|
**Documentation**
|
||||||
|
|
||||||
|
* Fixed some typos and spelling mistakes in the documentation, and reworded parts of the text that
|
||||||
|
were unclear. The technical page has also been extended with more information on project folder
|
||||||
|
structure. PR #557.
|
||||||
|
* Clarify install instructions, and remove the duplicate instructions in the README file and
|
||||||
|
replace them with a brief section. The full instructions are in the documentation. Issues #566
|
||||||
|
and #570, PR #576.
|
||||||
|
|
||||||
|
----
|
||||||
|
|
||||||
## Version 1.0.1 [2021-01-10]
|
## Version 1.0.1 [2021-01-10]
|
||||||
|
|
||||||
### Release Notes
|
### Release Notes
|
||||||
|
|||||||
+2
-2
@@ -25,9 +25,9 @@ copyright = "2018–2021, Veronica Berglyd Olsen"
|
|||||||
author = "Veronica Berglyd Olsen"
|
author = "Veronica Berglyd Olsen"
|
||||||
|
|
||||||
# The short X.Y version
|
# The short X.Y version
|
||||||
version = "1.0.1"
|
version = "1.0.2"
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
release = "1.0.1"
|
release = "1.0.2"
|
||||||
|
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
|||||||
+3
-3
@@ -63,9 +63,9 @@ __license__ = "GPLv3"
|
|||||||
__author__ = "Veronica Berglyd Olsen"
|
__author__ = "Veronica Berglyd Olsen"
|
||||||
__maintainer__ = "Veronica Berglyd Olsen"
|
__maintainer__ = "Veronica Berglyd Olsen"
|
||||||
__email__ = "code@vkbo.net"
|
__email__ = "code@vkbo.net"
|
||||||
__version__ = "1.0.1"
|
__version__ = "1.0.2"
|
||||||
__hexversion__ = "0x010001f0"
|
__hexversion__ = "0x010002f0"
|
||||||
__date__ = "2021-01-10"
|
__date__ = "2021-01-19"
|
||||||
__status__ = "Stable"
|
__status__ = "Stable"
|
||||||
__domain__ = "novelwriter.io"
|
__domain__ = "novelwriter.io"
|
||||||
__url__ = "https://novelwriter.io"
|
__url__ = "https://novelwriter.io"
|
||||||
|
|||||||
@@ -2,6 +2,17 @@
|
|||||||
<html>
|
<html>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<h2>Release Notes for 1.0.2</h2>
|
||||||
|
<p><i>Released on 19 January 2021</i></p>
|
||||||
|
<p>This patch release fixes a few minor cosmetic issues, a minor issue with the indexer, and a bug
|
||||||
|
when adding words to the user's own spell check dictionary. Additionally, the documentation has
|
||||||
|
been updated based on user feedback, and some install issues resolved.</p>
|
||||||
|
|
||||||
|
<p><i>The full changelog is available
|
||||||
|
<a href="https://github.com/vkbo/novelWriter/blob/main/CHANGELOG.md">here</a>.</i></p>
|
||||||
|
|
||||||
|
<hr/>
|
||||||
|
|
||||||
<h2>Release Notes for 1.0.1</h2>
|
<h2>Release Notes for 1.0.1</h2>
|
||||||
<p><i>Released on 10 January 2021</i></p>
|
<p><i>Released on 10 January 2021</i></p>
|
||||||
<p>This release is mainly to bring the documentation up to date, as I forgot to update the install
|
<p>This release is mainly to bring the documentation up to date, as I forgot to update the install
|
||||||
@@ -13,9 +24,6 @@ issues with the document and project changed icons on the status bar have also b
|
|||||||
indicators were previously set to changed status even if no actual change had been made to the
|
indicators were previously set to changed status even if no actual change had been made to the
|
||||||
project.</p>
|
project.</p>
|
||||||
|
|
||||||
<p><i>The full changelog is available
|
|
||||||
<a href="https://github.com/vkbo/novelWriter/blob/main/CHANGELOG.md">here</a>.</i></p>
|
|
||||||
|
|
||||||
<hr/>
|
<hr/>
|
||||||
|
|
||||||
<h2>Release Notes for 1.0</h2>
|
<h2>Release Notes for 1.0</h2>
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="1.0.1" hexVersion="0x010001f0" fileVersion="1.2" timeStamp="2021-01-07 22:31:29">
|
<novelWriterXML appVersion="1.0.2" hexVersion="0x010002f0" fileVersion="1.2" timeStamp="2021-01-19 20:55:33">
|
||||||
<project>
|
<project>
|
||||||
<name>Sample Project</name>
|
<name>Sample Project</name>
|
||||||
<title>Sample Project</title>
|
<title>Sample Project</title>
|
||||||
<author>Jane Smith</author>
|
<author>Jane Smith</author>
|
||||||
<author>Jay Doh</author>
|
<author>Jay Doh</author>
|
||||||
<saveCount>824</saveCount>
|
<saveCount>826</saveCount>
|
||||||
<autoCount>153</autoCount>
|
<autoCount>153</autoCount>
|
||||||
<editTime>39478</editTime>
|
<editTime>39506</editTime>
|
||||||
</project>
|
</project>
|
||||||
<settings>
|
<settings>
|
||||||
<doBackup>False</doBackup>
|
<doBackup>False</doBackup>
|
||||||
|
|||||||
Reference in New Issue
Block a user