Skip to content

Commit

Permalink
Prune Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
whenlit committed Sep 7, 2024
1 parent 0d6f768 commit e451887
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
10 changes: 1 addition & 9 deletions apps/dutchclock/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,9 +1 @@
0.12: First release
0.13: Fix widgets reappearing
0.14: Fix midnight
0.15: Fix midnight better
0.16: Fix midnight decisively
0.17: Get loadWidgets back in the right place
0.18: Move setUI and loadWidgets to initialize function
0.19: Make compatible with top and bottom widgets
0.20: Remove unused constant
0.20: First release
2 changes: 1 addition & 1 deletion apps/dutchclock/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ function initialize() {

// now check every second
let secondInterval = setInterval(tick, 1000);
// Stop updates when LCD is off, restart when on

// Stop updates when LCD is off, restart when on
Bangle.on('lcdPower',on=>{
if (secondInterval) clearInterval(secondInterval);
secondInterval = undefined;
Expand Down

0 comments on commit e451887

Please sign in to comment.