diff --git a/gui/main_window.py b/gui/main_window.py index 0f621c2..f24d202 100644 --- a/gui/main_window.py +++ b/gui/main_window.py @@ -273,6 +273,10 @@ class MainWindow(QtWidgets.QMainWindow): self.ui.euEnablerPageBtn.show() else: self.ui.euEnablerPageBtn.hide() + + # hide the ai content if not on + if device_ver >= Version("18.1") and not tweaks["AIGestalt"].enabled: + self.ui.aiEnablerContent.hide() else: self.device_manager.set_current_device(index=None) diff --git a/qt/mainwindow.ui b/qt/mainwindow.ui index ae2007c..6140aa5 100644 --- a/qt/mainwindow.ui +++ b/qt/mainwindow.ui @@ -1571,7 +1571,7 @@ QToolButton:pressed { - Nugget GUI - Version 4.0.1 (beta 4) + Nugget GUI - Version 4.0.1 (beta 5) Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter diff --git a/qt/mainwindow_ui.py b/qt/mainwindow_ui.py index 33a0a7d..a19a08b 100644 --- a/qt/mainwindow_ui.py +++ b/qt/mainwindow_ui.py @@ -2743,7 +2743,7 @@ class Ui_Nugget(object): self.toolButton_15.setText(QCoreApplication.translate("Nugget", u"Additional Thanks", None)) self.libiBtn.setText(QCoreApplication.translate("Nugget", u"pymobiledevice3", None)) self.qtBtn.setText(QCoreApplication.translate("Nugget", u"Qt Creator", None)) - self.label.setText(QCoreApplication.translate("Nugget", u"Nugget GUI - Version 4.0.1 (beta 4)", None)) + self.label.setText(QCoreApplication.translate("Nugget", u"Nugget GUI - Version 4.0.1 (beta 5)", None)) self.statusBarLbl.setText(QCoreApplication.translate("Nugget", u"Mobile Gestalt", None)) self.mgaWarningLbl.setText(QCoreApplication.translate("Nugget", u"! Your device's mobilegestalt file is required for this feature. Select it on the apply page.", None)) self.label_9.setText(QCoreApplication.translate("Nugget", u"Device Subtype Preset", None)) diff --git a/qt/ui_mainwindow.py b/qt/ui_mainwindow.py index fbcc0cd..b1a8d7e 100644 --- a/qt/ui_mainwindow.py +++ b/qt/ui_mainwindow.py @@ -2743,7 +2743,7 @@ class Ui_Nugget(object): self.toolButton_15.setText(QCoreApplication.translate("Nugget", u"Additional Thanks", None)) self.libiBtn.setText(QCoreApplication.translate("Nugget", u"pymobiledevice3", None)) self.qtBtn.setText(QCoreApplication.translate("Nugget", u"Qt Creator", None)) - self.label.setText(QCoreApplication.translate("Nugget", u"Nugget GUI - Version 4.0.1 (beta 4)", None)) + self.label.setText(QCoreApplication.translate("Nugget", u"Nugget GUI - Version 4.0.1 (beta 5)", None)) self.statusBarLbl.setText(QCoreApplication.translate("Nugget", u"Mobile Gestalt", None)) self.mgaWarningLbl.setText(QCoreApplication.translate("Nugget", u"! Your device's mobilegestalt file is required for this feature. Select it on the apply page.", None)) self.label_9.setText(QCoreApplication.translate("Nugget", u"Device Subtype Preset", None))