Skip to content

Commit

Permalink
Version ready
Browse files Browse the repository at this point in the history
  • Loading branch information
cesar-rgon committed Nov 17, 2024
1 parent 0cd78a3 commit 4330f9e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LEEME.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ _[Click here to open documentation in english | Pulse aquí para abrir documenta
Aplicación para personalizar y lanzar fácilmente un servidor de Killing Floor 2 a través de una interfaz visual en lugar de editar ficheros batch o de configuración del servidor. Ha sido desarrollado en Java y la interfaz es compatible con los S.O. Windows y Linux.

```
Versión: 2.2.1 alpha
Versión: 2.2.1 final
S.O. soportados: Microsoft Windows y Linux (Ubuntu/Debian)
Plataformas soportadas: Steam y Epic Games
Desarrollado por: César Rodríguez González
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ _[Click here to open documentation in spanish | Pulse aquí para abrir documenta
Application to easily customize and launch a Killing Floor 2 server through a visual interface instead of edditing batch files or server's config files. It has been developed with Java, so the interface is compatible on Windows and Linux OS.

```
Version: 2.2.1 alpha
Version: 2.2.1 final
Supported OS: Microsoft Windows and Linux (Ubuntu/Debian)
Supported platforms: Steam and Epic Games
Developed by: César Rodríguez González
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/stories/template/TemplateController.java
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,9 @@ private void wizardMenuOnAction() {
MainApplication.setTemplate(new FXMLLoader(getClass().getResource("/views/wizard-step1.fxml")));
Scene scene = new Scene(MainApplication.getTemplate().load());
MainApplication.getPrimaryStage().setScene(scene);
MainApplication.getPrimaryStage().setWidth(1024);
MainApplication.getPrimaryStage().setHeight(750);
MainApplication.getPrimaryStage().setMaximized(false);
MainApplication.getPrimaryStage().show();
} catch (Exception e) {
logger.error(e.getMessage(), e);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/properties/config.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CONFIG PROPERTIES
prop.config.applicationTitle=Simple Killing Floor 2 Server Launcher
prop.config.applicationVersion=2.2.1 beta 241115
prop.config.applicationVersion=2.2.1 final 241117
prop.config.applicationResolution=1024x750
prop.config.applicationMaximized=false
prop.config.selectedLanguageCode=en
Expand Down

0 comments on commit 4330f9e

Please sign in to comment.