@@ -1,5 +1,62 @@
|
|||||||
# novelWriter Change Log
|
# novelWriter Change Log
|
||||||
|
|
||||||
|
## Version 1.0.3 [2021-01-24]
|
||||||
|
|
||||||
|
### Release Notes
|
||||||
|
|
||||||
|
This patch release fixes a minor bug sometimes encountered when running novelWriter from command
|
||||||
|
line on Windows. In addition, the Solarized Dark and Solarized Light themes have been added to the
|
||||||
|
selection of GUI and syntax themes by a user contribution.
|
||||||
|
|
||||||
|
The main change in this release is to the install scripts and the documentation related to
|
||||||
|
installing and running novelWriter. The primary change is a different method of packaging the app
|
||||||
|
for Windows. Instead of building an `.exe` file, the new setup instead builds a runnable zip file
|
||||||
|
`.pyz`. The executable would often be mistakenly flagged by virus control software due to the
|
||||||
|
packaging tools. This is a known problem with pyinstaller and similar tools, but such warnings are
|
||||||
|
always concerning even if they are false positives.
|
||||||
|
|
||||||
|
### Detailed Changelog
|
||||||
|
|
||||||
|
**Bug Fixes**
|
||||||
|
|
||||||
|
* Fix crash when starting novelWriter from command line on Windows from a different mounted drive
|
||||||
|
than where it is installed. This was caused by a relative path lookup that defaulted to the wrong
|
||||||
|
current directory. This works on Linux/macOS which have a common root path, but not on Windows.
|
||||||
|
Issue #581, PR #587.
|
||||||
|
|
||||||
|
**User Interface**
|
||||||
|
|
||||||
|
* Added Solarized Dark and Solarized Light GUI and syntax themes. PR #578 by @nullbasis.
|
||||||
|
* The Typewriter Scroll Mode now works better in combination with the Scroll Past End feature. The
|
||||||
|
scroll mode still only works when there is actually any document to scroll into, but previously
|
||||||
|
it would also not work until the total length of the document reached 40% of the height of the
|
||||||
|
editor window. This was quite confusing. This limit is now reduced to 10%, which means that as
|
||||||
|
long as the Scroll Past End option is enabled, the Typewriter Scroll will always work according
|
||||||
|
to its settings. Issue #589, PR #593.
|
||||||
|
|
||||||
|
**Installation**
|
||||||
|
|
||||||
|
* Merged the `make.py` script into `setup.py`. PR #584.
|
||||||
|
* Added a second way to build distributable packages of novelWriter for Windows. The new method
|
||||||
|
does not use any of the current package tools that produce a Windows executable of the app. These
|
||||||
|
packages tend to cause false virus warnings. This new method uses the Python tool `zipapp` to
|
||||||
|
bundle novelWriter as an executable `.pyz` file, and adds Python embeddable and library
|
||||||
|
dependencies into the same folder. The folder itself can be distributed as-is, or a Windows
|
||||||
|
installer executable can be generated with `setup.py setup-pyz`. Issue #580, PR #584.
|
||||||
|
|
||||||
|
**Documentation**
|
||||||
|
|
||||||
|
* Updated documentation, main README and Contribution Guide to make them more consistent and to
|
||||||
|
improve installation instructions. Based on issue #586 and input from @mgrhm. PR #592.
|
||||||
|
|
||||||
|
**Other CHanges**
|
||||||
|
|
||||||
|
* The HTML generator now adds line breaks after `div` blocks used to wrap tag/reference lines. This
|
||||||
|
makes the output easier to process by scripts, but has no impact on browser rendering and import
|
||||||
|
into other applications. PR #597.
|
||||||
|
|
||||||
|
----
|
||||||
|
|
||||||
## Version 1.0.2 [2021-01-19]
|
## Version 1.0.2 [2021-01-19]
|
||||||
|
|
||||||
### Release Notes
|
### Release Notes
|
||||||
|
|||||||
+2
-2
@@ -25,9 +25,9 @@ copyright = "2018–2021, Veronica Berglyd Olsen"
|
|||||||
author = "Veronica Berglyd Olsen"
|
author = "Veronica Berglyd Olsen"
|
||||||
|
|
||||||
# The short X.Y version
|
# The short X.Y version
|
||||||
version = "1.0.2"
|
version = "1.0.3"
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
release = "1.0.2"
|
release = "1.0.3"
|
||||||
|
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
|||||||
+3
-3
@@ -63,9 +63,9 @@ __license__ = "GPLv3"
|
|||||||
__author__ = "Veronica Berglyd Olsen"
|
__author__ = "Veronica Berglyd Olsen"
|
||||||
__maintainer__ = "Veronica Berglyd Olsen"
|
__maintainer__ = "Veronica Berglyd Olsen"
|
||||||
__email__ = "code@vkbo.net"
|
__email__ = "code@vkbo.net"
|
||||||
__version__ = "1.0.2"
|
__version__ = "1.0.3"
|
||||||
__hexversion__ = "0x010002f0"
|
__hexversion__ = "0x010003f0"
|
||||||
__date__ = "2021-01-19"
|
__date__ = "2021-01-24"
|
||||||
__status__ = "Stable"
|
__status__ = "Stable"
|
||||||
__domain__ = "novelwriter.io"
|
__domain__ = "novelwriter.io"
|
||||||
__url__ = "https://novelwriter.io"
|
__url__ = "https://novelwriter.io"
|
||||||
|
|||||||
@@ -2,15 +2,29 @@
|
|||||||
<html>
|
<html>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<h2>Release Notes for 1.0.3</h2>
|
||||||
|
<p><i>Released on 24 January 2021</i></p>
|
||||||
|
<p>This patch release fixes a minor bug sometimes encountered when running novelWriter from command
|
||||||
|
line on Windows. In addition, the Solarized Dark and Solarized Light themes have been added to the
|
||||||
|
selection of GUI and syntax themes by a user contribution.</p>
|
||||||
|
<p>The main change in this release is to the install scripts and the documentation related to
|
||||||
|
installing and running novelWriter. The primary change is a different method of packaging the app
|
||||||
|
for Windows. Instead of building an <i>.exe</i> file, the new setup instead builds a runnable zip
|
||||||
|
file <i>.pyz</i>. The executable would often be mistakenly flagged by virus control software due to
|
||||||
|
the packaging tools. This is a known problem with pyinstaller and similar tools, but such warnings
|
||||||
|
are always concerning even if they are false positives.</p>
|
||||||
|
|
||||||
|
<p><i>The full changelog is available
|
||||||
|
<a href="https://github.com/vkbo/novelWriter/blob/main/CHANGELOG.md">here</a>.</i></p>
|
||||||
|
|
||||||
|
<hr/>
|
||||||
|
|
||||||
<h2>Release Notes for 1.0.2</h2>
|
<h2>Release Notes for 1.0.2</h2>
|
||||||
<p><i>Released on 19 January 2021</i></p>
|
<p><i>Released on 19 January 2021</i></p>
|
||||||
<p>This patch release fixes a few minor cosmetic issues, a minor issue with the indexer, and a bug
|
<p>This patch release fixes a few minor cosmetic issues, a minor issue with the indexer, and a bug
|
||||||
when adding words to the user's own spell check dictionary. Additionally, the documentation has
|
when adding words to the user's own spell check dictionary. Additionally, the documentation has
|
||||||
been updated based on user feedback, and some install issues resolved.</p>
|
been updated based on user feedback, and some install issues resolved.</p>
|
||||||
|
|
||||||
<p><i>The full changelog is available
|
|
||||||
<a href="https://github.com/vkbo/novelWriter/blob/main/CHANGELOG.md">here</a>.</i></p>
|
|
||||||
|
|
||||||
<hr/>
|
<hr/>
|
||||||
|
|
||||||
<h2>Release Notes for 1.0.1</h2>
|
<h2>Release Notes for 1.0.1</h2>
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<novelWriterXML appVersion="1.0.2" hexVersion="0x010002f0" fileVersion="1.2" timeStamp="2021-01-19 20:55:33">
|
<novelWriterXML appVersion="1.0.3" hexVersion="0x010003f0" fileVersion="1.2" timeStamp="2021-01-24 14:14:09">
|
||||||
<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>826</saveCount>
|
<saveCount>830</saveCount>
|
||||||
<autoCount>153</autoCount>
|
<autoCount>153</autoCount>
|
||||||
<editTime>39506</editTime>
|
<editTime>39583</editTime>
|
||||||
</project>
|
</project>
|
||||||
<settings>
|
<settings>
|
||||||
<doBackup>False</doBackup>
|
<doBackup>False</doBackup>
|
||||||
|
|||||||
Reference in New Issue
Block a user