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 # novelWriter ChangeLog
## Not Released ## Version 0.1.1 [2019-05-12]
**User Interface** **User Interface**
+4 -5
View File
@@ -17,18 +17,17 @@ from os import path, remove, rename
from PyQt5.QtWidgets import QApplication from PyQt5.QtWidgets import QApplication
from nw.main import NovelWriter from nw.main import NovelWriter
from nw.config import Config from nw.config import Config
from nw.enum import *
__package__ = "novelWriter" __package__ = "novelWriter"
__author__ = "Veronica Berglyd Olsen" __author__ = "Veronica Berglyd Olsen"
__copyright__ = "Copyright 2016-2018, Veronica Berglyd Olsen" __copyright__ = "Copyright 20182019, Veronica Berglyd Olsen"
__credits__ = ["Veronica Berglyd Olsen"] __credits__ = ["Veronica Berglyd Olsen"]
__license__ = "GPLv3" __license__ = "GPLv3"
__version__ = "0.1.0" __version__ = "0.1.1"
__date__ = "2019.05.10" __date__ = "2019.05.12"
__maintainer__ = "Veronica Berglyd Olsen" __maintainer__ = "Veronica Berglyd Olsen"
__email__ = "code@vkbo.net" __email__ = "code@vkbo.net"
__status__ = "Development" __status__ = "Pre-Release"
__url__ = "https://github.com/vkbo/novelWriter" __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. " "<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>" "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>{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>" "<h4>Credits</h4>"
"<p>{credits:s}</p>" "<p>{credits:s}</p>"
).format( ).format(
name = nw.__package__, name = nw.__package__,
version = nw.__version__, version = nw.__version__,
date = nw.__date__, date = nw.__date__,
year = nw.__date__[:4], copyright = nw.__copyright__,
author = nw.__author__, credits = "<br>".join(nw.__credits__),
credits = "<br>".join(nw.__credits__),
)) ))
return True return True