From 3ac91b5feefac1cded021d7cdf0ae87d47114c15 Mon Sep 17 00:00:00 2001 From: thyttan <6uuxstm66@mozmail.comā©> Date: Wed, 19 Apr 2023 18:51:02 +0200 Subject: [PATCH] make clock_info border one pixel wider --- apps/bwclklite/ChangeLog | 1 + apps/bwclklite/app.js | 2 +- apps/bwclklite/metadata.json | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/bwclklite/ChangeLog b/apps/bwclklite/ChangeLog index c728997da..eca453be0 100644 --- a/apps/bwclklite/ChangeLog +++ b/apps/bwclklite/ChangeLog @@ -34,3 +34,4 @@ clkinfo.addInteractive that would cause ReferenceError. 0.32: Diverge from BW Clock. Change out the custom font for a standard bitmap one to speed up loading times. Remove invertion of theme as this doesn'twork very well with fastloading. Do an quick inital fillRect on theclock info area. +0.33: Make the border of the clock_info box extend all the way to the right of the screen. diff --git a/apps/bwclklite/app.js b/apps/bwclklite/app.js index 1008eae9c..697776ea0 100644 --- a/apps/bwclklite/app.js +++ b/apps/bwclklite/app.js @@ -95,7 +95,7 @@ let clockInfoMenu = clock_info.addInteractive(clockInfoItems, { app: "bwclklite", x : 0, y: 135, - w: W, + w: W+1, h: H-135, draw : (itm, info, options) => { let hideClkInfo = info.text == null; diff --git a/apps/bwclklite/metadata.json b/apps/bwclklite/metadata.json index bab852623..8932274d4 100644 --- a/apps/bwclklite/metadata.json +++ b/apps/bwclklite/metadata.json @@ -1,7 +1,7 @@ { "id": "bwclklite", "name": "BW Clock Lite", - "version": "0.32", + "version": "0.33", "description": "A very minimalistic clock. This version of BW Clock is quicker at the cost of the custom font.", "readme": "README.md", "icon": "app.png",