|
1 | 1 | # novelWriter Changelog |
2 | 2 |
|
| 3 | +## Version 1.7 Beta 1 [2022-05-17] |
| 4 | + |
| 5 | +### Release Notes |
| 6 | + |
| 7 | +This is a beta release of the next release version, and is intended for testing purposes. Please be |
| 8 | +careful when using this version on live writing projects, and make sure you take frequent backups. |
| 9 | + |
| 10 | +Please check the changelog for an overview of changes. The full release notes will be added to the |
| 11 | +final release. |
| 12 | + |
| 13 | +### Detailed Changelog |
| 14 | + |
| 15 | +**Features** |
| 16 | + |
| 17 | +* A simple tool to add Lorem Ipsum placeholder text has been added to the Insert menu. PR #1028. |
| 18 | +* Status and Importance flags can now be reorganised in Project Settings. Issue #1035. PR #1040. |
| 19 | +* It is now possible to create multiple Root Folders of the same kind. This makes it possible to |
| 20 | + add multiple Novel root folders in a project, for instance. Issue #967. PR #1031. |
| 21 | +* All documents can now be dragged and dropped anywhere in the project tree. The document layout |
| 22 | + may be converted in the process. PR #1031. |
| 23 | +* Documents in the project tree can now have other documents as child documents. Issue #1002. |
| 24 | + PR #1047. |
| 25 | +* Folders in the project tree that are not empty, can now be moved to trash. PR #1048. |
| 26 | +* Empty folders are deleted on request, and not moved to trash. Issue #1052. PR #1055. |
| 27 | + |
| 28 | +**User Interface** |
| 29 | + |
| 30 | +* The tabs under the project tree and to the right of the main window have been replaced with a |
| 31 | + toolbar on the left hand side. The toolbar has a set of buttons to change view between Project, |
| 32 | + Novel and Outline. The three buttons that were available under the project tree have been moved |
| 33 | + to the bottom of the new toolbar. Issue #1056. PR #1057. |
| 34 | +* When a document changes from a project document to a note, and back again, the Status flag |
| 35 | + setting is preserved. Previously, the Importance setting would overwrite it during the |
| 36 | + conversion. PR #1030. |
| 37 | +* Item labels, Status labels, and other labels on the GUI are now run through a "simplify" function |
| 38 | + before being accepted. This functions strips out all whitespaces and consecutive whitespaces and |
| 39 | + replace them with single plain whitespaces. This is a safer format to store in XML, and also |
| 40 | + makes sure there aren't invisible characters floating around in the labels. PR #1038. |
| 41 | +* Due to the changes to how drag and drop works, there are no longer any restrictions on folders |
| 42 | + and documents. Only root folders remain restricted in terms of moving. Root folders can only be |
| 43 | + reordered with the Move Up and Move Down commands. PR #1047. |
| 44 | +* The label for the highlighting of redundant spaces in the Preferences dialog has been updated to |
| 45 | + better reflect what it does. Issue #1043. PR #1046. |
| 46 | +* The New Project Wizard will now try to check if the path selected for the new project can |
| 47 | + actually be used before letting the user proceed to the next page. Issue #1058. PR #1062. |
| 48 | + |
| 49 | +**Internationalisation** |
| 50 | + |
| 51 | +* Dutch translations have been added by Martijn van der Kleijn (@mvdkleijn). PR #1027. |
| 52 | + |
| 53 | +**Functionality** |
| 54 | + |
| 55 | +* Documents that are missing in the project index when a project is opened are automatically |
| 56 | + re-indexed. This also handles cases where the cached index is missing. PR #1039. |
| 57 | + |
| 58 | +**Installation and Packaging** |
| 59 | + |
| 60 | +* Python 3.6 is no longer supported. PR #1004. |
| 61 | +* Ubuntu 18.04 packages will no longer be released, due to dropping Python 3.6. Issue #1005. |
| 62 | + PR #1014. |
| 63 | + |
| 64 | +**Project File Format** |
| 65 | + |
| 66 | +* The item nodes in the content section of the main project XML file have been compacted. It now |
| 67 | + consists of a main item node and meta and a name node. All settings have been made attributes of |
| 68 | + one of these three nodes, except the item label which is the text value of the name node. The |
| 69 | + file format version has been bumped to 1.4. Issue #995. PR #993. |
| 70 | +* Both Importance and Status flag values are now saved to the project file. This means if a |
| 71 | + document changes layout, the value is no longer lost. PR #1030. |
| 72 | + |
| 73 | +**Code Improvements** |
| 74 | + |
| 75 | +* The linting settings have been updated to select between mutually exclusive options in |
| 76 | + pycodestyle. PR #1014. |
| 77 | +* The Tokenizer class has been converted to an abstract base class. PR #1026. |
| 78 | +* The class handling Status and Importance flags has been completely rewritten. The flags are now |
| 79 | + handled using a unique random key as reference rather than relying on the text of the label |
| 80 | + itself. This makes it a lot easier to rename them as there is no need to update project items. |
| 81 | + PR #1034. |
| 82 | +* Many of the decisions regarding where items are allowed to belong has been delegated to the |
| 83 | + NWItem class that holds the item. Some is also handled by the NWTree class that holds the project |
| 84 | + tree. A new maintenance function in the NWTree class will also ensure that the meta data of an |
| 85 | + item is correct and up to date. This is especially important after an item has been moved, but is |
| 86 | + also checked when items are initially loaded. PRs #1031 and #1054. |
| 87 | +* Item handles are now generated using the standard library random number generator. The new |
| 88 | + handles have the same format as the old algorithm, so they are compatible. PR #1044. |
| 89 | + |
| 90 | +---- |
| 91 | + |
3 | 92 | ## Version 1.6.2 [2022-03-20] |
4 | 93 |
|
5 | 94 | ### Release Notes |
|
0 commit comments