toggle to show all spoofable models

This commit is contained in:
leminlimez
2024-12-05 19:05:15 -05:00
parent 3137aa529f
commit 60f7df7a6c
5 changed files with 71 additions and 12 deletions

View File

@@ -4767,7 +4767,7 @@ Warning: Disabling will cause the battery to show "Unknown Part" or &q
<string>Allow Applying Over WiFi</string>
</property>
<property name="checked">
<bool>true</bool>
<bool>false</bool>
</property>
</widget>
</item>
@@ -4788,6 +4788,22 @@ Warning: Disabling will cause the battery to show &quot;Unknown Part&quot; or &q
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="showAllSpoofableChk">
<property name="toolTip">
<string>Show models for other device types in the AI device spoofing tab.</string>
</property>
<property name="statusTip">
<string/>
</property>
<property name="whatsThis">
<string/>
</property>
<property name="text">
<string>Show All Spoofable Models</string>
</property>
</widget>
</item>
<item>
<widget class="Line" name="line_24">
<property name="styleSheet">

View File

@@ -2470,7 +2470,7 @@ class Ui_Nugget(object):
self._21.setContentsMargins(0, 0, 0, 0)
self.allowWifiApplyingChk = QCheckBox(self.settingsPageContent)
self.allowWifiApplyingChk.setObjectName(u"allowWifiApplyingChk")
self.allowWifiApplyingChk.setChecked(True)
self.allowWifiApplyingChk.setChecked(False)
self._21.addWidget(self.allowWifiApplyingChk)
@@ -2485,6 +2485,11 @@ class Ui_Nugget(object):
self._21.addWidget(self.showRiskyChk)
self.showAllSpoofableChk = QCheckBox(self.settingsPageContent)
self.showAllSpoofableChk.setObjectName(u"showAllSpoofableChk")
self._21.addWidget(self.showAllSpoofableChk)
self.line_24 = QFrame(self.settingsPageContent)
self.line_24.setObjectName(u"line_24")
self.line_24.setStyleSheet(u"QFrame {\n"
@@ -3382,6 +3387,16 @@ class Ui_Nugget(object):
self.allowWifiApplyingChk.setText(QCoreApplication.translate("Nugget", u"Allow Applying Over WiFi", None))
self.autoRebootChk.setText(QCoreApplication.translate("Nugget", u"Auto Reboot After Applying", None))
self.showRiskyChk.setText(QCoreApplication.translate("Nugget", u"Show Risky Tweak Options", None))
#if QT_CONFIG(tooltip)
self.showAllSpoofableChk.setToolTip(QCoreApplication.translate("Nugget", u"Show models for other device types in the AI device spoofing tab.", None))
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
self.showAllSpoofableChk.setStatusTip("")
#endif // QT_CONFIG(statustip)
#if QT_CONFIG(whatsthis)
self.showAllSpoofableChk.setWhatsThis("")
#endif // QT_CONFIG(whatsthis)
self.showAllSpoofableChk.setText(QCoreApplication.translate("Nugget", u"Show All Spoofable Models", None))
self.skipSetupChk.setText(QCoreApplication.translate("Nugget", u"Skip Setup * (non-exploit files only)", None))
self.supervisionChk.setText(QCoreApplication.translate("Nugget", u"Enable Supervision * (requires Skip Setup)", None))
self.supervisionOrganization.setPlaceholderText(QCoreApplication.translate("Nugget", u"Enter Organization Name", None))

View File

@@ -2470,7 +2470,7 @@ class Ui_Nugget(object):
self._21.setContentsMargins(0, 0, 0, 0)
self.allowWifiApplyingChk = QCheckBox(self.settingsPageContent)
self.allowWifiApplyingChk.setObjectName(u"allowWifiApplyingChk")
self.allowWifiApplyingChk.setChecked(True)
self.allowWifiApplyingChk.setChecked(False)
self._21.addWidget(self.allowWifiApplyingChk)
@@ -2485,6 +2485,11 @@ class Ui_Nugget(object):
self._21.addWidget(self.showRiskyChk)
self.showAllSpoofableChk = QCheckBox(self.settingsPageContent)
self.showAllSpoofableChk.setObjectName(u"showAllSpoofableChk")
self._21.addWidget(self.showAllSpoofableChk)
self.line_24 = QFrame(self.settingsPageContent)
self.line_24.setObjectName(u"line_24")
self.line_24.setStyleSheet(u"QFrame {\n"
@@ -3382,6 +3387,16 @@ class Ui_Nugget(object):
self.allowWifiApplyingChk.setText(QCoreApplication.translate("Nugget", u"Allow Applying Over WiFi", None))
self.autoRebootChk.setText(QCoreApplication.translate("Nugget", u"Auto Reboot After Applying", None))
self.showRiskyChk.setText(QCoreApplication.translate("Nugget", u"Show Risky Tweak Options", None))
#if QT_CONFIG(tooltip)
self.showAllSpoofableChk.setToolTip(QCoreApplication.translate("Nugget", u"Show models for other device types in the AI device spoofing tab.", None))
#endif // QT_CONFIG(tooltip)
#if QT_CONFIG(statustip)
self.showAllSpoofableChk.setStatusTip("")
#endif // QT_CONFIG(statustip)
#if QT_CONFIG(whatsthis)
self.showAllSpoofableChk.setWhatsThis("")
#endif // QT_CONFIG(whatsthis)
self.showAllSpoofableChk.setText(QCoreApplication.translate("Nugget", u"Show All Spoofable Models", None))
self.skipSetupChk.setText(QCoreApplication.translate("Nugget", u"Skip Setup * (non-exploit files only)", None))
self.supervisionChk.setText(QCoreApplication.translate("Nugget", u"Enable Supervision * (requires Skip Setup)", None))
self.supervisionOrganization.setPlaceholderText(QCoreApplication.translate("Nugget", u"Enter Organization Name", None))