Updated changelog

This commit is contained in:
Veronica K. B. Olsen
2020-09-20 15:33:39 +02:00
parent 8dc6c6d045
commit 476a5bedb6
+5
View File
@@ -7,6 +7,11 @@
* 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.
* The context menu on the Project Tree would not show the `New File` and `New Folder` options on root folders if there were no Trash folder present. This weird bug was caused by the filter getting a `None` Trash handle and therefore assuming all root folders were Trash folders as they too have parent handle `None`. PR #452.
**User Interface**
* The Last Opened column in the Open Project dialog now has a fixed width font, and the Words column has a thin space between number and multiplier unit to make it easier to read. PR #452.
**Code Improvements**