mirror of https://github.com/espruino/BangleApps
heart: Save settings in data file, add recording files to data
parent
9358b4b599
commit
e4c0574ab7
|
@ -300,15 +300,18 @@
|
||||||
{ "id": "heart",
|
{ "id": "heart",
|
||||||
"name": "Heart Rate Recorder",
|
"name": "Heart Rate Recorder",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"version":"0.01",
|
"version":"0.02",
|
||||||
"interface": "interface.html",
|
"interface": "interface.html",
|
||||||
"description": "Application that allows you to record your heart rate. Can run in background",
|
"description": "Application that allows you to record your heart rate. Can run in background",
|
||||||
"tags": "tool,health,widget",
|
"tags": "tool,health,widget",
|
||||||
"storage": [
|
"storage": [
|
||||||
{"name":"heart.app.js","url":"app.js"},
|
{"name":"heart.app.js","url":"app.js"},
|
||||||
{"name":"heart.json","url":"app-settings.json","evaluate":true},
|
|
||||||
{"name":"heart.img","url":"app-icon.js","evaluate":true},
|
{"name":"heart.img","url":"app-icon.js","evaluate":true},
|
||||||
{"name":"heart.wid.js","url":"widget.js"}
|
{"name":"heart.wid.js","url":"widget.js"}
|
||||||
|
],
|
||||||
|
"data": [
|
||||||
|
{"name":"heart.json"},
|
||||||
|
{"wildcard":".heart?","storageFile": true}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{ "id": "slevel",
|
{ "id": "slevel",
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
0.01: New App!
|
0.01: New App!
|
||||||
|
0.02: Don't overwrite existing settings on app update
|
||||||
|
Clean up recordings on app removal
|
||||||
|
|
Loading…
Reference in New Issue