mysetup: becomes "anotherconf"

master
thyttan 2025-01-29 21:53:35 +01:00
parent f0b1fb2c23
commit 9ff0718aba
18 changed files with 45 additions and 46 deletions

View File

@ -1,3 +1,4 @@
0.01: New App! 0.01: New App!
0.02: update to my current preferences. 0.02: update to my current preferences.
0.03: update app list 0.03: update app list
0.04: change app name "mysetup" -> "anotherconf"

View File

@ -0,0 +1,26 @@
# Another Default Config
A different default set of apps and configurations. Brings many quality of life improvements. Opinionated based on the creators taste. Read more below before installing.
## Usage
Before installing do this:
1. Backup your current setup (via the "More..." tab of the App Loader) so you can restore it later if you want.
2. Factory reset the watch.
3. Remove all apps via the "More..." tab in the App Loader.
4. Make sure minification is turned off on the App Loader.
5. Then install.
6. Try it out, switch out apps to your favorites and tweak to your liking!
## Features
There will not be a trace of a "Another Default Config" app on your watch after installation. Only the apps it installed and the configurations.
## Requests
Add to the espruino/BangleApps issue tracker and mention @thyttan for bug reports and suggestions. Or do a pull request!
## Creator
thyttan

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

5
apps/anotherconf/boot.js Normal file
View File

@ -0,0 +1,5 @@
{
require("Storage").erase("anotherconf.info");
require("Storage").erase("anotherconf.boot.js");
load();
}

View File

@ -1,19 +1,20 @@
{ "id": "mysetup", { "id": "anotherconf",
"name": "My Setup", "name": "Another Default Config",
"version":"0.03", "version":"0.04",
"description": "Setup the Bangle.js watch as I want it.", "description": "A different default loadout of apps and configurations. Brings many quality of life improvements. Opinionated based on the creators taste. Read more below before installing.",
"icon": "app.png", "icon": "app.png",
"type": "settings", "type": "settings",
"tags": "system,clkinfo", "tags": "system, configuration, config",
"supports" : ["BANGLEJS2"], "supports" : ["BANGLEJS2"],
"readme": "README.md", "readme": "README.md",
"dependencies" : { "dependencies" : {
"sched":"app", "sched":"app",
"kbedgewrite":"app", "kbmulti":"app",
"messageicons":"app", "messageicons":"app",
"widmsggrid":"app", "widmsggrid":"app",
"msgwakefup":"app", "msgwakefup":"app",
"msgtwscr":"app", "msgtwscr":"app",
"delaylock":"app",
"notify":"app", "notify":"app",
"health":"app", "health":"app",
"widminbate":"app", "widminbate":"app",
@ -31,22 +32,22 @@
"runplus":"app", "runplus":"app",
"dtlaunch":"app", "dtlaunch":"app",
"quicklaunch":"app", "quicklaunch":"app",
"forge":"app",
"kineticscroll":"app", "kineticscroll":"app",
"alarm":"app", "alarm":"app",
"recorder":"app", "recorder":"app",
"bthrm":"app",
"agenda":"app", "agenda":"app",
"edgeclk":"app", "edgeclk":"app",
"twenties":"app",
"autoreset":"app", "autoreset":"app",
"chargent":"app", "chargent":"app",
"setting":"app", "setting":"app",
"fastload":"app", "fastload":"app",
"boot":"app", "boot":"app",
"gbdiscon":"app",
"ateatimer":"app", "ateatimer":"app",
"delaylock":"app" "drained":"app",
"forge":"app",
"bthrm":"app",
"twenties":"app",
"gbdiscon":"app"
}, },
"storage": [ "storage": [
{"name":"backswipe.json", {"name":"backswipe.json",
@ -69,7 +70,7 @@
"url":"edgeclk.settings.json"}, "url":"edgeclk.settings.json"},
{"name":"setting.json", {"name":"setting.json",
"url":"setting.json"}, "url":"setting.json"},
{"name":"mysetup.boot.js", {"name":"anotherconf.boot.js",
"url":"boot.js"} "url":"boot.js"}
] ]
} }

View File

@ -1,29 +0,0 @@
# App Name
Describe the app...
Add screen shots (if possible) to the app folder and link then into this file with ![](<name>.png)
## Usage
Before installing this do:
1. Factory reset the watch.
2. Remove all apps via the "More..." tab in the App Loader.
3. Make sure minification is turned off on the App Loader.
## Features
Name the function
## Controls
Name the buttons and what they are used for
## Requests
Name who should be contacted for support/update requests
## Creator
thyttan

View File

@ -1,5 +0,0 @@
{
require("Storage").erase("mysetup.info");
require("Storage").erase("mysetup.boot.js");
load();
}