Skip to content

Commit

Permalink
Release v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
airsquared committed Apr 3, 2022
1 parent 0d39af8 commit 02b06ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 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.4"
version = "3.1.0"
description = "A cross-platform GUI app for saving SHSH blobs"
String appIdentifier = "airsquared.blobsaver.app"
String copyright = "Copyright (c) 2021 airsquared"
Expand Down Expand Up @@ -109,6 +109,8 @@ jlink {

if (os.isMacOsX()) {
installerType = "dmg"
String arch = DefaultNativePlatform.currentArchitecture.amd64 ? "intel" : "arm"
installerName = name + "-" + arch
imageOptions.addAll '--mac-package-identifier', appIdentifier
icon = "${projectDir}/dist/macos/Contents/Resources/blob.icns"
} else if (os.isWindows()) {
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.4";
static final String appVersion = "v3.1.0";
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 02b06ab

Please sign in to comment.