Merge pull request #3762 from randyheydon/noteify_clkinfo
noteify: make notes available to clock info.master
commit
9be612592d
|
|
@ -1,3 +1,4 @@
|
|||
0.01: Initial version
|
||||
0.02: Use default Bangle formatter for booleans
|
||||
0.03: Drop duplicate alarm widget
|
||||
0.04: Make notes available to clock info
|
||||
|
|
|
|||
|
|
@ -10,6 +10,7 @@ This app uses the [Scheduler library](https://banglejs.com/apps/?id=sched) and r
|
|||
* By selecting "set as alarm" or "set as timer", you can also use this note as a custom message for alerts from alarms and timers. Once you hit save, the alarm or timer is set.
|
||||
* Any alarms or timers you set will appear under "edit alarms/timers." If the alarm/timer is set to a note, the note will appear on the top of the menu. If an alarm/timer is set without a custom message, it will simply say Alarm or Timer on the top of the menu.
|
||||
* On the alarm/timer alert, only the first 30 characters of the note will appear - any more and you run the risk of pushing the sleep/ok buttons off-screen.
|
||||
* Notes can be shown in a clock info area so you can leave messages for yourself. Swipe the clock info area left/right to reach the Noteify category, then swipe up/down to switch between notes.
|
||||
|
||||
## Images
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
(function() {
|
||||
var notes = require("Storage").readJSON("noteify.json", true) || [];
|
||||
return {
|
||||
name: "Noteify",
|
||||
items: notes.map((entry, i) => ({
|
||||
name: "Noteify "+i,
|
||||
get: () => ({ text: entry.note }),
|
||||
show: function() {},
|
||||
hide: function() {}
|
||||
}))
|
||||
};
|
||||
})
|
||||
|
|
@ -1,14 +1,15 @@
|
|||
{
|
||||
"id": "noteify",
|
||||
"name": "Noteify",
|
||||
"version": "0.03",
|
||||
"description": "Write notes using an onscreen keyboard and use them as custom messages for alarms or timers.",
|
||||
"version": "0.04",
|
||||
"description": "Write notes using an onscreen keyboard and use them as custom messages for alarms, timers, or clock infos.",
|
||||
"icon": "app.png",
|
||||
"tags": "tool,alarm",
|
||||
"tags": "tool,alarm,clkinfo",
|
||||
"supports": ["BANGLEJS", "BANGLEJS2"],
|
||||
"readme": "README.md",
|
||||
"storage": [
|
||||
{"name":"noteify.app.js","url":"app.js"},
|
||||
{"name":"noteify.clkinfo.js","url":"clkinfo.js"},
|
||||
{"name":"noteify.img","url":"app-icon.js","evaluate":true}
|
||||
],
|
||||
"data": [{"name":"noteify.json"}],
|
||||
|
|
|
|||
Loading…
Reference in New Issue