forked from FOSS/BangleApps
Merge branch 'espruino:master' into master
commit
df364babab
|
@ -740,7 +740,7 @@
|
||||||
"description": "Show currently installed apps, free space, and allow their deletion from the watch",
|
"description": "Show currently installed apps, free space, and allow their deletion from the watch",
|
||||||
"icon": "files.png",
|
"icon": "files.png",
|
||||||
"tags": "tool,system,files",
|
"tags": "tool,system,files",
|
||||||
"supports": ["BANGLEJS"],
|
"supports": ["BANGLEJS","BANGLEJS2"],
|
||||||
"storage": [
|
"storage": [
|
||||||
{"name":"files.app.js","url":"files.js"},
|
{"name":"files.app.js","url":"files.js"},
|
||||||
{"name":"files.img","url":"files-icon.js","evaluate":true}
|
{"name":"files.img","url":"files-icon.js","evaluate":true}
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
// check for alarms
|
|
||||||
(function() {
|
|
||||||
var alarms = require('Storage').readJSON('schoolCalendarAlarms.json',1)||[];
|
|
||||||
var time = new Date();
|
|
||||||
E.showPrompt("School Calendar Alarm Test");
|
|
||||||
})();
|
|
|
@ -173,11 +173,7 @@ function updateDay(ffunction,day){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function getScheduleTable() {
|
function getScheduleTable() {
|
||||||
let schedule = [//Monday:
|
let schedule = ${JSON.stringify(schedule)};
|
||||||
{cn: "Biblical Theology", dow:1, sh: 8, sm: 10, eh:9, em: 5, r:"207", t:"Mr. Besaw"},
|
|
||||||
{cn: "English", dow:1, sh: 9, sm: 5, eh:10, em: 0, t:"Dr. Wong"},
|
|
||||||
{cn: "Break", dow:1, sh: 10, sm: 0, eh:10, em: 10, t:""},
|
|
||||||
{cn: "MS Robotics", dow:1, sh: 10, sm: 10, eh:11, em: 0, r:"211", t:"Mr. Broyles"}];//${JSON.stringify(schedule)};
|
|
||||||
logDebug(JSON.stringify(schedule));
|
logDebug(JSON.stringify(schedule));
|
||||||
return schedule;
|
return schedule;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue