Ja im nächsten update wird 1.42 wohl eh als standard dabei sein und natürlich die neuen kommandozeilenparameter nutzen. Die aktuelle Version kennt die neuen Änderungen natürlich noch nicht.
@Repetier Any idea on the timeline for the update? The slic3r PE guys really killed repetier integration, first with the -o change and then with the noconsole removal.
I wrote a wrapper to ignore --gui hardcoded option but also if it starts, it then fails to slice and / or place objects on the plate. Is there any planned release? This is my code, if you want to try
#!/bin/bash
command=""
for i in "$@" do case "$i" in --gui) ;; *) command+="$i " ;; esac done
As things are moving slower than expected I wrote a new wrapper to have prusaslicer working with repetierhost as of version 2.1.3 on linux and likely on macos https://github.com/federico-galli/repetier-wrapper
Comments
Any idea on the timeline for the update? The slic3r PE guys really killed repetier integration, first with the -o change and then with the noconsole removal.
command=""
for i in "$@"
do
case "$i" in
--gui)
;;
*)
command+="$i "
;;
esac
done
DIR=$(readlink -f "$0" | xargs dirname)
export LD_LIBRARY_PATH="$DIR/bin"
$DIR/bin/slic3r $command