Skip to content
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
1 change: 1 addition & 0 deletions apps/antonclk/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
0.10: Use Bangle.setUI({remove:...}) to allow loading the launcher without a full reset on 2v16
0.11: Moved enhanced Anton clock to 'Anton Clock Plus' and stripped this clock back down to make it faster for new users (270ms -> 170ms)
Modified to avoid leaving functions defined when using setUI({remove:...})
0.12: Pass in `redraw` to allow `Bangle.uiRedraw()` to redraw the clock
4 changes: 3 additions & 1 deletion apps/antonclk/app.js

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

2 changes: 1 addition & 1 deletion apps/antonclk/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "antonclk",
"name": "Anton Clock",
"version": "0.11",
"version": "0.12",
"description": "A simple clock using the bold Anton font. See `Anton Clock Plus` for an enhanced version",
"icon": "app.png",
"screenshots": [{"url":"screenshot.png"}],
Expand Down
1 change: 1 addition & 0 deletions apps/antonclkplus/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
0.10: Use Bangle.setUI({remove:...}) to allow loading the launcher without a full reset on 2v16
Modified to avoid leaving functions defined when using setUI({remove:...})
0.11: Minor code improvements
0.12: Pass in `redraw` to allow `Bangle.uiRedraw()` to redraw the clock
4 changes: 3 additions & 1 deletion apps/antonclkplus/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,9 @@ Bangle.setUI({
drawTimeout = undefined;
delete Graphics.prototype.setFontAnton;
delete Graphics.prototype.setFontAntonSmall;
}});
},
redraw: draw,
});
// Load widgets
Bangle.loadWidgets();
Bangle.drawWidgets();
Expand Down
2 changes: 1 addition & 1 deletion apps/antonclkplus/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "antonclkplus",
"name": "Anton Clock Plus",
"shortName": "Anton Clock+",
"version": "0.11",
"version": "0.12",
"description": "A clock using the bold Anton font, optionally showing seconds and date in ISO-8601 format.",
"readme":"README.md",
"icon": "app.png",
Expand Down
1 change: 1 addition & 0 deletions apps/slopeclockpp/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
0.09: Use clock_info module as an app
0.10: Option to hide widgets, tweak top widget width to avoid overlap with hour text at 9am
0.11: Avoid rendering clkinfo in the same colour as the background
0.12: Pass in `redraw` to allow `Bangle.uiRedraw()` to redraw the clock
3 changes: 2 additions & 1 deletion apps/slopeclockpp/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ Bangle.setUI({
delete clockInfoMenu;
clockInfoMenu2.remove();
delete clockInfoMenu2;
}
},
redraw: draw,
});
// Load widgets
Bangle.loadWidgets();
Expand Down
2 changes: 1 addition & 1 deletion apps/slopeclockpp/metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ "id": "slopeclockpp",
"name": "Slope Clock ++",
"version":"0.11",
"version":"0.12",
"description": "A clock where hours and minutes are divided by a sloping line. When the minute changes, the numbers slide off the screen. This is a clone of the original Slope Clock which shows extra information and allows the colors to be selected.",
"icon": "app.png",
"screenshots": [{"url":"screenshot.png"}],
Expand Down