@@ -1,5 +1,18 @@
|
||||
# novelWriter ChangeLog
|
||||
|
||||
## Version 0.12 [2020-08-15]
|
||||
|
||||
**User Interface**
|
||||
|
||||
* Added a New Project Wizard that can, in addition to create the previous minimal new project, also create a project with pre-defined root folders and chapter and scenes. It is also possible to create a copy of the example project from the source code. Either from the `sample` folder in the source, or from a `sample.zip` file generated by the `setup.py` script and saved to the `nw/assets` folder. PR #366.
|
||||
* When the user clicked cancel on the colour dialog in Project Settins, the icon would be reset to black. Instead, the colour should remain unchanged. A check that the user actually selected a colour has now been added. Issue #395, PR #403.
|
||||
|
||||
**Other Changes**
|
||||
|
||||
* Cleaned up code using `flake8` tool and added it as a permanent check on pull requests. The tool filtered out a number of unused variables and imports, which wastes CPU time and memory. Every bit helps. PRs #394, #397 and #401.
|
||||
* Added contributing guide, code of conduct and issue templates. Direct push to main, and PR #398.
|
||||
|
||||
|
||||
## Version 0.11.1 [2020-08-09]
|
||||
|
||||
**Bugfixes**
|
||||
|
||||
+2
-2
@@ -24,9 +24,9 @@ copyright = "2018-2020, Veronica Berglyd Olsen"
|
||||
author = "Veronica Berglyd Olsen"
|
||||
|
||||
# The short X.Y version
|
||||
version = "0.11.1"
|
||||
version = "0.12.0"
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = "0.11.1"
|
||||
release = "0.12.0"
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
||||
+3
-3
@@ -41,9 +41,9 @@ __package__ = "nw"
|
||||
__author__ = "Veronica Berglyd Olsen"
|
||||
__copyright__ = "Copyright 2018–2020, Veronica Berglyd Olsen"
|
||||
__license__ = "GPLv3"
|
||||
__version__ = "0.11.1"
|
||||
__hexversion__ = "0x001101f0"
|
||||
__date__ = "2020-08-09"
|
||||
__version__ = "0.12.0"
|
||||
__hexversion__ = "0x001200f0"
|
||||
__date__ = "2020-08-15"
|
||||
__maintainer__ = "Veronica Berglyd Olsen"
|
||||
__email__ = "code@vkbo.net"
|
||||
__status__ = "Beta"
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<novelWriterXML appVersion="0.11.1" hexVersion="0x001101f0" fileVersion="1.2" timeStamp="2020-08-10 20:03:56">
|
||||
<novelWriterXML appVersion="0.12.0" hexVersion="0x001200f0" fileVersion="1.2" timeStamp="2020-08-15 15:17:06">
|
||||
<project>
|
||||
<name>Sample Project</name>
|
||||
<title>Sample Project</title>
|
||||
<author>Jane Smith</author>
|
||||
<author>Jay Doh</author>
|
||||
<saveCount>676</saveCount>
|
||||
<saveCount>677</saveCount>
|
||||
<autoCount>122</autoCount>
|
||||
<editTime>32870</editTime>
|
||||
<editTime>32872</editTime>
|
||||
</project>
|
||||
<settings>
|
||||
<doBackup>False</doBackup>
|
||||
|
||||
Reference in New Issue
Block a user