]> ##&name; ###&version; - Fix: Align plugin name with other Next plugins. ###2026.02.09 - Fix: Notes listing format. ###2026.01.13 - Fix: Update check for open files next. ###2025.12.27 - Fix: URL reference so the plugin will update. ###2025.12.05 - First release as Open Files - Next. "&gitURL;/&name;-&version;.tgz" &MD5; # The previous open files plugin cannot be installed. if [ -f /boot/config/plugins/&plugin;.plg ] ; then echo "" echo "-----------------------------------------------------------" echo " &name; has not been installed!" echo "" echo " The previous Open Files plugin is installed." echo "" echo " You must uninstall the Open Files plugin" echo " before installing Open Files - Next." echo "" echo "-----------------------------------------------------------" echo "" exit 1 fi # Remove emhttp files so we can re-install. rm -f -r /usr/local/emhttp/plugins/&plugin;/* 2>/dev/null # Remove old 'bundle' files. rm -f $(ls /boot/config/plugins/&plugin;/&name;*.tgz 2>/dev/null | grep -v '&version;') # Install the 'bundle'. tar -xf /boot/config/plugins/&plugin;/&name;-&version;.tgz -C /usr/local/emhttp/plugins 2>/dev/null echo "" echo "-----------------------------------------------------------" echo " &name; is installed." echo " Copyright 2015-2026, &author;" echo " Version: &version;" echo "-----------------------------------------------------------" echo "" # Remove all plugin files. rm -f -r /usr/local/emhttp/plugins/&plugin; 2>/dev/null rm -f -r /boot/config/plugins/&plugin; 2>/dev/null echo "" echo "-----------------------------------------------------------" echo " &name; has been removed." echo " Version: &version;" echo "-----------------------------------------------------------" echo ""