Updated app infor and about box
This commit is contained in:
+3
-2
@@ -26,7 +26,7 @@ __version__ = "0.1.5"
|
|||||||
__date__ = "2019.06.08"
|
__date__ = "2019.06.08"
|
||||||
__maintainer__ = "Veronica Berglyd Olsen"
|
__maintainer__ = "Veronica Berglyd Olsen"
|
||||||
__email__ = "code@vkbo.net"
|
__email__ = "code@vkbo.net"
|
||||||
__status__ = "Pre-Release"
|
__status__ = "Development"
|
||||||
__url__ = "https://github.com/vkbo/novelWriter"
|
__url__ = "https://github.com/vkbo/novelWriter"
|
||||||
__credits__ = [
|
__credits__ = [
|
||||||
"Veronica Berglyd Olsen (developer)",
|
"Veronica Berglyd Olsen (developer)",
|
||||||
@@ -85,7 +85,7 @@ def main(sysArgs):
|
|||||||
]
|
]
|
||||||
|
|
||||||
helpMsg = (
|
helpMsg = (
|
||||||
"novelWriter {version} ({status})\n"
|
"{appname} {version} ({status})\n"
|
||||||
"{copyright}\n"
|
"{copyright}\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Usage:\n"
|
"Usage:\n"
|
||||||
@@ -100,6 +100,7 @@ def main(sysArgs):
|
|||||||
" --config Alternative config file.\n"
|
" --config Alternative config file.\n"
|
||||||
" --headless Do not display GUI. Useful for testing scripts.\n"
|
" --headless Do not display GUI. Useful for testing scripts.\n"
|
||||||
).format(
|
).format(
|
||||||
|
appname = __package__,
|
||||||
version = __version__,
|
version = __version__,
|
||||||
status = __status__,
|
status = __status__,
|
||||||
copyright = __copyright__
|
copyright = __copyright__
|
||||||
|
|||||||
+1
-1
@@ -119,7 +119,7 @@ class GuiMainMenu(QMenuBar):
|
|||||||
version = nw.__version__,
|
version = nw.__version__,
|
||||||
date = nw.__date__,
|
date = nw.__date__,
|
||||||
copyright = nw.__copyright__,
|
copyright = nw.__copyright__,
|
||||||
credits = "<br>".join(nw.__credits__),
|
credits = "".join([" • %s<br/>" % x for x in nw.__credits__]),
|
||||||
))
|
))
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user