Skip to content

Commit

Permalink
BetaTester true for default
Browse files Browse the repository at this point in the history
  • Loading branch information
yjx0003 committed Jun 21, 2020
1 parent af54928 commit 2be4f4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void start(Stage primaryStage) throws Exception {
ConfigHelper.initialize(AppInfo.CONFIGURATION_FILE);

boolean askAgain = ConfigHelper.getProperty(AppInfo.ASK_AGAIN, true);
boolean betaTester = ConfigHelper.getProperty(AppInfo.BETA_TESTER, false);
boolean betaTester = ConfigHelper.getProperty(AppInfo.BETA_TESTER, true);

if (askAgain || destFolderIsEmpty(new File(AppInfo.DEFAULT_VERSION_DIR))) {
primaryStage.initStyle(StageStyle.UNDECORATED);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ protected Void call() throws Exception {
ConfigHelper.setProperty("applicationPath", file.getName());
ConfigHelper.setProperty("vmArgs", new JSONArray(vmArgs));
ConfigHelper.setProperty("args", new JSONArray(args));
ConfigHelper.setProperty("betaTester", betaTester);
onFinalize();
});

Expand Down

0 comments on commit 2be4f4c

Please sign in to comment.