Novelwriter

Latest version: v2.6.3

Safety actively analyzes 723717 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 5 of 17

2.0.2

Release Notes

This is a patch release that fixes a minor issues with syntax highlighting not updating when the
highlighting preferences were changed. It also fixes an issue that broke the FreeBSD release.

Detailed Changelog

**Bugfixes**

* Fixed an issue where changing the Highlighting Preferences for highlighting quotes, emphasis, and
multiple or trailing spaces would not reload the syntax highlighter in the editor. The changes
would only take effect after restarting the app. Issue 1274. PR 1278.

**Packaging and Installation**

* The 2.0.1 release was broken on Linux, but was fixed and the packages rebuilt. However, the
FreeBSD port was still broken. This release fixes this issue. Issue 1277. PR 1272.

----

2.0.1

Release Notes

This is a patch release that fixes a minor issues with loading custom GUI themes that haven't been
updated to include the icon theme setting. The patch also updates the French translation.

Detailed Changelog

**Bugfixes**

* Fixed an issue where starting the app with a custom GUI theme enabled would not load any icons at
all if the `icontheme` setting isn't specified. The app now loads the `typicons_light` theme by
default if no icon theme is set. Issue 1263. PR 1264.

**Internationalisation**

* The French translations has now been completed by aaribaud. PR 1265.

----

2.0

**Note:** The 1.7 release cycle was renamed 2.0 on 2022-10-06. See 1144.

Release Notes

This is a beta release of the next release version, and is intended for testing purposes. Please be
careful when using this version on live writing projects, and make sure you take frequent backups.

Please check the changelog for an overview of changes. The full release notes will be added to the
final release.

Detailed Changelog

**Features**

* A simple tool to add Lorem Ipsum placeholder text has been added to the Insert menu. PR 1028.
* Status and Importance flags can now be reorganised in Project Settings. Issue 1035. PR 1040.
* It is now possible to create multiple Root Folders of the same kind. This makes it possible to
add multiple Novel root folders in a project, for instance. Issue 967. PR 1031.
* All documents can now be dragged and dropped anywhere in the project tree. The document layout
may be converted in the process. PR 1031.
* Documents in the project tree can now have other documents as child documents. Issue 1002.
PR 1047.
* Folders in the project tree that are not empty, can now be moved to trash. PR 1048.
* Empty folders are deleted on request, and not moved to trash. Issue 1052. PR 1055.

**User Interface**

* The tabs under the project tree and to the right of the main window have been replaced with a
toolbar on the left hand side. The toolbar has a set of buttons to change view between Project,
Novel and Outline. The three buttons that were available under the project tree have been moved
to the bottom of the new toolbar. Issue 1056. PR 1057.
* When a document changes from a project document to a note, and back again, the Status flag
setting is preserved. Previously, the Importance setting would overwrite it during the
conversion. PR 1030.
* Item labels, Status labels, and other labels on the GUI are now run through a "simplify" function
before being accepted. This functions strips out all white spaces and consecutive white spaces
and replace them with single plain white spaces. This is a safer format to store in XML, and also
makes sure there aren't invisible characters floating around in the labels. PR 1038.
* Due to the changes to how drag and drop works, there are no longer any restrictions on folders
and documents. Only root folders remain restricted in terms of moving. Root folders can only be
reordered with the Move Up and Move Down commands. PR 1047.
* The label for the highlighting of redundant spaces in the Preferences dialog has been updated to
better reflect what it does. Issue 1043. PR 1046.
* The New Project Wizard will now try to check if the path selected for the new project can
actually be used before letting the user proceed to the next page. Issue 1058. PR 1062.

**Internationalisation**

* Dutch translations have been added by Martijn van der Kleijn (mvdkleijn). PR 1027.

**Functionality**

* Documents that are missing in the project index when a project is opened are automatically
re-indexed. This also handles cases where the cached index is missing. PR 1039.

**Installation and Packaging**

* Python 3.6 is no longer supported. PR 1004.
* Ubuntu 18.04 packages will no longer be released, due to dropping Python 3.6. Issue 1005.
PR 1014.

**Project File Format**

* The item nodes in the content section of the main project XML file have been compacted. It now
consists of a main item node and meta and a name node. All settings have been made attributes of
one of these three nodes, except the item label which is the text value of the name node. The
file format version has been bumped to 1.4. Issue 995. PR 993.
* Both Importance and Status flag values are now saved to the project file. This means if a
document changes layout, the value is no longer lost. PR 1030.

**Code Improvements**

* The linting settings have been updated to select between mutually exclusive options in
pycodestyle. PR 1014.
* The Tokenizer class has been converted to an abstract base class. PR 1026.
* The class handling Status and Importance flags has been completely rewritten. The flags are now
handled using a unique random key as reference rather than relying on the text of the label
itself. This makes it a lot easier to rename them as there is no need to update project items.
PR 1034.
* Many of the decisions regarding where items are allowed to belong has been delegated to the
NWItem class that holds the item. Some is also handled by the NWTree class that holds the project
tree. A new maintenance function in the NWTree class will also ensure that the meta data of an
item is correct and up to date. This is especially important after an item has been moved, but is
also checked when items are initially loaded. PRs 1031 and 1054.
* Item handles are now generated using the standard library random number generator. The new
handles have the same format as the old algorithm, so they are compatible. PR 1044.

----

1.6.6

Release Notes

This is a bugfix release that fixes a minor issues with following tags in the editor. It is now
possible to also follow tags that contain spaces.

Detailed Changelog

**Bugfixes**

* Fix a bug where only the word under the cursor would be looked up when the user tried to follow a
tag in the editor. The lookup function now uses the same parser for the ``-line as the syntax
highlighter does, so they should behave consistently. Issue 1195. PR 1209.

----

1.6.5

Release Notes

This is a bugfix release that fixes a few minor issues. The idle time for new projects would be
artificially inflated as the clock was not reset when the project was first created. This only
affects the first entry in the writing statistics. A scaling issue for the Preferences dialog has
also been fixed. It only affected screens with UI scaling enabled. Lastly, typing `Shift+Enter` in
the text editor now creates a regular line break instead of a special line separator. The line
separator serves no purpose in plain text, and was producing inconsistencies in how text is
processed and displayed.

Detailed Changelog

**Bugfixes**

* Fixed a bug where the idle time was not properly zeroed when a new project was generated after
the wizard was closed. The idle time would be calculated from the time the previous project
closed, thus inflating the value. Issue 1149. PR 1159.
* Fixes an issue where the window size of the Preferences dialog would have the GUI scaling factor
applied twice when the dialog was closed, resulting in the dialog growing in size each time it is
opened. Issue 989. PR 1159.

**Other Changes**

* The text editor no longer creates a Unicode line separator (U+2028) when the user presses
`Shift+Enter`. The line separator serves no purpose in a plain text editor, and the code in
general treats them as regular line break. This caused the line separator to display differently
before and after saving. The line separator character is now automatically replaced by a
paragraph separator. Issue 1150. PR 1159.

----

1.6.4

Release Notes

This is a bugfix release that fixes a critical bug in the insert non-breaking spaces feature. It
basically no longer worked in the 1.6.3 release. This release also fixes a minor issue where the
text cursor sometimes disappears when reaching the right-hand edge of the text editor window.

Detailed Changelog

**Bugfixes**

* Fixed a bug in the auto-replace feature of the editor that caused a crash when using the insert
non-breaking spaces feature was used. Issue 1118. PR 1120.
* Back ported a bugfix from 1.7 RC1 that resolves an issue with the text cursor sometimes
disappearing at the right-hand edge of the text editor. Issues 1112 and 1119. PR 1120.

----

Page 5 of 17

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.