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