Updated release notes
This commit is contained in:
+24
-1
@@ -4,11 +4,34 @@
|
||||
|
||||
### Release Notes
|
||||
|
||||
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.
|
||||
|
||||
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.
|
||||
|
||||
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".
|
||||
|
||||
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.
|
||||
|
||||
### Detailed Changelog
|
||||
|
||||
**Bugfixes**
|
||||
|
||||
* A missing `None` check in the details panel below the project tree was missing, resulting in an
|
||||
* A `None` check in the details panel below the project tree was missing, resulting in an
|
||||
occasional error message being printed to the logging output. The error was otherwise handles, so
|
||||
this is mainly a fix to prevent the error message. PR #639.
|
||||
|
||||
|
||||
+1
-1
@@ -63,7 +63,7 @@ __license__ = "GPLv3"
|
||||
__author__ = "Veronica Berglyd Olsen"
|
||||
__maintainer__ = "Veronica Berglyd Olsen"
|
||||
__email__ = "code@vkbo.net"
|
||||
__version__ = "1.1rc1"
|
||||
__version__ = "1.1"
|
||||
__hexversion__ = "0x010100f0"
|
||||
__date__ = "2021-02-07"
|
||||
__status__ = "Testing"
|
||||
|
||||
@@ -2,25 +2,24 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<h2>Release Notes for 1.1 RC1</h2>
|
||||
<p><i>Released on 31 January 2021</i></p>
|
||||
<p>This is a preview and test release for version 1.1.</p>
|
||||
<p>A few new features have been added. The primary change is that the project tree on the left side
|
||||
of the main window now has two tabs. The regular project tree is now on a tab named "Project",
|
||||
while a new tab "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>
|
||||
<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 the word count, and can be changed on the dialog window.</p>
|
||||
<p>Since the tabs below the project tree now adds some extra room on the GUI, some convenient
|
||||
buttons have been added, with direct access to "Project Details", "Writing Statistics" and "Project
|
||||
Setting".</p>
|
||||
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
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<novelWriterXML appVersion="1.1rc1" hexVersion="0x010100c1" fileVersion="1.2" timeStamp="2021-01-31 18:12:05">
|
||||
<novelWriterXML appVersion="1.1" hexVersion="0x010100f0" fileVersion="1.2" timeStamp="2021-02-07 19:45:18">
|
||||
<project>
|
||||
<name>Sample Project</name>
|
||||
<title>Sample Project</title>
|
||||
<author>Jane Smith</author>
|
||||
<author>Jay Doh</author>
|
||||
<saveCount>874</saveCount>
|
||||
<saveCount>878</saveCount>
|
||||
<autoCount>157</autoCount>
|
||||
<editTime>42533</editTime>
|
||||
<editTime>42612</editTime>
|
||||
</project>
|
||||
<settings>
|
||||
<doBackup>False</doBackup>
|
||||
|
||||
Reference in New Issue
Block a user