make clock_info border one pixel wider

master
thyttan 2023-04-19 18:51:02 +02:00
parent 9cb21ceb0f
commit 3ac91b5fee
3 changed files with 3 additions and 2 deletions

View File

@ -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. 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. Remove invertion of theme as this doesn'twork very well with fastloading.
Do an quick inital fillRect on theclock info area. 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.

View File

@ -95,7 +95,7 @@ let clockInfoMenu = clock_info.addInteractive(clockInfoItems, {
app: "bwclklite", app: "bwclklite",
x : 0, x : 0,
y: 135, y: 135,
w: W, w: W+1,
h: H-135, h: H-135,
draw : (itm, info, options) => { draw : (itm, info, options) => {
let hideClkInfo = info.text == null; let hideClkInfo = info.text == null;

View File

@ -1,7 +1,7 @@
{ {
"id": "bwclklite", "id": "bwclklite",
"name": "BW Clock Lite", "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.", "description": "A very minimalistic clock. This version of BW Clock is quicker at the cost of the custom font.",
"readme": "README.md", "readme": "README.md",
"icon": "app.png", "icon": "app.png",