Skip to content

Commit d85d2a1

Browse files
committed
Release v2.5.4
1 parent 93f9223 commit d85d2a1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

blobsaver.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "blobsaver"
5-
#define MyAppVersion "2.5.3"
5+
#define MyAppVersion "2.5.4"
66
#define MyAppPublisher "airsquared"
77
#define MyAppURL "https://www.github.com/airsquared/blobsaver"
88
#define MyAppExeName "blobsaver.exe"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ sourceCompatibility = 1.8
3232
* - Main.java
3333
* - blobsaver.iss
3434
*/
35-
String appVersion = "v2.5.3"
35+
String appVersion = "v2.5.4"
3636

3737
repositories {
3838
mavenCentral()

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
public class Main {
4040

41-
static final String appVersion = "v2.5.3";
41+
static final String appVersion = "v2.5.4";
4242
static final Preferences appPrefs = Preferences.userRoot().node("airsquared/blobsaver/prefs");
4343
static Stage primaryStage;
4444
static final File jarDirectory;
@@ -153,7 +153,7 @@ public void start(Stage primaryStage) throws IOException {
153153
primaryStage.setTitle("blobsaver " + Main.appVersion);
154154
primaryStage.setScene(new Scene(root));
155155
primaryStage.getScene().getStylesheets().add(getClass().getResource("app.css").toExternalForm());
156-
if (!PlatformUtil.isMac()) {
156+
if (PlatformUtil.isWindows()) {
157157
primaryStage.getIcons().clear();
158158
primaryStage.getIcons().add(new Image(getClass().getResourceAsStream("blob_emoji.png")));
159159
}

0 commit comments

Comments
 (0)