Skip to content

Commit

Permalink
add version v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
johnprif committed Jan 15, 2023
1 parent bf2effb commit 895d6de
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/View/MainGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public class MainGUI extends Application
{
private String javaVersion = System.getProperty("java.version");
private String javafxVersion = System.getProperty("javafx.version");

private String version = "v0.1";

private Stage stage;
private Scene scene;

Expand Down Expand Up @@ -255,7 +256,7 @@ private void createStage()
stage.getIcons().add(imageMain2);
}

stage.setTitle("Sven Skyum 1991, JavaFX " + javafxVersion + ", running on Java " + javaVersion);
stage.setTitle("Sven Skyum 1991, JavaFX " + javafxVersion + ", running on Java " + javaVersion +", "+version);
stage.setHeight(700);
stage.setWidth(600);
stage.setResizable(false);
Expand Down

0 comments on commit 895d6de

Please sign in to comment.