From 684294830d75459982845920cb30815236dc0917 Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Tue, 23 Nov 2021 13:57:46 +0000 Subject: [PATCH 1/3] app manager works in bjs2 --- apps.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps.json b/apps.json index 1eaece8a4..68d7abc13 100644 --- a/apps.json +++ b/apps.json @@ -740,7 +740,7 @@ "description": "Show currently installed apps, free space, and allow their deletion from the watch", "icon": "files.png", "tags": "tool,system,files", - "supports": ["BANGLEJS"], + "supports": ["BANGLEJS","BANGLEJS2"], "storage": [ {"name":"files.app.js","url":"files.js"}, {"name":"files.img","url":"files-icon.js","evaluate":true} From cfecc24f42d257d565f21571a50b825cffb2f1c3 Mon Sep 17 00:00:00 2001 From: Ronin0000 <89286474+Ronin0000@users.noreply.github.com> Date: Tue, 23 Nov 2021 07:05:47 -0800 Subject: [PATCH 2/3] Delete boot.js --- apps/schoolCalendar/boot.js | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 apps/schoolCalendar/boot.js diff --git a/apps/schoolCalendar/boot.js b/apps/schoolCalendar/boot.js deleted file mode 100644 index cb22decb7..000000000 --- a/apps/schoolCalendar/boot.js +++ /dev/null @@ -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"); -})(); From 0a695e5143fbff3935e80b9df85720f065b1e185 Mon Sep 17 00:00:00 2001 From: Ronin0000 <89286474+Ronin0000@users.noreply.github.com> Date: Tue, 23 Nov 2021 07:09:14 -0800 Subject: [PATCH 3/3] Update custom.html fix bug that was for testing --- apps/schoolCalendar/custom.html | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/schoolCalendar/custom.html b/apps/schoolCalendar/custom.html index 6017b4396..b007d16e3 100644 --- a/apps/schoolCalendar/custom.html +++ b/apps/schoolCalendar/custom.html @@ -173,11 +173,7 @@ function updateDay(ffunction,day){ } } function getScheduleTable() { - let schedule = [//Monday: - {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)}; + let schedule = ${JSON.stringify(schedule)}; logDebug(JSON.stringify(schedule)); return schedule; }