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 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"
Original file line number Diff line number Diff 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
3737repositories {
3838 mavenCentral()
Original file line number Diff line number Diff line change 3838
3939public 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 }
You can’t perform that action at this time.
0 commit comments