File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
java/airsquared/blobsaver/app
resources/airsquared/blobsaver/app
test/java/airsquared/blobsaver/app Expand file tree Collapse file tree 4 files changed +6
-3
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
3434 * REMEMBER: also update the version string in:
3535 * - Main.java
3636 */
37- version = " 3.0.3 "
37+ version = " 3.0.4 "
3838description = " A cross-platform GUI app for saving SHSH blobs"
3939String appIdentifier = " airsquared.blobsaver.app"
4040String copyright = " Copyright (c) 2021 airsquared"
Original file line number Diff line number Diff line change 3535
3636public class Main {
3737
38- static final String appVersion = "v3.0.3 " ;
38+ static final String appVersion = "v3.0.4 " ;
3939 static Stage primaryStage ;
4040 // make sure to set system property before running (automatically set if running from gradle)
4141 static final File jarDirectory ;
Original file line number Diff line number Diff line change 5555 <RadioMenuItem mnemonicParsing =" false" text =" Disabled" toggleGroup =" $darkModeGroup"
5656 fx : id =" darkDisabled" userData =" $DARK_DISABLED" />
5757 <RadioMenuItem mnemonicParsing =" false" text =" Sync With OS" toggleGroup =" $darkModeGroup"
58- fx : id =" darkSync" userData =" $DARK_SYNC_WITH_OS" />
58+ fx : id =" darkSync" userData =" $DARK_SYNC_WITH_OS" visible = " false " />
5959 <RadioMenuItem mnemonicParsing =" false" text =" Enabled" toggleGroup =" $darkModeGroup"
6060 fx : id =" darkEnabled" userData =" $DARK_ENABLED" />
6161 </Menu >
Original file line number Diff line number Diff line change 1919package airsquared .blobsaver .app ;
2020
2121import org .junit .jupiter .api .Test ;
22+ import org .junit .jupiter .api .condition .DisabledOnOs ;
23+ import org .junit .jupiter .api .condition .OS ;
2224
2325import java .io .IOException ;
2426import java .nio .file .Files ;
@@ -44,6 +46,7 @@ public void extractBuildManifest() throws IOException {
4446 }
4547
4648 @ Test
49+ @ DisabledOnOs (value = OS .MAC , disabledReason = "Randomly fails in CI on macOS" )
4750 public void checkForUpdates () throws IOException {
4851 var version = Utils .LatestVersion .request ();
4952 assertTrue (version .changelog ().contains ("Changelog" ), "Changelog does not contain 'Changelog'" );
You can’t perform that action at this time.
0 commit comments