File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/java/com/airsquared/blobsaver Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
3
4
4
#define MyAppName " blobsaver"
5
- #define MyAppVersion " 2.5.3 "
5
+ #define MyAppVersion " 2.5.4 "
6
6
#define MyAppPublisher " airsquared"
7
7
#define MyAppURL " https://www.github.com/airsquared/blobsaver"
8
8
#define MyAppExeName " blobsaver.exe"
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ sourceCompatibility = 1.8
32
32
* - Main.java
33
33
* - blobsaver.iss
34
34
*/
35
- String appVersion = " v2.5.3 "
35
+ String appVersion = " v2.5.4 "
36
36
37
37
repositories {
38
38
mavenCentral()
Original file line number Diff line number Diff line change 38
38
39
39
public class Main {
40
40
41
- static final String appVersion = "v2.5.3 " ;
41
+ static final String appVersion = "v2.5.4 " ;
42
42
static final Preferences appPrefs = Preferences .userRoot ().node ("airsquared/blobsaver/prefs" );
43
43
static Stage primaryStage ;
44
44
static final File jarDirectory ;
@@ -153,7 +153,7 @@ public void start(Stage primaryStage) throws IOException {
153
153
primaryStage .setTitle ("blobsaver " + Main .appVersion );
154
154
primaryStage .setScene (new Scene (root ));
155
155
primaryStage .getScene ().getStylesheets ().add (getClass ().getResource ("app.css" ).toExternalForm ());
156
- if (! PlatformUtil .isMac ()) {
156
+ if (PlatformUtil .isWindows ()) {
157
157
primaryStage .getIcons ().clear ();
158
158
primaryStage .getIcons ().add (new Image (getClass ().getResourceAsStream ("blob_emoji.png" )));
159
159
}
You can’t perform that action at this time.
0 commit comments