Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove mandatory notice for dlp from install script #2580

Merged
merged 1 commit into from
Jan 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -713,14 +713,14 @@ elif [ ! -d $DIRECTORY ]; then
fi;

if [ $DIRECTORY != "-" ]; then
plugins=( 'OctoDash Companion' 'Display Layer Progress (mandatory)' 'Filament Manager' 'Spool Manager' 'Preheat Button' 'Enclosure' 'Print Time Genius' 'Ultimaker Format Package' 'PrusaSlicer Thumbnails' 'TPLinkSmartPlug' 'Tasmota' 'TasmotaMQTT', 'Ophom (Phillips HUE)')
checkbox_input "Which plugins should I install (you can also install them via the Octoprint UI)?" plugins selected_plugins
plugins=( 'OctoDash Companion' 'Display Layer Progress' 'Filament Manager' 'Spool Manager' 'Preheat Button' 'Enclosure' 'Print Time Genius' 'Ultimaker Format Package' 'PrusaSlicer Thumbnails' 'TPLinkSmartPlug' 'Tasmota' 'TasmotaMQTT', 'Ophom (Phillips HUE)')
checkbox_input "Which plugins should I install (you can also install them via the Octoprint UI later)?" plugins selected_plugins
echo "Installing Plugins..."

if [[ " ${selected_plugins[@]} " =~ "OctoDash Companion" ]]; then
"$DIRECTORY"/bin/pip install -q --disable-pip-version-check "https://github.com/jneilliii/OctoPrint-OctoDashCompanion/archive/master.zip"
fi;
if [[ " ${selected_plugins[@]} " =~ "Display Layer Progress (mandatory)" ]]; then
if [[ " ${selected_plugins[@]} " =~ "Display Layer Progress" ]]; then
"$DIRECTORY"/bin/pip install -q --disable-pip-version-check "https://github.com/OllisGit/OctoPrint-DisplayLayerProgress/releases/latest/download/master.zip"
fi;
if [[ " ${selected_plugins[@]} " =~ "Filament Manager" ]]; then
Expand Down