Skip to content

Commit

Permalink
Release v3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
airsquared committed Dec 14, 2022
1 parent 299dd16 commit 6b1a8f6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,26 @@ jobs:
matrix:
os: [ubuntu-22.04, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: '18'
distribution: 'zulu'
- name: Install Linux dependencies
run: sudo apt-get install libplist-dev libimobiledevice-dev libirecovery-1.0-dev
if: runner.os == 'Linux'
- name: Gradle build
uses: eskatos/gradle-command-action@v1
uses: gradle/gradle-build-action@v2
with:
arguments: build --no-daemon
distributions-cache-enabled: true
dependencies-cache-enabled: true
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}
path: build/distributions/*
- name: Upload reports on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: failure-${{ runner.os }}
path: build/reports/
Expand All @@ -43,7 +41,7 @@ jobs:
if: "startsWith(github.event.head_commit.message, 'Release')"
steps:
- name: Get artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
- name: Get version from commit
run: echo "VERSION=$(echo ${{ github.event.commits[0].message }} | awk '{print $2}')" >> $GITHUB_ENV
- name: Release public builds
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ idea.module.outputDir file("out/production/classes") // fix running via IntelliJ
/*
* REMEMBER: also update the version string in Main.java
*/
version = "3.4.0"
version = "3.4.1"
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/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

public class Main {

static final String appVersion = "v3.4.0";
static final String appVersion = "v3.4.1";
static Stage primaryStage;
// make sure to set system property before running (automatically set if running from gradle)
static final File jarDirectory;
Expand Down
6 changes: 5 additions & 1 deletion src/main/java/airsquared/blobsaver/app/TSS.java
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,11 @@ private List<Utils.IOSVersion> getIOSVersions() throws TSSException {
}
throw new TSSException(message, false, e);
} catch (IOException e) {
throw new TSSException("Saving blobs failed. Check your internet connection.", false, e);
var message = "Saving blobs failed. Check your internet connection.";
if (includeBetas) {
message += " There may be an error with the beta API; try without including beta versions.";
}
throw new TSSException(message, false, e);
}
}

Expand Down

0 comments on commit 6b1a8f6

Please sign in to comment.