Skip to content

edgeclk: Reset graphics before initial clearing of the screen. #3813

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

Merged
merged 2 commits into from
Apr 28, 2025
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/edgeclk/ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
0.02: Fix reset of progress bars on midnight. Fix display of 100k+ steps.
0.03: Added option to display weather.
0.04: Added option to display live updates of step count.
0.05: Reset graphics before initial clearing of the screen. Helps in some
situations if using fastload utils.
2 changes: 1 addition & 1 deletion apps/edgeclk/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@
/* Startup Process
------------------------------------------------------------------------------*/

g.clear();
g.clear(1);
drawAll();
startTimers();
registerEvents();
Expand Down
2 changes: 1 addition & 1 deletion apps/edgeclk/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "edgeclk",
"name": "Edge Clock",
"shortName": "Edge Clock",
"version": "0.04",
"version": "0.05",
"description": "Crisp clock with perfect readability.",
"readme": "README.md",
"icon": "app.png",
Expand Down