Apps and widgets can add a `<appid>.settings.js` file which can be
opened from the "App/widget settings" submenu.
This file should define a single function to configure the app/widget.
The function is passed a `back` argument, which can be used to return to
the settings menu by calling `back()`.
Example `<appid>.settings.js`:
```
function settings(back) {
const mySettingsMenu = {
'': { 'title': 'My Widget' },
'< Back': back, // go back to settings menu
'Sound': {
value: false,
format: s => s ? 'on' : 'off',
onchange: s => {if(s) Bangle.beep()} // TODO: save new value
},
};
E.showMenu(mySettingsMenu)
}
```
New Bangle.js firmwares remove 8 char name restriction so we're ditching the first char -> file type and using normal file extensions
Took the opportunity to remove code for older Bangle.js (since the new stuff won't work anyway)
Also removed the need for an 'app.json' - it's now renamed 'app.info' on the watch, and we just auto-generate it
Renamed a few apps so widgets all start with 'wid'