Thread: Minion on Linux
View Single Post
01/08/20, 07:00 AM   #11
Tar000un
 
Tar000un's Avatar
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 47
I m running Minion from Lutris as I got the java error and didn't want to dig too long.

But I tilted on :
Originally Posted by ettavolt View Post
To run on JDK+JFX 11 Minion will need be converted to modules, it seems. At least that the error I got from trying to launch it in this setup.
So I tried more longer and I got this "working" :
Code:
wget https://download2.gluonhq.com/openjfx/11.0.2/openjfx-11.0.2_linux-x64_bin-sdk.zip -O /tmp/openjfx-11.0.2_linux-x64_bin-sdk.zip
unzip /tmp/openjfx-11.0.2_linux-x64_bin-sdk.zip -d /tmp/
java --module-path="/tmp/javafx-sdk-11.0.2/lib/" --add-modules=javafx.swing,javafx.graphics,javafx.fxml,javafx.media,javafx.web \
  --add-reads javafx.graphics=ALL-UNNAMED \
  --add-opens javafx.controls/com.sun.javafx.charts=ALL-UNNAMED \
  --add-opens javafx.graphics/com.sun.javafx.iio=ALL-UNNAMED \
  --add-opens javafx.graphics/com.sun.javafx.iio.common=ALL-UNNAMED \
  --add-opens javafx.graphics/com.sun.javafx.css=ALL-UNNAMED \
  --add-opens javafx.base/com.sun.javafx.runtime=ALL-UNNAMED \
-jar Minion-jfx.jar

But addons are not listed after I pointed to the addOns dir.

Getting a lot of :
Code:
DEBUG 2020-01-08 13:56:19,947 [Thread-9] gg.minion.service.AddOnDetectionService:interrogateDirs(354): PotionMaker - TOC Version: 5.7.9
DEBUG 2020-01-08 13:56:19,947 [Thread-9] gg.minion.service.AddOnDetectionService:detectAddOn(268): No addons match PotionMaker
How do you "convert as module" ?
  Reply With Quote