From 075b003cd4c22bcd8445e7b9f9fb19cda650abac Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" Date: Sat, 8 Jun 2019 22:48:32 +0200 Subject: [PATCH] Added url to about box, and a bit more info. --- nw/gui/mainmenu.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nw/gui/mainmenu.py b/nw/gui/mainmenu.py index 6c68d154..9360f4d6 100644 --- a/nw/gui/mainmenu.py +++ b/nw/gui/mainmenu.py @@ -108,10 +108,11 @@ class GuiMainMenu(QMenuBar): msgBox.about(self.theParent, "About %s" % nw.__package__, ( "

About {name:s}

" "

Version: {version:s}
Release Date: {date:s}

" - "

{name:s} is a text editor designed for writing novels. " + "

{name:s} is a markdown-like text editor designed for organising and 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:s}

" + "

Website: {website:s}

" "

Credits

" "

{credits:s}

" ).format( @@ -119,6 +120,7 @@ class GuiMainMenu(QMenuBar): version = nw.__version__, date = nw.__date__, copyright = nw.__copyright__, + website = nw.__url__, credits = "".join(["  •  %s
" % x for x in nw.__credits__]), )) return True