Skip to content

Commit b515699

Browse files
committed
Release v3.0.2
1 parent 4bc4239 commit b515699

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ idea.module.outputDir file("out/production/classes") // fix running via IntelliJ
3434
* REMEMBER: also update the version string in:
3535
* - Main.java
3636
*/
37-
version = "3.0.1"
37+
version = "3.0.2"
3838
description = "A cross-platform GUI app for saving SHSH blobs"
3939
String appIdentifier = "airsquared.blobsaver.app"
4040
String copyright = "Copyright (c) 2021 airsquared"

src/main/java/airsquared/blobsaver/app/Controller.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ public void readApnonce() {
530530
Alert alert1 = new Alert(Alert.AlertType.CONFIRMATION, "", ButtonType.CANCEL, new ButtonType("Jailbroken"), new ButtonType("Unjailbroken"));
531531
alert1.setHeaderText("Read APNonce from connected device");
532532
alert1.setContentText("blobsaver can read both the APNonce and generator from a connected device.\n\n" +
533-
"Please connect your device and click \"Jailbroken\" if your device has a generator set or \"Unjailbroken\" if you don't. Your device will enter recovery mode while retrieving the APNonce and will automatically reboot to normal mode when complete.\n\n");
533+
"Please connect your device and click \"Jailbroken\" if your device has a generator set or \"Unjailbroken\" if you don't. If unsure, select \"Unjailbroken\".\n\nYour device will enter recovery mode while retrieving the APNonce and will automatically reboot to normal mode when complete.");
534534
boolean jailbroken;
535535
if (alert1.showAndWait().isEmpty() || !alert1.getResult().getText().contains("ailbroken")) {
536536
return;

src/main/java/airsquared/blobsaver/app/Main.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
public class Main {
3737

38-
static final String appVersion = "v3.0.1";
38+
static final String appVersion = "v3.0.2";
3939
static Stage primaryStage;
4040
// make sure to set system property before running (automatically set if running from gradle)
4141
static final File jarDirectory;

0 commit comments

Comments
 (0)