Updated changelog
This commit is contained in:
@@ -1,5 +1,23 @@
|
|||||||
# novelWriter ChangeLog
|
# novelWriter ChangeLog
|
||||||
|
|
||||||
|
## Version 1.0 Beta 3 [2020-09-20]
|
||||||
|
|
||||||
|
**Bugfixes**
|
||||||
|
|
||||||
|
* After recent changes, the `Edit Project Item` entry (or shortcut `F2`) in the menu would cause an error. Other means of triggering the edit dialog for a selected item were working fine. The error was caused by a dummy variable being sent by the menu QAction element that was caught by a new optional variable in the dialog function. All other menu actions have been wrapped in lambda functions to prevent this from happening again. PR #448.
|
||||||
|
* The Merge Tool was permitting a merge on an empty list of files to be merged. This would result in a new, empty file. The Merge Tool will now stop if the list of files is empty. PR #448.
|
||||||
|
* The orphaned file handling function would cause an error if the orphaned file was empty. This would trigger a secondary issue with uninitialised variables, which have also been fixed. PR #448.
|
||||||
|
|
||||||
|
**Code Improvements**
|
||||||
|
|
||||||
|
* Minor improvemenmts have been made to the core project classes to improve encapsulation and better ensure consistency between the different data structures that store the novel project in memory. PR #447.
|
||||||
|
* Some unused or redundant code has been removed, and in some places, functions have been merged to reduce code repetition. PR #449.
|
||||||
|
|
||||||
|
**Test Suite**
|
||||||
|
|
||||||
|
* A lot more tests have been added and test coverage improved. PR #449.
|
||||||
|
|
||||||
|
|
||||||
## Version 1.0 Beta 2 [2020-09-13]
|
## Version 1.0 Beta 2 [2020-09-13]
|
||||||
|
|
||||||
**Bugfixes**
|
**Bugfixes**
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="1.0b1" hexVersion="0x010000b1" fileVersion="1.2" timeStamp="2020-09-05 17:30:17">
|
<novelWriterXML appVersion="1.0b3" hexVersion="0x010000b3" fileVersion="1.2" timeStamp="2020-09-19 23:16:35">
|
||||||
<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>743</saveCount>
|
<saveCount>744</saveCount>
|
||||||
<autoCount>143</autoCount>
|
<autoCount>144</autoCount>
|
||||||
<editTime>36089</editTime>
|
<editTime>36162</editTime>
|
||||||
</project>
|
</project>
|
||||||
<settings>
|
<settings>
|
||||||
<doBackup>False</doBackup>
|
<doBackup>False</doBackup>
|
||||||
|
|||||||
Reference in New Issue
Block a user