File tree 2 files changed +4
-2
lines changed
src/main/java/airsquared/blobsaver/app
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ idea.module.outputDir file("out/production/classes") // fix running via IntelliJ
34
34
* REMEMBER: also update the version string in:
35
35
* - Main.java
36
36
*/
37
- version = " 3.0.4 "
37
+ version = " 3.1.0 "
38
38
description = " A cross-platform GUI app for saving SHSH blobs"
39
39
String appIdentifier = " airsquared.blobsaver.app"
40
40
String copyright = " Copyright (c) 2021 airsquared"
@@ -109,6 +109,8 @@ jlink {
109
109
110
110
if (os. isMacOsX()) {
111
111
installerType = " dmg"
112
+ String arch = DefaultNativePlatform . currentArchitecture. amd64 ? " intel" : " arm"
113
+ installerName = name + " -" + arch
112
114
imageOptions. addAll ' --mac-package-identifier' , appIdentifier
113
115
icon = " ${ projectDir} /dist/macos/Contents/Resources/blob.icns"
114
116
} else if (os. isWindows()) {
Original file line number Diff line number Diff line change 35
35
36
36
public class Main {
37
37
38
- static final String appVersion = "v3.0.4 " ;
38
+ static final String appVersion = "v3.1.0 " ;
39
39
static Stage primaryStage ;
40
40
// make sure to set system property before running (automatically set if running from gradle)
41
41
static final File jarDirectory ;
You can’t perform that action at this time.
0 commit comments