From 8af2d888d4c6abf221d545e4fe67f93be40a891d Mon Sep 17 00:00:00 2001 From: Raffson Date: Sun, 18 Sep 2022 17:45:12 +0200 Subject: [PATCH] Update 'About' dialog --- qt_ui/windows/QLiberationWindow.py | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/qt_ui/windows/QLiberationWindow.py b/qt_ui/windows/QLiberationWindow.py index de73e5ab..95a460e8 100644 --- a/qt_ui/windows/QLiberationWindow.py +++ b/qt_ui/windows/QLiberationWindow.py @@ -166,7 +166,7 @@ class QLiberationWindow(QMainWindow): self.saveAsAction.triggered.connect(self.saveGameAs) self.saveAsAction.setShortcut("CTRL+A") - self.showAboutDialogAction = QAction("&About DCS Liberation", self) + self.showAboutDialogAction = QAction("&About DCS Retribution", self) self.showAboutDialogAction.setIcon(QIcon.fromTheme("help-about")) self.showAboutDialogAction.triggered.connect(self.showAboutDialog) @@ -462,14 +462,18 @@ class QLiberationWindow(QMainWindow): "NickJZX", "Sith1144", "Raffson", + "MetalStormGhost", ] text = ( - "

DCS Liberation " - + VERSION - + "

" - + "Source code : https://github.com/dcs-liberation/dcs_liberation" + "

DCS Retribution " + VERSION + "

" + "Source code : " + "" + "https://github.com/dcs-retribution/dcs-retribution " + "

Authors

" - + "

DCS Liberation was originally developed by shdwp, DCS Liberation 2.0 is a partial rewrite based on this work by Khopa." + + "

DCS Retribution is an (independent) fork of DCS Liberation, " + "which was originally developed by shdwp. " + "DCS Liberation 2.0 is a partial rewrite based on this work by Khopa. " + "DCS Retribution was forked during development of " + "DCS Liberation v6.0.0 in 2022 by Raffson & MetalStormGhost." "

Contributors

" + ", ".join(contributors) + "

Special Thanks :

" @@ -479,10 +483,12 @@ class QLiberationWindow(QMainWindow): "Walder for the Skynet-IADS script
" "Anubis Yinepu for the Hercules Cargo script
" + "

Splash Screen :

" - + "Artwork by Andriy Dankovych (CC BY-SA) [https://www.facebook.com/AndriyDankovych]" + + "Artwork by Andriy Dankovych (CC BY-SA)" + " " + "[https://www.facebook.com/AndriyDankovych]" ) about = QMessageBox() - about.setWindowTitle("About DCS Liberation") + about.setWindowTitle("About DCS Retribution") about.setIcon(QMessageBox.Icon.Information) about.setText(text) logging.info(about.textFormat())