Bumped version to 0.1.1

This commit is contained in:
Veronica K. B. Olsen
2019-05-12 17:54:53 +02:00
parent ae3b14a17e
commit a94715ba71
3 changed files with 11 additions and 13 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# novelWriter ChangeLog
## Not Released
## Version 0.1.1 [2019-05-12]
**User Interface**
+4 -5
View File
@@ -17,18 +17,17 @@ from os import path, remove, rename
from PyQt5.QtWidgets import QApplication
from nw.main import NovelWriter
from nw.config import Config
from nw.enum import *
__package__ = "novelWriter"
__author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 2016-2018, Veronica Berglyd Olsen"
__copyright__ = "Copyright 20182019, Veronica Berglyd Olsen"
__credits__ = ["Veronica Berglyd Olsen"]
__license__ = "GPLv3"
__version__ = "0.1.0"
__date__ = "2019.05.10"
__version__ = "0.1.1"
__date__ = "2019.05.12"
__maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net"
__status__ = "Development"
__status__ = "Pre-Release"
__url__ = "https://github.com/vkbo/novelWriter"
#
+6 -7
View File
@@ -108,16 +108,15 @@ class GuiMainMenu(QMenuBar):
"<p>{name:s} is a text editor designed for writing novels. "
"It is written in Python 3 with a Qt5 GUI. The Python and Qt layers are connected with PyQt5</p>"
"<p>{name:s} is is licensed under GPL v3.0</p>"
"<p>Copyright 2018&ndash;{year:s} {author:s}</p>"
"<p>{copyright:s}</p>"
"<h4>Credits</h4>"
"<p>{credits:s}</p>"
).format(
name = nw.__package__,
version = nw.__version__,
date = nw.__date__,
year = nw.__date__[:4],
author = nw.__author__,
credits = "<br>".join(nw.__credits__),
name = nw.__package__,
version = nw.__version__,
date = nw.__date__,
copyright = nw.__copyright__,
credits = "<br>".join(nw.__credits__),
))
return True