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
34
34
* REMEMBER: also update the version string in:
35
35
* - Main.java
36
36
*/
37
- version = " 3.0.3 "
37
+ version = " 3.0.4 "
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"
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.3 " ;
38
+ static final String appVersion = "v3.0.4 " ;
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 ;
Original file line number Diff line number Diff line change 55
55
<RadioMenuItem mnemonicParsing =" false" text =" Disabled" toggleGroup =" $darkModeGroup"
56
56
fx : id =" darkDisabled" userData =" $DARK_DISABLED" />
57
57
<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 " />
59
59
<RadioMenuItem mnemonicParsing =" false" text =" Enabled" toggleGroup =" $darkModeGroup"
60
60
fx : id =" darkEnabled" userData =" $DARK_ENABLED" />
61
61
</Menu >
Original file line number Diff line number Diff line change 19
19
package airsquared .blobsaver .app ;
20
20
21
21
import org .junit .jupiter .api .Test ;
22
+ import org .junit .jupiter .api .condition .DisabledOnOs ;
23
+ import org .junit .jupiter .api .condition .OS ;
22
24
23
25
import java .io .IOException ;
24
26
import java .nio .file .Files ;
@@ -44,6 +46,7 @@ public void extractBuildManifest() throws IOException {
44
46
}
45
47
46
48
@ Test
49
+ @ DisabledOnOs (value = OS .MAC , disabledReason = "Randomly fails in CI on macOS" )
47
50
public void checkForUpdates () throws IOException {
48
51
var version = Utils .LatestVersion .request ();
49
52
assertTrue (version .changelog ().contains ("Changelog" ), "Changelog does not contain 'Changelog'" );
You can’t perform that action at this time.
0 commit comments