Skip to content

Commit abe2bd4

Browse files
author
Emery Ferrari
committed
iOS Restrictions Recovery v0.6.4
1 parent 0106df9 commit abe2bd4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/com/emeryferrari/iosrr/Display.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public void run() {
109109
if (passcode == null) {
110110
throw new Exception("Passcode could not be found. Key and salt does not correspond to any passcode between 0000 and 9999.");
111111
} else {
112-
JOptionPane.showMessageDialog(null, "Passcode: " + passcode, "Passcode found!", 0);
112+
JOptionPane.showMessageDialog(null, "Passcode: " + passcode, "Passcode found!", 1);
113113
}
114114
Display.FRAME.getContentPane().remove(label);
115115
Display.refresh();
@@ -150,7 +150,7 @@ public void run() {
150150
if (passcode == null) {
151151
throw new Exception("Passcode could not be found. Key and salt does not correspond to any passcode between 0000 and 9999.");
152152
} else {
153-
JOptionPane.showMessageDialog(null, "Passcode: " + passcode, "Passcode found!", 0);
153+
JOptionPane.showMessageDialog(null, "Passcode: " + passcode, "Passcode found!", 1);
154154
}
155155
} catch (Exception ex) {
156156
Display.handleException(ex, true);
@@ -180,7 +180,7 @@ public void run() {
180180
if (passcode == null) {
181181
throw new Exception("Passcode could not be found. Key and salt does not correspond to any passcode between 0000 and 9999.");
182182
} else {
183-
JOptionPane.showMessageDialog(null, "Passcode: " + passcode, "Passcode found!", 0);
183+
JOptionPane.showMessageDialog(null, "Passcode: " + passcode, "Passcode found!", 1);
184184
}
185185
} catch (Exception ex) {
186186
Display.handleException(ex, true);
@@ -215,7 +215,7 @@ public void run() {
215215
if (passcode == null) {
216216
throw new Exception("Passcode could not be found. Key and salt does not correspond to any passcode between 0000 and 9999.");
217217
} else {
218-
JOptionPane.showMessageDialog(null, "Passcode: " + passcode, "Passcode found!", 0);
218+
JOptionPane.showMessageDialog(null, "Passcode: " + passcode, "Passcode found!", 1);
219219
}
220220
} catch (Exception ex) {
221221
Display.handleException(ex, true);

src/com/emeryferrari/iosrr/RRConst.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
public class RRConst {
33
private RRConst() {}
44
public static final String NAME = "iOS-Restrictions-Recovery";
5-
public static final String VERSION = "v0.6.3";
5+
public static final String VERSION = "v0.6.4";
66
public static final String TITLE = "<html><body><font size=\"6\">" + NAME + " " + VERSION + "</font></body></html>";
77
public static final String DESC = "<html><body>Compatible <strong>only</strong> with <strong>iOS 7.0</strong> through <strong>iOS 11.4.1</strong></body></html>";
88
public static final String KEY_SALT_BUTTON = "From key and salt";

0 commit comments

Comments
 (0)