diff --git a/apps/bwclk/ChangeLog b/apps/bwclk/ChangeLog index 06f94854e..a5458d2da 100644 --- a/apps/bwclk/ChangeLog +++ b/apps/bwclk/ChangeLog @@ -31,3 +31,4 @@ clkinfo.addInteractive that would cause ReferenceError. 0.29: use setItem of clockInfoMenu to change the active item 0.30: Use widget_utils 0.31: Use clock_info module as an app +0.32: Make the border of the clock_info box extend all the way to the right of the screen. diff --git a/apps/bwclk/app.js b/apps/bwclk/app.js index 770c053c2..359baebae 100644 --- a/apps/bwclk/app.js +++ b/apps/bwclk/app.js @@ -135,7 +135,7 @@ let clockInfoMenu = clock_info.addInteractive(clockInfoItems, { app: "bwclk", x : 0, y: 135, - w: W, + w: W+1, h: H-135, draw : (itm, info, options) => { var hideClkInfo = info.text == null; diff --git a/apps/bwclk/metadata.json b/apps/bwclk/metadata.json index 430f466b2..6b8230555 100644 --- a/apps/bwclk/metadata.json +++ b/apps/bwclk/metadata.json @@ -1,7 +1,7 @@ { "id": "bwclk", "name": "BW Clock", - "version": "0.31", + "version": "0.32", "description": "A very minimalistic clock.", "readme": "README.md", "icon": "app.png",