Version 0.06 of BW Clock

pull/1685/head
David Peer 2022-04-09 14:49:52 +02:00
parent e7a87d193e
commit 66e0f944cd
4 changed files with 8 additions and 7 deletions

View File

@ -2,4 +2,5 @@
0.02: Use build in function for steps and other improvements.
0.03: Adapt colors based on the theme of the user.
0.04: Steps can be hidden now such that the time is even larger.
0.05: Included icons for information.
0.05: Included icons for information.
0.06: Design improvements.

View File

@ -1,4 +1,4 @@
# Black & White clock
# BW Clock
![](screenshot.png)

View File

@ -250,7 +250,7 @@ function draw() {
g.fillRect(0,y,W,H);
// Draw date
y -= settings.fullscreen ? 5 : 0;
y -= settings.fullscreen ? 10 : 0;
var date = new Date();
g.setColor(g.theme.fg);
g.setFontAlign(1,1);
@ -268,7 +268,7 @@ function draw() {
g.setColor(g.theme.bg);
g.setFontAlign(0,-1);
var timeStr = locale.time(date,1);
y += settings.fullscreen ? 20 : 10;
y += settings.fullscreen ? 25 : 10;
if(showInfo == 0){
y += 8;

View File

@ -1,8 +1,8 @@
{
"id": "bwclk",
"name": "BlackWhite Clock",
"version": "0.05",
"description": "Black and white clock.",
"name": "BW Clock",
"version": "0.06",
"description": "BW Clock.",
"readme": "README.md",
"icon": "app.png",
"screenshots": [{"url":"screenshot.png"}, {"url":"screenshot_2.png"}],