Bump version to 1.2.3 and update changelog and release notes
This commit is contained in:
@@ -1,5 +1,40 @@
|
||||
# novelWriter Changelog
|
||||
|
||||
## Version 1.2.3 [2021-04-18]
|
||||
|
||||
### Release Notes
|
||||
|
||||
This patch fixes a bug where the user's word list (personal dictionary) was not saved properly for
|
||||
new projects. The added words were thus "forgotten" the next time the project was opened.
|
||||
|
||||
In addition, uninstall commands have been added to the main setup script to make it easier to clean
|
||||
up icons (Linux and Windows) and registry keys (Windows) if the user wishes to uninstall
|
||||
novelWriter.
|
||||
|
||||
### Detailed Changelog
|
||||
|
||||
**Bugfixes**
|
||||
|
||||
* Fixed an issue where the initial file for the user dictionary for a new project would not be
|
||||
created the first time a word was added to it. This caused the words the user added to the
|
||||
dictionary to not be loaded the next time the project was opened. Issue #733. PR #734.
|
||||
* Some of the `setup.py` commands could not run if the PyQt5 packages were missing due to an import
|
||||
command extracting the version number from the main `nw` package. This was not technically a bug
|
||||
as the choice to do it this way was made deliberately, but a function has been added to the
|
||||
`setup.py` script to allow reading the version number without having to import the `nw` package.
|
||||
PR #749.
|
||||
|
||||
**Installation**
|
||||
|
||||
* An `xdg-uninstall` option has been added to `setup.py` to uninstall the icons installed into the
|
||||
system by the `xdg-install` command. PR #736.
|
||||
* Likewise, a `win-uninstall` option has been added to `setup.py` to uninstall the icons installed
|
||||
into the system by the `win-install` command. Issue #743 and discussion #739. PR #749.
|
||||
* Improvements have also been made to the `setup_windows.bat` script, and a complementary
|
||||
`uninstall_windows.bat` has been added as well. PR #749.
|
||||
|
||||
----
|
||||
|
||||
## Version 1.2.2 [2021-03-28]
|
||||
|
||||
### Release Notes
|
||||
|
||||
+2
-2
@@ -25,9 +25,9 @@ copyright = "2018–2021, Veronica Berglyd Olsen"
|
||||
author = "Veronica Berglyd Olsen"
|
||||
|
||||
# The short X.Y version
|
||||
version = "1.2.2"
|
||||
version = "1.2.3"
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = "1.2.2"
|
||||
release = "1.2.3"
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
||||
+3
-3
@@ -62,9 +62,9 @@ __license__ = "GPLv3"
|
||||
__author__ = "Veronica Berglyd Olsen"
|
||||
__maintainer__ = "Veronica Berglyd Olsen"
|
||||
__email__ = "code@vkbo.net"
|
||||
__version__ = "1.2.2"
|
||||
__hexversion__ = "0x010202f0"
|
||||
__date__ = "2021-03-28"
|
||||
__version__ = "1.2.3"
|
||||
__hexversion__ = "0x010203f0"
|
||||
__date__ = "2021-04-18"
|
||||
__status__ = "Stable"
|
||||
__domain__ = "novelwriter.io"
|
||||
__url__ = "https://novelwriter.io"
|
||||
|
||||
@@ -3,6 +3,18 @@
|
||||
<body>
|
||||
|
||||
|
||||
<h2>Release Notes for 1.2.3</h2>
|
||||
<p><i>Released on 18 April 2021</i></p>
|
||||
<p>This patch fixes a bug where the user's word list (personal dictionary) was not saved properly
|
||||
for new projects. The added words were thus "forgotten" the next time the project was opened.</p>
|
||||
<p>In addition, uninstall commands have been added to the main setup script to make it easier to
|
||||
clean up icons (Linux and Windows) and registry keys (Windows) if the user wishes to uninstall
|
||||
novelWriter.</p>
|
||||
|
||||
<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<h2>Release Notes for 1.2.2</h2>
|
||||
<p><i>Released on 28 March 2021</i></p>
|
||||
<p>This patch release is a bug fix release addressing some inconsistencies and issues with the
|
||||
@@ -10,8 +22,6 @@ document header buttons when Focus Mode is active. The keyboard shortcuts for se
|
||||
should now also work in Focus Mode. In addition, the setup script for novelWriter has been improved
|
||||
when installing on Windows.</p>
|
||||
|
||||
<p><i>See also the <a href="https://github.com/vkbo/novelWriter/releases">Releases</a> page.</i></p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<h2>Release Notes for 1.2.1</h2>
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<novelWriterXML appVersion="1.2.2" hexVersion="0x010202f0" fileVersion="1.2" timeStamp="2021-03-27 22:31:03">
|
||||
<novelWriterXML appVersion="1.2.3" hexVersion="0x010203f0" fileVersion="1.2" timeStamp="2021-04-17 23:44:30">
|
||||
<project>
|
||||
<name>Sample Project</name>
|
||||
<title>Sample Project</title>
|
||||
<author>Jane Smith</author>
|
||||
<author>Jay Doh</author>
|
||||
<saveCount>943</saveCount>
|
||||
<saveCount>946</saveCount>
|
||||
<autoCount>161</autoCount>
|
||||
<editTime>47016</editTime>
|
||||
<editTime>47084</editTime>
|
||||
</project>
|
||||
<settings>
|
||||
<doBackup>False</doBackup>
|
||||
|
||||
Reference in New Issue
Block a user