Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/twenties/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
0.07: Fix TypeError on scheduling for the next day.
0.08: Refactor to use the scheduling library.
0.09: Fix missing last buzz
0.10: Move setup script from boot file to run at install time from app loader.
6 changes: 0 additions & 6 deletions apps/twenties/boot.js

This file was deleted.

6 changes: 3 additions & 3 deletions apps/twenties/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "twenties",
"name": "Twenties",
"shortName": "Twenties",
"version": "0.09",
"version": "0.10",
"description": "Buzzes every 20m to stand / sit and look 20ft away for 20s.",
"icon": "app.png",
"type": "bootloader",
Expand All @@ -12,7 +12,7 @@
"allow_emulator": true,
"readme": "README.md",
"storage": [
{ "name": "twenties.boot.js", "url": "boot.js" },
{ "name": "twenties", "url": "lib.js" }
{ "name": "twenties", "url": "lib.js" },
{ "name": "RAM", "url": "setup.js", "evaluate":true }
]
}
1 change: 1 addition & 0 deletions apps/twenties/setup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require('twenties').setup()
Loading