For people who want to help authors migrate
This will probably break your system - and IS NOT RECOMMENDED for normal users.
This is only for people who are willing to debug and help plugin devs migrate.
# Find your plugin zip package from the old repo
# For Example say "RADIO 357"
p_name="Radio 357"
curl -sL https://raw.githubusercontent.com/volumio/volumio-plugins/gh-pages/plugins/volumio/armhf/plugins.json | grep "$p_name" -B 5
# {
# "prettyName": "RADIO 357",
# "icon": "fa-lightbulb-o",
# "name": "rad357pl",
# "version": "1.0.1",
# "url": "http://volumio.github.io/volumio-plugins/plugins/volumio/armhf/music_service/rad357pl/rad357pl.zip",
# "license": "ISC",
# "description": "Radio 357",
# "details": "",
# "author": "DJack",
# "screenshots": [
# {
# "image": "",
# "thumb": ""
# }
# ],
# "updated": "7-1-2021"
# },
# We need the `name`, `category` and the `url` for sanity
plugin_name="rad357pl"
plugin_cat="music_service"
wget "https://volumio.github.io/volumio-plugins/plugins/volumio/armhf/${plugin_cat}/${plugin_name}/${plugin_name}.zip"
mkdir ./${plugin_name}
miniunzip ${plugin_name}.zip -d ./${plugin_name}
cd ${plugin_name}
npm install
volumio plugin install
Please do NOT ask for support here – find the plugin’s dedicated thread from Volumio Plugins Collection