Compare commits

...

4 Commits

5 changed files with 11 additions and 2 deletions

View File

@ -1,8 +1,9 @@
$Env:JAVA_HOME = "C:\Users\nathanm\Downloads\openjdk-23.0.1_windows-x64_bin\jdk-23.0.1"
$Env:PATH = "C:\Users\nathanm\Downloads\openjdk-23.0.1_windows-x64_bin\jdk-23.0.1\bin;$($Env:PATH)"
$Env:PATH_TO_FX="C:\Users\nathanm\Downloads\openjfx-23.0.1_windows-x64_bin-sdk\javafx-sdk-23.0.1\lib"
$modulePath = "$Env:PATH_TO_FX;P:\personal_root\projects\number-station\lib"
$modulePath = "$Env:PATH_TO_FX;$PSScriptRoot\lib"
$modules = $(
"com.ctc.wstx",
"com.fasterxml.jackson.annotation",
"com.fasterxml.jackson.core",
"com.fasterxml.jackson.dataformat.xml",

View File

@ -2,8 +2,9 @@ cd $PSScriptRoot
$Env:JAVA_HOME = "C:\Users\nathanm\Downloads\openjdk-23.0.1_windows-x64_bin\jdk-23.0.1"
$Env:PATH = "C:\Users\nathanm\Downloads\openjdk-23.0.1_windows-x64_bin\jdk-23.0.1\bin;$($Env:PATH)"
$Env:PATH_TO_FX="C:\Users\nathanm\Downloads\openjfx-23.0.1_windows-x64_bin-sdk\javafx-sdk-23.0.1\lib"
$modulePath = "$Env:PATH_TO_FX;P:\personal_root\projects\number-station\lib"
$modulePath = "$Env:PATH_TO_FX;$PSScriptRoot\lib"
$modules = $(
"com.ctc.wstx",
"com.fasterxml.jackson.annotation",
"com.fasterxml.jackson.core",
"com.fasterxml.jackson.dataformat.xml",

View File

@ -51,6 +51,10 @@ public class Main extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
primaryStage.setOnCloseRequest(e -> {
Platform.exit();
});
try {
if (startParams.notification().isPresent()){
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("NotificationView.fxml"));

View File

@ -110,6 +110,7 @@ public class MainSettings {
XmlMapper xmlMapper = new XmlMapper();
xmlMapper.registerModule(new JavaTimeModule());
xmlMapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);
xmlMapper.enable(SerializationFeature.INDENT_OUTPUT);
try {
Path filePath = getSettingsFilePath();
Path directoryPath = filePath.getParent();

View File

@ -3,6 +3,7 @@ package name.nathanmcrae.numbersstation;
import java.util.logging.Logger;
import java.util.logging.Level;
import java.util.Optional;
import javafx.application.Platform;
import javafx.event.Event;
import javafx.fxml.FXML;
import javafx.scene.control.Alert;
@ -54,6 +55,7 @@ public class NotificationController {
Node node = (Node) event.getSource();
Stage stage = (Stage) node.getScene().getWindow();
stage.close();
Platform.exit();
}
public record NotificationParameters(String title,