Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two app updates plus one new application #3147

Merged
merged 7 commits into from
Jan 24, 2024
Merged
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
2 changes: 2 additions & 0 deletions apps/intervals/ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0.01: First Release
0.02: Changing resolution to seconds instead of 5 seconds
4 changes: 2 additions & 2 deletions apps/intervals/intervals.app.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ function showMenu()
"START" : function() { startSession(); },
"Sets" : { value : settings.sets,min:0,max:20,step:1,onchange : v => { settings.sets=v; } },
"Work minutes" : { value : settings.workmin,min:0,max:59,step:1,onchange : v => { settings.workmin=v; } },
"Work seconds" : { value : settings.workseg,min:0,max:59,step:5,onchange : v => { settings.workseg=v; } },
"Work seconds" : { value : settings.workseg,min:0,max:59,step:1,onchange : v => { settings.workseg=v; } },
"Rest minutes" : { value : settings.restmin,min:0,max:59,step:1,onchange : v => { settings.restmin=v; } },
"Rest seconds" : { value : settings.restseg,min:0,max:59,step:5,onchange : v => { settings.restseg=v; } },
"Rest seconds" : { value : settings.restseg,min:0,max:59,step:1,onchange : v => { settings.restseg=v; } },
"Signal type" : { value : settings.buzz,format : v => v?"Buzz":"Beep",onchange : v => { settings.buzz=v; }}
};

Expand Down
2 changes: 1 addition & 1 deletion apps/intervals/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "intervals",
"name": "Intervals App",
"shortName": "Intervals",
"version": "0.01",
"version": "0.02",
"description": "Intervals for training. It is possible to configure work time and rest time and number of sets.",
"icon": "intervals.png",
"tags": "",
Expand Down
1 change: 1 addition & 0 deletions apps/planetarium/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
0.02: Major speed improvement. Added more stars. Up to 500!
0.03: Added more stars and constellations. Now it shows 20 constellations.
0.04: Use default Bangle formatter for booleans
0.05: Added more constellations (scorpio and aguila)
2 changes: 1 addition & 1 deletion apps/planetarium/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "planetarium",
"name": "Planetarium",
"shortName": "Planetarium",
"version": "0.04",
"version": "0.05",
"description": "Planetarium showing up to 500 stars using the watch location and time",
"icon": "planetarium.png",
"tags": "",
Expand Down
4 changes: 4 additions & 0 deletions apps/planetarium/planetarium.const.csv
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,7 @@ Draco
e_15 131,131 70,70 382,382 e_15,382 187,187 423,423 e_16,e_16 207,207 122,122 e_17,e_17 232,232 342,342 452,452 428
Pegasus
92 85,138 54,54 85,138 92,283 85,283 389,160 85,92 258,258 297,297 83
Aguila
12 249,249 271,249 170,249 217,12 365,120 12
Scorpius
14 105,14 80,14 152,14 137,137 76,332 239,239 41,76 188,188 332,41 181,181 27
1 change: 1 addition & 0 deletions apps/quoteclock/app-icon.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

196 changes: 196 additions & 0 deletions apps/quoteclock/app.js

Large diffs are not rendered by default.

Binary file added apps/quoteclock/app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions apps/quoteclock/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"id": "quoteclock",
"name": "Quote Clock",
"version": "0.01",
"description": "A clock showing quotes every hour",
"icon": "app.png",
"type": "clock",
"tags": "clock,shakespeare",
"supports": ["BANGLEJS2"],
"allow_emulator": true,
"storage": [
{"name":"quoteclock.app.js","url":"app.js"},
{"name":"quoteclock.img","url":"app-icon.js","evaluate":true}
]
}