1
0
Fork 0

Merge pull request #2066 from rigrig/fix-weather-clockiness

weather: don't mark app as CLOCK.
master
Gordon Williams 2022-07-29 08:07:41 +01:00 committed by GitHub
commit 51bb637572
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View File

@ -12,3 +12,4 @@
0.13: Tweak Bangle.js 2 light theme colors
0.14: Use weather condition code for icon selection
0.15: Fix widget icon
0.16: Don't mark app as clock

View File

@ -101,7 +101,11 @@ weather.on("update", update);
update();
// Show launcher when middle button pressed
// We want this app to behave like a clock:
// i.e. show launcher when middle button pressed
Bangle.setUI("clock");
// But the app is not actually a clock
// This matters for widgets that hide themselves for clocks, like widclk or widclose
delete Bangle.CLOCK;
Bangle.drawWidgets();

View File

@ -1,7 +1,7 @@
{
"id": "weather",
"name": "Weather",
"version": "0.15",
"version": "0.16",
"description": "Show Gadgetbridge weather report",
"icon": "icon.png",
"screenshots": [{"url":"screenshot.png"}],