Merge pull request #2699 from thyttan/bwclock-fontless

[BW Clock lite] make clock_info border one pixel wider
master
Gordon Williams 2023-04-20 19:12:43 +01:00 committed by GitHub
commit 3b71304410
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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",