|
@@ -26,7 +26,6 @@ import javafx.collections.FXCollections;
|
|
|
import javafx.collections.ObservableList;
|
|
|
import javafx.geometry.NodeOrientation;
|
|
|
import java.time.Instant;
|
|
|
-import java.util.Date;
|
|
|
import java.util.function.Consumer;
|
|
|
|
|
|
public class Settings {
|
|
@@ -46,8 +45,7 @@ public class Settings {
|
|
|
static final String DEFAULT_KEYCHAIN_PROVIDER = SystemUtils.IS_OS_WINDOWS ? "org.cryptomator.windows.keychain.WindowsProtectedKeychainAccess" : SystemUtils.IS_OS_MAC ? "org.cryptomator.macos.keychain.MacSystemKeychainAccess" : "org.cryptomator.linux.keychain.SecretServiceKeychainAccess";
|
|
|
static final String DEFAULT_USER_INTERFACE_ORIENTATION = NodeOrientation.LEFT_TO_RIGHT.name();
|
|
|
static final boolean DEFAULT_SHOW_MINIMIZE_BUTTON = false;
|
|
|
- static final Instant DEFAULT_LAST_UPDATE_REMINDER = Instant.ofEpochSecond(946681200); //2000-01-01T00:00:00Z
|
|
|
- public static final Instant DEFAULT_LAST_SUCCESSFUL_UPDATE_CHECK = Instant.ofEpochSecond(946681200); //2000-01-01T00:00:00Z
|
|
|
+ public static final Instant DEFAULT_TIMESTAMP = Instant.parse("2000-01-01T00:00:00Z");
|
|
|
public final ObservableList<VaultSettings> directories;
|
|
|
public final BooleanProperty askedForUpdateCheck;
|
|
|
public final BooleanProperty checkForUpdates;
|
|
@@ -71,7 +69,6 @@ public class Settings {
|
|
|
public final StringProperty mountService;
|
|
|
public final ObjectProperty<Instant> lastUpdateReminder;
|
|
|
public final ObjectProperty<Instant> lastSuccessfulUpdateCheck;
|
|
|
- public final StringProperty latestVersion;
|
|
|
|
|
|
private Consumer<Settings> saveCmd;
|
|
|
|
|
@@ -108,9 +105,8 @@ public class Settings {
|
|
|
this.windowHeight = new SimpleIntegerProperty(this, "windowHeight", json.windowHeight);
|
|
|
this.language = new SimpleStringProperty(this, "language", json.language);
|
|
|
this.mountService = new SimpleStringProperty(this, "mountService", json.mountService);
|
|
|
- this.lastUpdateReminder = new SimpleObjectProperty<>(this, "lastUpdateReminder", json.lastUpdateReminder.toInstant());
|
|
|
- this.lastSuccessfulUpdateCheck = new SimpleObjectProperty<>(this, "lastSuccessfulUpdateCheck", json.lastSuccessfulUpdateCheck.toInstant());
|
|
|
- this.latestVersion = new SimpleStringProperty(this, "latestVersion", json.latestVersion);
|
|
|
+ this.lastUpdateReminder = new SimpleObjectProperty<>(this, "lastUpdateReminder", json.lastUpdateReminder);
|
|
|
+ this.lastSuccessfulUpdateCheck = new SimpleObjectProperty<>(this, "lastSuccessfulUpdateCheck", json.lastSuccessfulUpdateCheck);
|
|
|
|
|
|
this.directories.addAll(json.directories.stream().map(VaultSettings::new).toList());
|
|
|
|
|
@@ -139,7 +135,6 @@ public class Settings {
|
|
|
mountService.addListener(this::somethingChanged);
|
|
|
lastUpdateReminder.addListener(this::somethingChanged);
|
|
|
lastSuccessfulUpdateCheck.addListener(this::somethingChanged);
|
|
|
- latestVersion.addListener(this::somethingChanged);
|
|
|
}
|
|
|
|
|
|
@SuppressWarnings("deprecation")
|
|
@@ -193,9 +188,8 @@ public class Settings {
|
|
|
json.windowHeight = windowHeight.get();
|
|
|
json.language = language.get();
|
|
|
json.mountService = mountService.get();
|
|
|
- json.lastUpdateReminder = Date.from(lastUpdateReminder.get());
|
|
|
- json.lastSuccessfulUpdateCheck = Date.from(lastSuccessfulUpdateCheck.get());
|
|
|
- json.latestVersion = latestVersion.get();
|
|
|
+ json.lastUpdateReminder = lastUpdateReminder.get();
|
|
|
+ json.lastSuccessfulUpdateCheck = lastSuccessfulUpdateCheck.get();
|
|
|
return json;
|
|
|
}
|
|
|
|