From 5d14311c584e99c83f6ea9ee47ca25bd2d755096 Mon Sep 17 00:00:00 2001 From: thyttan <6uuxstm66@mozmail.com⁩> Date: Fri, 26 Aug 2022 01:58:19 +0200 Subject: [PATCH 1/2] move setUI("clock") up before loadWidgets(). This makes bwclock and "Digital clock widget" play nice together --- apps/bwclk/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/bwclk/app.js b/apps/bwclk/app.js index d577ed511..f1c650c10 100644 --- a/apps/bwclk/app.js +++ b/apps/bwclk/app.js @@ -735,6 +735,9 @@ E.on("kill", function(){ // dark/light theme as well as the colors. g.setTheme({bg:g.theme.fg,fg:g.theme.bg, dark:!g.theme.dark}).clear(); +// Show launcher when middle button pressed +Bangle.setUI("clock"); + // Load widgets and draw clock the first time Bangle.loadWidgets(); @@ -744,6 +747,3 @@ for (let wd of WIDGETS) {wd._draw=wd.draw; wd._area=wd.area;} // Draw first time draw(); - -// Show launcher when middle button pressed -Bangle.setUI("clock"); From a16d414e4ebc471b180c7992542e1b8588f36db1 Mon Sep 17 00:00:00 2001 From: thyttan <6uuxstm66@mozmail.com⁩> Date: Fri, 26 Aug 2022 02:20:01 +0200 Subject: [PATCH 2/2] bump version --- apps/bwclk/ChangeLog | 3 ++- apps/bwclk/metadata.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/bwclk/ChangeLog b/apps/bwclk/ChangeLog index ae95e8ae7..5ff1eb90e 100644 --- a/apps/bwclk/ChangeLog +++ b/apps/bwclk/ChangeLog @@ -15,4 +15,5 @@ 0.15: Added option for a dynamic mode to show widgets only if unlocked. 0.16: You can now show your agenda if your calendar is synced with Gadgetbridge. 0.17: Fix - Step count was no more shown in the menu. -0.18: Set timer for an agenda entry by simply clicking in the middle of the screen. Only one timer can be set. \ No newline at end of file +0.18: Set timer for an agenda entry by simply clicking in the middle of the screen. Only one timer can be set. +0.19: Fix - Compatibility with "Digital clock widget" diff --git a/apps/bwclk/metadata.json b/apps/bwclk/metadata.json index 0f9836a42..bc2bb37b6 100644 --- a/apps/bwclk/metadata.json +++ b/apps/bwclk/metadata.json @@ -1,7 +1,7 @@ { "id": "bwclk", "name": "BW Clock", - "version": "0.18", + "version": "0.19", "description": "A very minimalistic clock to mainly show date and time.", "readme": "README.md", "icon": "app.png",