commit 27/2025

Tambah Crop Setting
This commit is contained in:
2025-05-27 14:47:52 +07:00
parent 957d642f5d
commit 0728ae3ca2
4 changed files with 11 additions and 14 deletions

View File

@@ -22,6 +22,7 @@ import static Config.SomeCodes.config;
public class MainApplication extends Application {
final String version = "27052025-012";
PhotoCleaner photoCleaner;
@Override
public void start(Stage stage) throws IOException {
@@ -49,7 +50,7 @@ public class MainApplication extends Application {
Screen screen = Screen.getPrimary();
Rectangle2D screenbound = screen.getBounds();
Scene scene = new Scene(fxmlLoader.load(), screenbound.getWidth(), screenbound.getHeight());
stage.setTitle("MultiCam Capture App for ERHA 27052025-006");
stage.setTitle("MultiCam Capture App for ERHA "+version);
stage.setScene(scene);
stage.setResizable(true);
stage.setMaximized(true);
@@ -68,6 +69,7 @@ public class MainApplication extends Application {
AutoCloseAlert.init();
Logger.info("Application started");
System.out.println("Application version : " + version+" started");
sd.setEvent(new SecureDongleEvent() {
@Override
public void onDongleMissing() {
@@ -108,13 +110,6 @@ public class MainApplication extends Application {
}
@Override
public void stop() throws Exception {
Logger.info("Application stopped");
super.stop();
}
public static void main(String[] args) {
SomeCodes.ExtractResource("/tinylog.properties");
launch();