Compare commits

..

No commits in common. "112e4ac4c497439f1d2c7127d009303d902cbb99" and "9e428f7a037e1bb2cf39be0f2c061a6de1a85516" have entirely different histories.

3 changed files with 4 additions and 8 deletions

View File

@ -27,10 +27,8 @@ That it.
You can download archive from [Releases section](https://github.com/anrydas/NovaPoshta/releases) or clone the repository.
Find full application's documentation at: [Ukrainian](help/uk/help.md) and [English](help/en/help.md).
### 🚀 Launch<a id='Launch'/>
First you need to set the `JFX_PATH` variable as full path to JavaFX in provided `run.*` script.<br/>
If you haven't the JavaFX you need to install it from [https://gluonhq.com/products/javafx/](https://gluonhq.com/products/javafx/)<br/>
The application's distribution included run.cmd or run.sh depended on your OS. Just launch it.<br/>
Note: `run.*` script need to `JAVA_HOME` environment variable. If it doesn't provided made changes into script to include full path to JRE.
The application's distribution included run.cmd or run.sh depended on your OS. Just launch it.
Note: run.* script need to `JAVA_HOME` environment variable. If it doesn't provided made changes into script to include full path to JRE.
### 📜 Main Window<a id='MainWin'/>
![Main Window](help/images/main.png)

View File

@ -1,2 +1 @@
JFX_PATH=full_path_to_jfx
start %JAVA_HOME%\bin\javaw.exe --module-path %JFX_PATH%\lib --add-modules javafx.controls,javafx.fxml -jar NovaPoshta.jar
start %JAVA_HOME%\bin\javaw.exe -jar NovaPoshta.jar

View File

@ -1,3 +1,2 @@
#!/bin/bash
JFX_PATH=/full/path/to/jfx
${JAVA_HOME}/bin/java ${JFX_PATH}/lib --add-modules javafx.controls,javafx.fxm -jar NovaPoshta.jar &
${JAVA_HOME}/bin/java -jar NovaPoshta.jar &