Skip to content

Added support for '.jar' plugins

Latest
Compare
Choose a tag to compare
@sischi sischi released this 18 Jun 14:25
· 2 commits to master since this release

Vigral is now able to load plugins from jar file under the following conditions:

  • one jar file per algorithm
  • the jar file must have the exact same name as the algorithm

For those algorithms, that uses inner classes or anonymous inner classes, you will get multiple .class files (e.g. MyAlgorithm.class, MyAlgorithm$1.class, and so on). You can Export the MyAlgorithm class as jar file, with all inner classes in it. This will lead to a cleaner plugin folder.

Further, an Error Dialog is added for identifying problems of implemented algorithms.