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

Commit 22d5233

Browse files
committed
v2.2.0 (thanks to @Somrlik !)
1 parent 00ee13f commit 22d5233

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.franckyi</groupId>
88
<artifactId>cmpdl</artifactId>
9-
<version>2.1.1</version>
9+
<version>2.2.0</version>
1010
<properties>
1111
<maven.compiler.source>1.8</maven.compiler.source>
1212
<maven.compiler.target>1.8</maven.compiler.target>

src/main/java/com/github/franckyi/cmpdl/CMPDL.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
public class CMPDL extends Application {
2121

2222
public static final String NAME = "CMPDL";
23-
public static final String VERSION = "2.1.1";
23+
public static final String VERSION = "2.2.0";
2424
public static final String AUTHOR = "Franckyi";
2525
public static final String TITLE = String.format("%s v%s by %s", NAME, VERSION, AUTHOR);
2626

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

0 commit comments

Comments
 (0)