For information; these are the instructions I use to submit my plugin.
cd /path/to/volumio-plugins-sources/my_plugin
// Set up credentials
git config --global user.name “my github username"
git config --global user.email “my github email"
// Stage changes
$ git add .
// Commit changes
$ git commit -m ‘message here describing the changes made’
// Push to remote master branch
$ git push origin master
volumio plugin submit
Submit a PR.
This list of commands seems to work but I have a number of questions:
Questions.
After issuing the ‘volumio plugin package’ I removed the node modules and the zip file - as has been requested in the past. Is this still necessary? (I have a feeling that the ‘submit’ command put them back in?)
The plugin is now waiting for approval. I have since made a number of changes to index.js and strings_en.json. What steps do I now need to take to update/re-submit the plugin? A beginners step by step guide needed
I live in fear of doing wrong!