diff --git a/apps/weatherClock/ChangeLog b/apps/weatherClock/ChangeLog index f31e15729..d2c9a9d1f 100644 --- a/apps/weatherClock/ChangeLog +++ b/apps/weatherClock/ChangeLog @@ -3,4 +3,5 @@ 0.03: Minor layout extra spaces. 0.04: Layout now compatible with Bangle.js 2. 0.05: Use weather condition code for icon selection. -0.06: WeatherClock icons now reflect weather conditions better. Add settings menu to hide elements and to use weather icons of Weather app. Images placed into functions for performance. \ No newline at end of file +0.06: WeatherClock icons now reflect weather conditions better. Add settings menu to hide elements and to use weather icons of Weather app. Images placed into functions for performance. +0.07: Add yellow to error icon to show up on dark theme. \ No newline at end of file diff --git a/apps/weatherClock/app.js b/apps/weatherClock/app.js index 4896a9f49..a7a186b1d 100644 --- a/apps/weatherClock/app.js +++ b/apps/weatherClock/app.js @@ -26,7 +26,7 @@ function getStorm() { } // err icon - https://icons8.com/icons/set/error function getErr() { - return require("heatshrink").decompress(atob("mEwwkBiIA/AH4AZUAIWUiAXBWqgXXdIYuVGCgXBgICCIyYXCJCQTDC6QrEMCQSEJCQRFC6ApGJCCiDDQSpQFAYXEJBqNGJCA/EC4ZIOEwgXFJBgNEAhKlNAgxIKBgoXEJBjsLC5TsIeRycMBhRrMMBKzQEozjOBxAgHGww+IA6wfSH4hnIC47OMSJqlRIJAXCACIXaGoQARPwwuTAH4A/ABw")); + return require("heatshrink").decompress(atob("mEw4UA///A4PgAYQA/ABkFqALJitUBatVqoKIgILBoALIq2VBZEFrWlJBALLitq1JIIqoLBJBFV1WqBY5GBBYJIHBYOlrQLHIwRIIioLDJAxSBBYJUHIwILBJA4LKKQQLCJAsFBYpIEKQILDKgpGBBYZIFBYQACBYqZCAAZIDdgILGJASlDAAZUDIwQ7DJAgLLIwYLDJAbsBBYxICIwxUDKQ5UDBYIAIBZgvBABBTCBQ7xGAH4AC")); } function getDummy() { return require("heatshrink").decompress(atob("gMBwMAwA")); diff --git a/apps/weatherClock/icons/icons8-error-48-yellow.png b/apps/weatherClock/icons/icons8-error-48-yellow.png new file mode 100644 index 000000000..55912f00b Binary files /dev/null and b/apps/weatherClock/icons/icons8-error-48-yellow.png differ diff --git a/apps/weatherClock/metadata.json b/apps/weatherClock/metadata.json index 270591c74..88057c8dd 100644 --- a/apps/weatherClock/metadata.json +++ b/apps/weatherClock/metadata.json @@ -2,7 +2,7 @@ "id": "weatherClock", "name": "Weather Clock", "shortName": "Weather Clock", - "version": "0.06", + "version": "0.07", "description": "A clock which displays current weather conditions (requires Gadgetbridge and Weather apps).", "icon": "app.png", "dependencies": {"weather":"app"},