Skip to content
This repository was archived by the owner on Nov 12, 2024. It is now read-only.

Commit

Permalink
v2.2.0 (thanks to @Somrlik !)
Browse files Browse the repository at this point in the history
  • Loading branch information
skyecodes committed Oct 7, 2018
1 parent 00ee13f commit 22d5233
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.franckyi</groupId>
<artifactId>cmpdl</artifactId>
<version>2.1.1</version>
<version>2.2.0</version>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down
12 changes: 6 additions & 6 deletions src/main/java/com/github/franckyi/cmpdl/CMPDL.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
public class CMPDL extends Application {

public static final String NAME = "CMPDL";
public static final String VERSION = "2.1.1";
public static final String VERSION = "2.2.0";
public static final String AUTHOR = "Franckyi";
public static final String TITLE = String.format("%s v%s by %s", NAME, VERSION, AUTHOR);

Expand All @@ -42,11 +42,11 @@ public class CMPDL extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
stage = primaryStage;
modpackPane = new ContentControllerView<>("ModpackPane.fxml");
filePane = new ContentControllerView<>("FilePane.fxml");
destinationPane = new ContentControllerView<>("DestinationPane.fxml");
progressPane = new ContentControllerView<>("ProgressPane.fxml");
mainWindow = new ControllerView<>("MainWindow.fxml");
modpackPane = new ContentControllerView<>("fxml/ModpackPane.fxml");
filePane = new ContentControllerView<>("fxml/FilePane.fxml");
destinationPane = new ContentControllerView<>("fxml/DestinationPane.fxml");
progressPane = new ContentControllerView<>("fxml/ProgressPane.fxml");
mainWindow = new ControllerView<>("fxml/MainWindow.fxml");
stage.setScene(new Scene(mainWindow.getView()));
stage.setTitle(TITLE);
stage.setOnCloseRequest(e -> currentContent.getController().handleClose());
Expand Down
File renamed without changes.

0 comments on commit 22d5233

Please sign in to comment.