From b3c17e0fb5b6e7db69de163f5f4815917516032b Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" Date: Sat, 8 Jun 2019 22:43:56 +0200 Subject: [PATCH] Updated app infor and about box --- nw/__init__.py | 5 +++-- nw/gui/mainmenu.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/nw/__init__.py b/nw/__init__.py index 933645bd..2c78b458 100644 --- a/nw/__init__.py +++ b/nw/__init__.py @@ -26,7 +26,7 @@ __version__ = "0.1.5" __date__ = "2019.06.08" __maintainer__ = "Veronica Berglyd Olsen" __email__ = "code@vkbo.net" -__status__ = "Pre-Release" +__status__ = "Development" __url__ = "https://github.com/vkbo/novelWriter" __credits__ = [ "Veronica Berglyd Olsen (developer)", @@ -85,7 +85,7 @@ def main(sysArgs): ] helpMsg = ( - "novelWriter {version} ({status})\n" + "{appname} {version} ({status})\n" "{copyright}\n" "\n" "Usage:\n" @@ -100,6 +100,7 @@ def main(sysArgs): " --config Alternative config file.\n" " --headless Do not display GUI. Useful for testing scripts.\n" ).format( + appname = __package__, version = __version__, status = __status__, copyright = __copyright__ diff --git a/nw/gui/mainmenu.py b/nw/gui/mainmenu.py index 716c6b50..6c68d154 100644 --- a/nw/gui/mainmenu.py +++ b/nw/gui/mainmenu.py @@ -119,7 +119,7 @@ class GuiMainMenu(QMenuBar): version = nw.__version__, date = nw.__date__, copyright = nw.__copyright__, - credits = "
".join(nw.__credits__), + credits = "".join(["  •  %s
" % x for x in nw.__credits__]), )) return True