Added About NUSGet and About Qt dialogs

This commit is contained in:
2025-05-04 19:20:48 -04:00
parent 4f993a3a62
commit 5a42cc5bd7
18 changed files with 1301 additions and 387 deletions

13
qt/py/ui_AboutDialog.py Normal file
View File

@@ -0,0 +1,13 @@
# "qt/py/ui_AboutDialog.py", licensed under the MIT license
# Copyright 2024-2025 NinjaCheetah and Contributors
from PySide6.QtWidgets import QDialog
from qt.py.ui_AboutNUSGet import Ui_AboutNUSGet
class AboutNUSGet(QDialog):
def __init__(self, version_str):
super().__init__()
self.ui = Ui_AboutNUSGet()
self.ui.setupUi(self)
self.ui.version_lbl.setText(version_str)