Skip to content

Commit

Permalink
Release v3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
airsquared committed Aug 30, 2021
1 parent 4bc4239 commit b515699
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ idea.module.outputDir file("out/production/classes") // fix running via IntelliJ
* REMEMBER: also update the version string in:
* - Main.java
*/
version = "3.0.1"
version = "3.0.2"
description = "A cross-platform GUI app for saving SHSH blobs"
String appIdentifier = "airsquared.blobsaver.app"
String copyright = "Copyright (c) 2021 airsquared"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/airsquared/blobsaver/app/Controller.java
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ public void readApnonce() {
Alert alert1 = new Alert(Alert.AlertType.CONFIRMATION, "", ButtonType.CANCEL, new ButtonType("Jailbroken"), new ButtonType("Unjailbroken"));
alert1.setHeaderText("Read APNonce from connected device");
alert1.setContentText("blobsaver can read both the APNonce and generator from a connected device.\n\n" +
"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");
"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.");
boolean jailbroken;
if (alert1.showAndWait().isEmpty() || !alert1.getResult().getText().contains("ailbroken")) {
return;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/airsquared/blobsaver/app/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

public class Main {

static final String appVersion = "v3.0.1";
static final String appVersion = "v3.0.2";
static Stage primaryStage;
// make sure to set system property before running (automatically set if running from gradle)
static final File jarDirectory;
Expand Down

0 comments on commit b515699

Please sign in to comment.