Improve Calendar Clock current time contrast

pull/2161/head
Sylvia van Os 2022-10-01 11:54:56 +02:00
parent a456f4ff62
commit 79a8d29692
3 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,4 @@
0.01: Initial version
0.02: More compact rendering & app icon
0.03: Tell clock widgets to hide.
0.04: Improve current time readability in light theme.

View File

@ -68,7 +68,7 @@ function drawEvent(event, y) {
var curEventHeight = 0;
function drawCurrentEvents(y) {
g.setColor("#0ff");
g.setColor(g.theme.dark ? "#0ff" : "#006060");
g.clearRect(5, y, g.getWidth() - 5, y + curEventHeight);
curEventHeight = y;

View File

@ -2,7 +2,7 @@
"id": "calclock",
"name": "Calendar Clock",
"shortName": "CalClock",
"version": "0.03",
"version": "0.04",
"description": "Show the current and upcoming events synchronized from Gadgetbridge",
"icon": "calclock.png",
"type": "clock",