Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more text description for options #128

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/main/java/MainMenu.form
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@
</constraints>
<properties>
<text value="Preserve Data"/>
<toolTipText value="Attempt to restore without data loss."/>
</properties>
</component>
<component id="14577" class="javax.swing.JLabel">
Expand All @@ -280,6 +281,7 @@
</constraints>
<properties>
<text value="AP Nonce Collision"/>
<toolTipText value="Keep rebooting until ApNonce matches APTicket (unreliable)"/>
</properties>
</component>
<component id="16606" class="javax.swing.JLabel">
Expand Down Expand Up @@ -491,6 +493,7 @@
<enabled value="false"/>
<selected value="false"/>
<text value="Don't Send iBSS"/>
<toolTipText value="Restoring devices with Odysseus method. For checkm8/iPwnder32 specifically, bootrom needs to be patched already with unless iPwnder."/>
</properties>
</component>
<component id="44cab" class="javax.swing.JLabel" binding="noIbssLabel">
Expand Down Expand Up @@ -521,6 +524,7 @@
<enabled value="false"/>
<selected value="false"/>
<text value="Set Device Nonce"/>
<toolTipText value="Set custom nonce from your blob then exit recovery(requires use-pwndfu)"/>
</properties>
</component>
<component id="32739" class="javax.swing.JLabel" binding="setNonceLabel">
Expand Down Expand Up @@ -558,6 +562,7 @@
<enabled value="false"/>
<selected value="false"/>
<text value="Serial Output"/>
<toolTipText value="Enable serial during boot(requires serial cable and use-pwndfu)"/>
</properties>
</component>
<component id="37763" class="javax.swing.JLabel" binding="serialLabel">
Expand Down
5 changes: 5 additions & 0 deletions src/main/java/MainMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -1768,6 +1768,7 @@ public JButton getStopFutureRestoreUnsafeButton() {
panel3.add(label7, gbc);
updateUCheckBox = new JCheckBox();
updateUCheckBox.setText("Preserve Data");
updateUCheckBox.setText("Attempt to restore without data loss.");
gbc = new GridBagConstraints();
gbc.gridx = 0;
gbc.gridy = 2;
Expand All @@ -1786,6 +1787,7 @@ public JButton getStopFutureRestoreUnsafeButton() {
panel3.add(label8, gbc);
waitWCheckBox = new JCheckBox();
waitWCheckBox.setText("AP Nonce Collision");
waitWCheckBox.setToolTipText("Keep rebooting until ApNonce matches APTicket (unreliable)");
gbc = new GridBagConstraints();
gbc.gridx = 0;
gbc.gridy = 3;
Expand Down Expand Up @@ -1977,6 +1979,7 @@ public JButton getStopFutureRestoreUnsafeButton() {
noIbssCheckBox.setEnabled(false);
noIbssCheckBox.setSelected(false);
noIbssCheckBox.setText("Don't Send iBSS");
noIbssCheckBox.setText("Restoring devices with Odysseus method. For checkm8/iPwnder32 specifically, bootrom needs to be patched already with unless iPwnder.");
gbc = new GridBagConstraints();
gbc.gridx = 0;
gbc.gridy = 2;
Expand Down Expand Up @@ -2006,6 +2009,7 @@ public JButton getStopFutureRestoreUnsafeButton() {
setNonceCheckBox.setEnabled(false);
setNonceCheckBox.setSelected(false);
setNonceCheckBox.setText("Set Device Nonce");
noIbssCheckBox.setText("Set custom nonce from your blob then exit recovery(requires use-pwndfu)");
gbc = new GridBagConstraints();
gbc.gridx = 0;
gbc.gridy = 0;
Expand Down Expand Up @@ -2037,6 +2041,7 @@ public JButton getStopFutureRestoreUnsafeButton() {
serialOutputCheckBox.setEnabled(false);
serialOutputCheckBox.setSelected(false);
serialOutputCheckBox.setText("Serial Output");
serialOutputCheckBox.setToolTipText("Enable serial during boot(requires serial cable and use-pwndfu)");
gbc = new GridBagConstraints();
gbc.gridx = 0;
gbc.gridy = 3;
Expand Down