diff --git a/CHANGELOG.md b/CHANGELOG.md index d54a7532..a8df2196 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # novelWriter ChangeLog -## Not Released +## Version 0.1.1 [2019-05-12] **User Interface** diff --git a/nw/__init__.py b/nw/__init__.py index a1755d6c..97df0fd7 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -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 2018–2019, 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" # diff --git a/nw/gui/mainmenu.py b/nw/gui/mainmenu.py index 488cf8ff..8ee7605f 100644 --- a/nw/gui/mainmenu.py +++ b/nw/gui/mainmenu.py @@ -108,16 +108,15 @@ class GuiMainMenu(QMenuBar): "

{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

" "

{name:s} is is licensed under GPL v3.0

" - "

Copyright 2018–{year:s} {author:s}

" + "

{copyright:s}

" "

Credits

" "

{credits:s}

" ).format( - name = nw.__package__, - version = nw.__version__, - date = nw.__date__, - year = nw.__date__[:4], - author = nw.__author__, - credits = "
".join(nw.__credits__), + name = nw.__package__, + version = nw.__version__, + date = nw.__date__, + copyright = nw.__copyright__, + credits = "
".join(nw.__credits__), )) return True