I updated the snapshot jar file, it should now work with Java 8 or later.
The GUI is now marked as main class, to start it you can shorten the command line:
In the current jar file there is a command line version integrated to generate the instruction-odg which does exactly the same as the GUI-button "build instructions":
As most of LDInspector is included, you may also use this jar file to check OMR validity:
And you can get the bill of material for one or more models step-by-step and sub-model-by-sub-model and summed up:
The GUI is now marked as main class, to start it you can shorten the command line:
Code:
java -jar ldinstr.jar # now sufficient
java -cp ldinstr.jar ldinsp.guisw.InstructionHelper # working as before
In the current jar file there is a command line version integrated to generate the instruction-odg which does exactly the same as the GUI-button "build instructions":
Code:
java -cp ldinstr.jar ldinsp.instr.BuildInstructions YOUR_MPD_FILE.mpd [OUTPUT.odg]
As most of LDInspector is included, you may also use this jar file to check OMR validity:
Code:
java -cp ldinstr.jar ldinsp.tools.LDITFileChecker YOUR_MPD_FILE.mpd
And you can get the bill of material for one or more models step-by-step and sub-model-by-sub-model and summed up:
Code:
java -cp ldinstr.jar ldinsp.tools.LDITBillOfMaterial YOUR_MPD_FILE.mpd [MORE.mpd] [MORE2.mpd]