Added release notes
This commit is contained in:
@@ -4,6 +4,76 @@
|
|||||||
|
|
||||||
### Release Notes
|
### Release Notes
|
||||||
|
|
||||||
|
This release is a beta release of 1.2. The release is intended for testing of new features. There
|
||||||
|
is a higher risk of encountering bugs in a beta release than a final release, so be extra careful
|
||||||
|
with backups if used on active writing projects.
|
||||||
|
|
||||||
|
#### The Build Novel Project Tool
|
||||||
|
|
||||||
|
The main changes in this release are to the Build Novel Project tool. The Open Document export, as
|
||||||
|
well as the Markdown export, is now handled entirely by code written for novelWriter. Previously,
|
||||||
|
these export features depended on the underlying Qt library's save routines connected to the
|
||||||
|
preview document shown in the build dialog. Using this method of export both meant that the content
|
||||||
|
of the document was dependent on the preview being generated, and that the exported document had
|
||||||
|
limited support for novelWriter-specific features and custom formatting. The new export tool should
|
||||||
|
generate a much better result, especially for the Open Document formats. The Open Document standard
|
||||||
|
is supported by Open Office, Libre Office, Google Docs, Microsoft Word, and probably a number of
|
||||||
|
other applications too. The Markdown export hasn't changed a lot, but should be a slight
|
||||||
|
improvement on the previous export feature.
|
||||||
|
|
||||||
|
These changes to the build tool also imply that the saving process is now independent of the
|
||||||
|
content of the preview window, meaning you don't have to rebuild the preview before saving, which
|
||||||
|
was previously the case. To make this more consistent, the PDF export option has been moved to the
|
||||||
|
print button as it is actually a print-to-file feature under the hood, not technically a proper PDF
|
||||||
|
export format. It is exactly the same as printing to file from the print preview dialog.
|
||||||
|
|
||||||
|
In addition to the changes to the export features, the Build Novel Project tool now also has
|
||||||
|
controls for line height, which applies to all rich text export formats, and the option to replace
|
||||||
|
unicode characters with appropriate html entities for html export.
|
||||||
|
|
||||||
|
#### Document Layout Automation
|
||||||
|
|
||||||
|
Among other changes in this release are a few improvements to the process of creating and changing
|
||||||
|
documents. When a new document is first created, the header is generated from the assigned label
|
||||||
|
and layout. For some document layouts, when the user changes the header level of the first header
|
||||||
|
of the document, the document layout setting is updated accordingly. This should reduce the need
|
||||||
|
for the user to maintain two ways of assigning the role of a given document. This automation only
|
||||||
|
applies to combinations of header level and current document layouts where there is no ambiguity.
|
||||||
|
For instance, changing the header level in a "Scene" document from level 3 to 2 changes the
|
||||||
|
document layout automatically to "Chapter". But changing the first header of a "Book" layout
|
||||||
|
document from 1 to 2 does not change the document's layout as the "Book" layout is a generic
|
||||||
|
document layout.
|
||||||
|
|
||||||
|
Keep in mind that novelWriter treats documents with layout "Book", "Chapter" and "Scene" exactly
|
||||||
|
the same during exports. The distinction is only meant as a way to indicate the purpose of a
|
||||||
|
document in the project tree. This new automation is meant to assist in keeping this information up
|
||||||
|
to date. The other layouts do have an effect on formatting during export and are generally left
|
||||||
|
alone.
|
||||||
|
|
||||||
|
#### The Session Timer and Idle Time
|
||||||
|
|
||||||
|
Another change that has been requested by a couple of users is to have the session timer in the
|
||||||
|
status bar stop counting when the user is inactive. This feature is optional, and can be controlled
|
||||||
|
from Preferences. The definition of idle here is either that the user is active in a different
|
||||||
|
application than novelWriter (loss of focus) or that the user has not made any changes to the
|
||||||
|
document open in the editor for a given amount of time. The time threshold is by default five
|
||||||
|
minutes, but can be altered in Preferences.
|
||||||
|
|
||||||
|
In addition, the idle time is also recorded in the session log, and can be viewed in the Writing
|
||||||
|
Statistics dialog and exported with the rest of the information. The idle time is recorder in the
|
||||||
|
logs regardless of whether the status bar clock displays this information or not.
|
||||||
|
|
||||||
|
#### Other Changes
|
||||||
|
|
||||||
|
A small additional feature added is also the ability to undo the last move of an item in the
|
||||||
|
project tree. The keyboard shortcut for this is `Ctrl+Shift+Z`, or it can be accessed from the
|
||||||
|
menu. The feature can only undo the last move, but it includes both documents moved to trash, moves
|
||||||
|
by up/down keypress or menu entries, and drag and drop moves.
|
||||||
|
|
||||||
|
Lastly, a new keyword has been added to mark characters in the story. The new keyword is intended
|
||||||
|
to tag a character as the focus character for a chapter or scene. This is useful for stories where
|
||||||
|
the point-of-view character and the focus character are different.
|
||||||
|
|
||||||
### Detailed Changelog
|
### Detailed Changelog
|
||||||
|
|
||||||
**New Features**
|
**New Features**
|
||||||
|
|||||||
@@ -2,28 +2,68 @@
|
|||||||
<html>
|
<html>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<h2>Release Notes for 1.1</h2>
|
<h2>Release Notes for 1.2 Beta 1</h2>
|
||||||
<p><i>Released on 7 February 2021</i></p>
|
<p><i>Released on 11 February 2021</i></p>
|
||||||
<p>The main change in this release is the addition of a new tab to the project tree on the left
|
<p>This release is a beta release of 1.2. The release is intended for testing of new features.
|
||||||
side of the main window. The regular project tree is now on a tab named "Project", while a new tab
|
There is a higher risk of encountering bugs in a beta release than a final release, so be extra
|
||||||
named "Novel" displays a simpler version of the information on the main "Outline" page. It lists
|
careful with backups if used on active writing projects.</p>
|
||||||
all the headers of the novel part of the project, as well as the word count and point-of-view
|
|
||||||
character of each section. This is an alternative way to navigate the novel part of the project.
|
<h3>The Build Novel Project Tool</h3>
|
||||||
The various tree views are now also kept better in sync when the user selects various documents and
|
<p>The main changes in this release are to the Build Novel Project tool. The Open Document export,
|
||||||
headers.</p>
|
as well as the Markdown export, is now handled entirely by code written for novelWriter.
|
||||||
<p>In addition, a new information dialog named "Project Details" has been added. It replaces the
|
Previously, these export features depended on the underlying Qt library's save routines connected
|
||||||
"Details" tab in "Project Settings", and adds more information about the novel part of the project.
|
to the preview document shown in the build dialog. Using this method of export both meant that the
|
||||||
In particular, a "Table of Contents" in the "Contents" tab displays a summary of the main parts
|
content of the document was dependent on the preview being generated, and that the exported
|
||||||
and chapters of the project, their total word counts, and an estimated page count. This was made in
|
document had limited support for novelWriter-specific features and custom formatting. The new
|
||||||
response to users asking for ways to estimate the total page count of the project. The page count
|
export tool should generate a much better result, especially for the Open Document formats. The
|
||||||
is estimated based on a words per page setting, which can be changed on the dialog window.</p>
|
Open Document standard is supported by Open Office, Libre Office, Google Docs, Microsoft Word, and
|
||||||
<p>Since the tabs below the project tree now add some extra room on the GUI, some convenient
|
probably a number of other applications too. The Markdown export hasn't changed a lot, but should
|
||||||
buttons have been added in the same area, with direct access to "Project Details", "Writing
|
be a slight improvement on the previous export feature.</p>
|
||||||
Statistics" and "Project Setting".</p>
|
<p>These changes to the build tool also imply that the saving process is now independent of the
|
||||||
<p>A few other minor changes have been made as well. The Preferences dialog has been improved with
|
content of the preview window, meaning you don't have to rebuild the preview before saving, which
|
||||||
clearer categories and hopefully better help text. Some new options have been added too. They allow
|
was previously the case. To make this more consistent, the PDF export option has been moved to the
|
||||||
syntax highlighting of multi-paragraph quotes. The highlighter can now optionally accept quotes to
|
print button as it is actually a print-to-file feature under the hood, not technically a proper PDF
|
||||||
be left "hanging", that is, no closing quote in the same paragraph.</p>
|
export format. It is exactly the same as printing to file from the print preview dialog.</p>
|
||||||
|
<p>In addition to the changes to the export features, the Build Novel Project tool now also has
|
||||||
|
controls for line height, which applies to all rich text export formats, and the option to replace
|
||||||
|
unicode characters with appropriate html entities for html export.</p>
|
||||||
|
|
||||||
|
<h3>Document Layout Automation</h3>
|
||||||
|
<p>Among other changes in this release are a few improvements to the process of creating and
|
||||||
|
changing documents. When a new document is first created, the header is generated from the assigned
|
||||||
|
label and layout. For some document layouts, when the user changes the header level of the first
|
||||||
|
header of the document, the document layout setting is updated accordingly. This should reduce the
|
||||||
|
need for the user to maintain two ways of assigning the role of a given document. This automation
|
||||||
|
only applies to combinations of header level and current document layouts where there is no
|
||||||
|
ambiguity. For instance, changing the header level in a "Scene" document from level 3 to 2 changes
|
||||||
|
the document layout automatically to "Chapter". But changing the first header of a "Book" layout
|
||||||
|
document from 1 to 2 does not change the document's layout as the "Book" layout is a generic
|
||||||
|
document layout.</p>
|
||||||
|
<p>Keep in mind that novelWriter treats documents with layout "Book", "Chapter" and "Scene" exactly
|
||||||
|
the same during exports. The distinction is only meant as a way to indicate the purpose of a
|
||||||
|
document in the project tree. This new automation is meant to assist in keeping this information up
|
||||||
|
to date. The other layouts do have an effect on formatting during export and are generally left
|
||||||
|
alone.</p>
|
||||||
|
|
||||||
|
<h3>The Session Timer and Idle Time</h3>
|
||||||
|
<p>Another change that has been requested by a couple of users is to have the session timer in the
|
||||||
|
status bar stop counting when the user is inactive. This feature is optional, and can be controlled
|
||||||
|
from Preferences. The definition of idle here is either that the user is active in a different
|
||||||
|
application than novelWriter (loss of focus) or that the user has not made any changes to the
|
||||||
|
document open in the editor for a given amount of time. The time threshold is by default five
|
||||||
|
minutes, but can be altered in Preferences.</p>
|
||||||
|
<p>In addition, the idle time is also recorded in the session log, and can be viewed in the Writing
|
||||||
|
Statistics dialog and exported with the rest of the information. The idle time is recorder in the
|
||||||
|
logs regardless of whether the status bar clock displays this information or not.</p>
|
||||||
|
|
||||||
|
<h3>Other Changes</h3>
|
||||||
|
<p>A small additional feature added is also the ability to undo the last move of an item in the
|
||||||
|
project tree. The keyboard shortcut for this is <b>Ctrl+Shift+Z</b>, or it can be accessed from the
|
||||||
|
menu. The feature can only undo the last move, but it includes both documents moved to trash, moves
|
||||||
|
by up/down keypress or menu entries, and drag and drop moves.</p>
|
||||||
|
<p>Lastly, a new keyword has been added to mark characters in the story. The new keyword is
|
||||||
|
intended to tag a character as the focus character for a chapter or scene. This is useful for
|
||||||
|
stories where the point-of-view character and the focus character are different.</p>
|
||||||
|
|
||||||
<p><i>The full changelog is available
|
<p><i>The full changelog is available
|
||||||
<a href="https://github.com/vkbo/novelWriter/blob/main/CHANGELOG.md">here</a>.</i></p>
|
<a href="https://github.com/vkbo/novelWriter/blob/main/CHANGELOG.md">here</a>.</i></p>
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
<!DOCTYPE html public "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||||
|
<html>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<h2>Release Notes for 1.1</h2>
|
||||||
|
<p><i>Released on 7 February 2021</i></p>
|
||||||
|
<p>The main change in this release is the addition of a new tab to the project tree on the left
|
||||||
|
side of the main window. The regular project tree is now on a tab named "Project", while a new tab
|
||||||
|
named "Novel" displays a simpler version of the information on the main "Outline" page. It lists
|
||||||
|
all the headers of the novel part of the project, as well as the word count and point-of-view
|
||||||
|
character of each section. This is an alternative way to navigate the novel part of the project.
|
||||||
|
The various tree views are now also kept better in sync when the user selects various documents and
|
||||||
|
headers.</p>
|
||||||
|
<p>In addition, a new information dialog named "Project Details" has been added. It replaces the
|
||||||
|
"Details" tab in "Project Settings", and adds more information about the novel part of the project.
|
||||||
|
In particular, a "Table of Contents" in the "Contents" tab displays a summary of the main parts
|
||||||
|
and chapters of the project, their total word counts, and an estimated page count. This was made in
|
||||||
|
response to users asking for ways to estimate the total page count of the project. The page count
|
||||||
|
is estimated based on a words per page setting, which can be changed on the dialog window.</p>
|
||||||
|
<p>Since the tabs below the project tree now add some extra room on the GUI, some convenient
|
||||||
|
buttons have been added in the same area, with direct access to "Project Details", "Writing
|
||||||
|
Statistics" and "Project Setting".</p>
|
||||||
|
<p>A few other minor changes have been made as well. The Preferences dialog has been improved with
|
||||||
|
clearer categories and hopefully better help text. Some new options have been added too. They allow
|
||||||
|
syntax highlighting of multi-paragraph quotes. The highlighter can now optionally accept quotes to
|
||||||
|
be left "hanging", that is, no closing quote in the same paragraph.</p>
|
||||||
|
|
||||||
|
<p><i>The full changelog is available
|
||||||
|
<a href="https://github.com/vkbo/novelWriter/blob/main/CHANGELOG.md">here</a>.</i></p>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="1.2a0" hexVersion="0x010200a0" fileVersion="1.2" timeStamp="2021-02-10 21:46:25">
|
<novelWriterXML appVersion="1.2b1" hexVersion="0x010200b1" fileVersion="1.2" timeStamp="2021-02-11 17:04:25">
|
||||||
<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>935</saveCount>
|
<saveCount>936</saveCount>
|
||||||
<autoCount>161</autoCount>
|
<autoCount>161</autoCount>
|
||||||
<editTime>46219</editTime>
|
<editTime>46791</editTime>
|
||||||
</project>
|
</project>
|
||||||
<settings>
|
<settings>
|
||||||
<doBackup>False</doBackup>
|
<doBackup>False</doBackup>
|
||||||
|
|||||||
Reference in New Issue
Block a user