Merge pull request #2699 from thyttan/bwclock-fontless
[BW Clock lite] make clock_info border one pixel widermaster
commit
3b71304410
|
|
@ -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.
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue