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 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())