Skip to content

Commit

Permalink
Swithc configuration database to local file only
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus committed Jun 11, 2024
1 parent b7eba9d commit 7844def
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,6 @@ public void open(URI toOpe) {
} catch (Throwable t) {
System.err.println("Resetting the configs repo...");
// clear the configs repo
ScriptingEngine.deleteRepo(ConfigurationDatabase.getGitSource());
firstVer = (String) ConfigurationDatabase.getObject("BowlerStudioConfigs", "firstVersion",
StudioBuildInfo.getVersion());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public void setToLoggedOut() {
myGists.getItems().clear();
logoutGithub.disableProperty().set(true);
logoutGithub.setText("Anonymous");
ConfigurationDatabase.loginEvent(null);
//ConfigurationDatabase.loginEvent(null);
this.username=null;
});
while(this.username!=null)
Expand All @@ -239,7 +239,7 @@ private void setToLoggedIn(final String n) {
logoutGithub.setText("Log out " + username);
new Thread() {
public void run() {
ConfigurationDatabase.loginEvent(username);
//ConfigurationDatabase.loginEvent(username);
ConfigurationDatabase.getParamMap("workspace");
BowlerStudioMenuWorkspace.loginEvent();
if (!PasswordManager.hasNetwork())
Expand Down

0 comments on commit 7844def

Please sign in to comment.