Release 1.5 (#888)
* Bump version to 1.5 and update changelog and release notes * Update changelog and release notes
This commit is contained in:
committed by
GitHub
parent
cf83b6572e
commit
18cadf8db5
+40
-15
@@ -1,25 +1,24 @@
|
||||
# novelWriter Changelog
|
||||
|
||||
## Version 1.5 RC 1 [2021-09-10]
|
||||
## Version 1.5 [2021-09-19]
|
||||
|
||||
### Release Notes
|
||||
|
||||
This is a release candidate 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 make frequent
|
||||
backups.
|
||||
This release reduces the number of document layouts from eight to two. The full list of changes is
|
||||
described in the "Novel Document Layouts" section below.
|
||||
|
||||
From this release on, Debian packages will be provided for Ubuntu and Debian users. A new
|
||||
[PPA](https://launchpad.net/~vkbo/+archive/ubuntu/novelwriter) has also been created. Adding this
|
||||
will allow users to install and update novelWriter automatically on Ubuntu and Debian.
|
||||
|
||||
Release 1.5 introduces a new project file format, which has been given a file format version 1.3.
|
||||
The project file and index is updated automatically when you open the project, which means you can
|
||||
no longer open it in an older version of novelWriter.
|
||||
Due to this change, the main project file for your projects will need to be updated when you first
|
||||
open them in novelWriter 1.5. This is done automatically. The index is updated as well. When this
|
||||
conversion is done, you can no longer open the project in an older version of novelWriter.
|
||||
|
||||
You may also have to make a handful of changes in your novel documents as novelWriter will not make
|
||||
any automated changes to your actual text. However, the changes are minimal and in any case only
|
||||
affects the way your manuscript looks like when exported via the Build Novel Project tool. The
|
||||
details are described below.
|
||||
affects the way your manuscript looks like when exported via the Build Novel Project tool. These
|
||||
details are also described below.
|
||||
|
||||
From this release on, Debian packages will be provided for Mint, Ubuntu and Debian users. A new
|
||||
[PPA](https://launchpad.net/~vkbo/+archive/ubuntu/novelwriter) has also been created. This allows
|
||||
users to install and update novelWriter automatically on these Linux distros.
|
||||
|
||||
#### Novel Document Layouts
|
||||
|
||||
@@ -33,7 +32,7 @@ With this release, all the seven layouts for novel documents have been merged in
|
||||
called simply "Novel Document". The other layout, "Project Note", remains unchanged. The
|
||||
functionality provided by the various novel layouts have been implemented in other ways, and a few
|
||||
new formatting codes have been added to accommodate the formatting functionality lost with the
|
||||
removal of the layouts. They are all available in the Format and Insert menu.
|
||||
removal of the layouts. They are all available in the Format and Insert menus.
|
||||
|
||||
The changes you need to make to your project should be limited to altering a handful of titles and
|
||||
maybe insert a page break code here and there. The only title formats you need to update are those
|
||||
@@ -90,7 +89,33 @@ Finally, a PDF version of the documentation should now be shipped with your inst
|
||||
is available, a "User Manual (PDF)" option should be visible in the Help menu. This should give you
|
||||
access to the documentation also when you don't have an active internet connection.
|
||||
|
||||
_These Release Notes also include the changes from 1.5 Beta 1 and Beta 2._
|
||||
_These Release Notes also include the changes from 1.5 Beta 1, Beta 2, and RC 1._
|
||||
|
||||
### Detailed Changelog
|
||||
|
||||
**Installation and Packaging**
|
||||
|
||||
* Most packages built by the setup script have a sha256sum file generated alongside it. PR #886.
|
||||
* Snapshot packages version numbers have been fixed so they work properly with the PPA. PR #887.
|
||||
|
||||
**Internationalisation**
|
||||
|
||||
* The French translation has been updated by @jyhelle. PR #901.
|
||||
|
||||
**Code Improvements**
|
||||
|
||||
* Removed some redundant and leftover code in the project class associated with dialog boxes during
|
||||
conversion and checking of project file formats. PR #889.
|
||||
|
||||
----
|
||||
|
||||
## Version 1.5 RC 1 [2021-09-10]
|
||||
|
||||
### Release Notes
|
||||
|
||||
This is a release candidate 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 make frequent
|
||||
backups.
|
||||
|
||||
### Detailed Changelog
|
||||
|
||||
|
||||
+1
-1
@@ -21,7 +21,7 @@ author = "Veronica Berglyd Olsen"
|
||||
# The short X.Y version
|
||||
version = "1.5"
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = "1.5-rc1"
|
||||
release = "1.5"
|
||||
|
||||
# -- General Configuration ---------------------------------------------------
|
||||
|
||||
|
||||
@@ -61,9 +61,9 @@ __license__ = "GPLv3"
|
||||
__author__ = "Veronica Berglyd Olsen"
|
||||
__maintainer__ = "Veronica Berglyd Olsen"
|
||||
__email__ = "code@vkbo.net"
|
||||
__version__ = "1.5-rc1"
|
||||
__hexversion__ = "0x010500c1"
|
||||
__date__ = "2021-09-10"
|
||||
__version__ = "1.5"
|
||||
__hexversion__ = "0x010500f0"
|
||||
__date__ = "2021-09-19"
|
||||
__status__ = "Stable"
|
||||
__domain__ = "novelwriter.io"
|
||||
__url__ = "https://novelwriter.io"
|
||||
|
||||
@@ -2,23 +2,21 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<h2>Release Notes for 1.5 RC 1</h2>
|
||||
<p><i>Released on 10 September 2021</i></p>
|
||||
<h2>Release Notes for 1.5</h2>
|
||||
<p><i>Released on 19 September 2021</i></p>
|
||||
|
||||
<p>This is a release candidate 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 make frequent
|
||||
backups.</p>
|
||||
<p>From this release on, Debian packages will be provided for Ubuntu and Debian users. A new
|
||||
<a href="https://launchpad.net/~vkbo/+archive/ubuntu/novelwriter">PPA</a> has also been created.
|
||||
Adding this will allow users to install and update novelWriter automatically on Ubuntu and Debian.
|
||||
</p>
|
||||
<p>Release 1.5 introduces a new project file format, which has been given a file format version
|
||||
1.3. The project file and index is updated automatically when you open the project, which means you
|
||||
can no longer open it in an older version of novelWriter.</p>
|
||||
<p>This release reduces the number of document layouts from eight to two. The full list of changes
|
||||
is described in the "Novel Document Layouts" section below.</p>
|
||||
<p>Due to this change, the main project file for your projects will need to be updated when you
|
||||
first open them in novelWriter 1.5. This is done automatically. The index is updated as well. When
|
||||
this conversion is done, you can no longer open the project in an older version of novelWriter.</p>
|
||||
<p>You may also have to make a handful of changes in your novel documents as novelWriter will not
|
||||
make any automated changes to your actual text. However, the changes are minimal and in any case
|
||||
only affects the way your manuscript looks like when exported via the Build Novel Project tool. The
|
||||
details are described below.</p>
|
||||
only affects the way your manuscript looks like when exported via the Build Novel Project tool.
|
||||
These details are also described below.</p>
|
||||
<p>From this release on, Debian packages will be provided for Mint, Ubuntu and Debian users. A new
|
||||
<a href="https://launchpad.net/~vkbo/+archive/ubuntu/novelwriter">PPA</a> has also been created.
|
||||
This allows users to install and update novelWriter automatically on these Linux distros.</p>
|
||||
|
||||
<h4>Novel Document Layouts</h4>
|
||||
<p>The main change in this release is the significant simplification of document layouts.
|
||||
@@ -30,13 +28,13 @@ whether a specific document was a partition, chapter or scene.</p>
|
||||
layout called simply "Novel Document". The other layout, "Project Note", remains unchanged. The
|
||||
functionality provided by the various novel layouts have been implemented in other ways, and a few
|
||||
new formatting codes have been added to accommodate the formatting functionality lost with the
|
||||
removal of the layouts. They are all available in the Format and Insert menu.</p>
|
||||
removal of the layouts. They are all available in the Format and Insert menus.</p>
|
||||
<p>The changes you need to make to your project should be limited to altering a handful of titles
|
||||
and maybe insert a page break code here and there. The only title formats you need to update are
|
||||
those for the main novel title and for your unnumbered chapters, if you have any.</p>
|
||||
<p>Novel titles need to be altered from "# Novel Title" to "#! Novel Title" and unnumbered chapters
|
||||
from "## Chapter Name" or "## *Chapter Name" to "##! Chapter Name". That is all. For inserting page
|
||||
breaks, you can add a single line with the command "[NEW PAGE]"" where you want the break to be
|
||||
breaks, you can add a single line with the command "[NEW PAGE]" where you want the break to be
|
||||
inserted. As before, page breaks are automatically inserted in front of all partition and chapter
|
||||
titles.</p>
|
||||
<p>You will find these changes described in more detail in the documentation in the
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<novelWriterXML appVersion="1.5-rc1" hexVersion="0x010500c1" fileVersion="1.3" timeStamp="2021-09-10 18:37:11">
|
||||
<novelWriterXML appVersion="1.5" hexVersion="0x010500f0" fileVersion="1.3" timeStamp="2021-09-19 00:04:16">
|
||||
<project>
|
||||
<name>Sample Project</name>
|
||||
<title>Sample Project</title>
|
||||
<author>Jane Smith</author>
|
||||
<author>Jay Doh</author>
|
||||
<saveCount>1255</saveCount>
|
||||
<saveCount>1256</saveCount>
|
||||
<autoCount>198</autoCount>
|
||||
<editTime>61530</editTime>
|
||||
<editTime>61899</editTime>
|
||||
</project>
|
||||
<settings>
|
||||
<doBackup>False</doBackup>
|
||||
|
||||
Reference in New Issue
Block a user