Skip to content

Commit 34173c1

Browse files
committed
Release v3.5.2
1 parent 0c37783 commit 34173c1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ idea.module.outputDir file('out/production/classes') // fix running via IntelliJ
3232
/*
3333
* REMEMBER: also update the version string in Main.java
3434
*/
35-
version = '3.5.1'
35+
version = '3.5.2'
3636
description = 'A cross-platform GUI and CLI app for saving SHSH blobs'
3737
String appIdentifier = 'airsquared.blobsaver.app'
3838
String copyright = 'Copyright (c) 2023 airsquared'

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
public class Main {
4040

41-
static final String appVersion = "v3.5.1";
41+
static final String appVersion = "v3.5.2";
4242
static final String copyright = "Copyright (c) 2023 airsquared";
4343
static Stage primaryStage;
4444
// make sure to set system property before running (automatically set if running from gradle)

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -300,18 +300,18 @@ private List<Utils.IOSVersion> getIOSVersions() throws TSSException {
300300
Stream<Utils.IOSVersion> signedBetas = getSignedBetas(deviceIdentifier);
301301
return Stream.concat(signedFirmwares, signedBetas).toList();
302302
} catch (Exception e) {
303-
if (e.getMessage().startsWith("HTTP Response was (GET https://www.betahub.cn/api/apple/firmwares/")) {
304-
throw new TSSException("There was an error retrieving beta versions; try without including beta versions.\n\nThis is a known issue. See issue #603 on GitHub for more information.", false, e);
303+
if (e.getMessage().startsWith("HTTP Response was (GET https://www.betahub.cn/api/")) {
304+
throw new TSSException("There was an error retrieving beta versions; try disabling 'Include Betas'.\n\nThis is a known issue. See issue #614 on GitHub for more information or if you can help.", false, e);
305305
}
306-
throw new TSSException("There was an error retrieving beta versions; try without including beta versions. For more information, try again with the debug log open.", false, e);
306+
throw new TSSException("There was an error retrieving beta versions; try disabling 'Include Betas'. For more information, try again with the debug log open.", false, e);
307307
}
308308
} else { // all signed firmwares
309309
return getSignedFirmwares(deviceIdentifier).toList();
310310
}
311311
} catch (FileNotFoundException e) {
312312
var message = "The device \"" + deviceIdentifier + "\" could not be found.";
313313
if (includeBetas) {
314-
message += " This device may not have any beta versions available; try without including beta versions.";
314+
message += " This device may not have any beta versions available; try disabling 'Include Betas'.";
315315
}
316316
throw new TSSException(message, false, e);
317317
} catch (IOException e) {

0 commit comments

Comments
 (0)