mirror of https://github.com/espruino/BangleApps
Merge pull request #2140 from thyttan/activity-reminder
[Activity Reminder] sofware back button via setUIpull/2143/head^2
commit
5c1495856b
|
@ -6,4 +6,5 @@
|
|||
0.06: Add a temperature threshold to detect (and not alert) if the BJS isn't worn. Better support for the peoples using the app at night
|
||||
0.07: Fix bug on the cutting edge firmware
|
||||
0.08: Use default Bangle formatter for booleans
|
||||
0.09: New app screen (instead of showing settings or the alert) and some optimisations
|
||||
0.09: New app screen (instead of showing settings or the alert) and some optimisations
|
||||
0.10: Add software back button via setUI
|
||||
|
|
|
@ -47,8 +47,13 @@
|
|||
Bangle.loadWidgets();
|
||||
Bangle.drawWidgets();
|
||||
drawInfo();
|
||||
Bangle.setUI({
|
||||
mode : "custom",
|
||||
back : load,
|
||||
btn : load
|
||||
})
|
||||
}
|
||||
|
||||
run();
|
||||
|
||||
})();
|
||||
})();
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"name": "Activity Reminder",
|
||||
"shortName":"Activity Reminder",
|
||||
"description": "A reminder to take short walks for the ones with a sedentary lifestyle",
|
||||
"version":"0.09",
|
||||
"version":"0.10",
|
||||
"icon": "app.png",
|
||||
"type": "app",
|
||||
"tags": "tool,activity",
|
||||
|
|
Loading…
Reference in New Issue