This release of novelWriter has a number of feature updates, bringing it one step closer to initial
feature completeness for a version 1.0 release.
In the pipeline for 1.0 is a completely new export tool with improved and added options, including
printing. Further improvements are also planned for the new Outline View added in this version.
When these additions are completed, novelWriter will start moving towards a 1.0 release via release
candidates. I'm hoping to wrap up this year and a half long stage of initial development soon so
that I can spend more time using it than creating it.
**Additional thanks** to countjocular for PRs 173 and 174, and to johnblommers for all the
helpful feedback and issue reports for the new features added in this, and previous releases.
Notable Changes
* The Timeline View dialog is now gone. Instead, the main window area has been split into two tabs.
The first, the "Editor", contains the Document Editor and Viewer panels. The second, the
"Outline", contains a new Outline View of the novel part of the project, broken down into a tree
view of all the project headings. All meta data associated with each part of the novel can be
viewed in further columns, selectable from a drop down menu by right-clicking the header. These
columns can also be rearranged.
* Both the Editor and Viewer panels now have a header showing the document label as seen in the
Project Tree. Optionally, the full path of the document can be viewed. Clicking this header will
select the document in the Project Tree, making it easier to find where the document belongs in
the structure.
* A project load dialog has been added when novelWriter is launched. It will show you your recently
opened projects, let you browse for those that aren't listed, or create a new project. More
features will be added to this dialog later on.
* The Preferences dialog has been completely redesigned to make it easier to find the various
settings and understand what they do.
Detailed Changelog
**Features**
* An Outline View panel has been added to the main GUI window. The Outline View can show all meta
data associated with a novel heading in a column-wise manner. The Timeline View feature has been
dropped in favour of the new Outline View. PRs 140, 181 and 191.
* A synopsis feature has been added. It allows a comment to be flagged as a synopsis comment to be
picked up by the indexer and displayed in the GUI. Currently available in the Outline View.
PRs 140 and 191.
* A document title bar has been added to the top of the editor and viewer. These show the document
label as seen in the project tree. Optionally, the full document path can be shown. Clicking the
title will highlight the document in the project tree. PRs 192 and 194.
**User Interface**
* A Project Load dialog has been added, which pops up when novelWriter is launched. It allows for
opening other recent projects, browse for projects, or start a new project. This replaces the
former Open and New Project features, as well as the Recent Projects menu entry. PRs 177 and
183.
* The command line switches for debugging have been changed a bit. Higher level of debugging now
includes the lower levels, preventing the need for specifying for instance both debug and verbose
debug. PR 182.
* The Preference dialog has been completely redesigned. The options are now displayed vertically,
in four tabs instead of two, and with more informative text explaining what they do. Some
previously unconnected options have also been added. PR 193.
**Bug Fixes**
* The `install.py` script has been fixed to reflect changes in storage location of the themes.
PR 174.
* Fixed a bug with launching Preferences without Enchant spell checking installed. PR 190.
* A minor issue with running backups with no backup path set has been fixed. The backups would be
written into the source folder, or wherever novelWriter was launched from, which is a very messy
fallback. PR 195.
**Documentation**
* Some outdated links and a number of typos and spelling errors have been corrected. PR 173.
* Documentation has been brought up to date with the current set of features of novelWriter.
PR 202.
**Project Structure**
* Opening a project now writes a lock file to alert the user if the same project is opened more
than once. The warning can be ignored if the user wants to proceed. PR 179.
* Two new meta tags have been added to the project file to store a counter for the number of times
the project has been saved or autosaved. The meta information is not currently displayed in the
GUI, but could be added to an About Project dialog in the future. The PR also adds checks to
ensure XML attributes exist before attempting to load them. PR 180.
* A single line of document meta data is now written to the top of document files. They mainly
serve to identify the file content if one opens the file directly in an external editor, but also
assist the Orphaned Files tool to identify the files when they are found, but missing from the
project tree. PRs 200 and 201.
**Code Improvements**
* For the Outline View, the `NWIndex` class has been restructure and extensively rewritten. It is
more fault tolerant, and will automatically rebuild a corrupt index loaded from cache. PR 140.
* The way that dialog options (which options were selected last time a dialog was open) has been
rewritten. All data is now stored in a single JSON file in the project meta folder. PR 175.
* Since the config class is instanciated before the GUI, error reporting to the user was tricky. An
error cache has now been added to allow non-critical errors to be displayed after the GUI is
built. PR 176.
* All source files now have the minimal GPLv3 license note at the top. PR 188.
* Also added license info to the command line output. PR 189.
* Large chunks of the code has been restructured. Mainly the non-GUI parts, which have mostly been
merged into a new `core` folder. Several classes which are only used by a single object have been
merged into the same file, reducing the total number of source files a bit. PR 199.
----