mirror of https://github.com/espruino/BangleApps
clkinfocal 0.04: Fix image after 0.03 regression
parent
5ee8064bf2
commit
1528a42c09
|
@ -1,3 +1,4 @@
|
|||
0.01: New App!
|
||||
0.02: added settings options to change date format
|
||||
0.03: Remove un-needed font requirement, now outputs transparent image
|
||||
0.04: Fix image after 0.03 regression
|
|
@ -20,7 +20,7 @@
|
|||
get : () => {
|
||||
let d = new Date();
|
||||
let g = Graphics.createArrayBuffer(24,24,1,{msb:true});
|
||||
g.transparent = 1;
|
||||
g.transparent = 0;
|
||||
g.drawImage(atob("FhgBDADAMAMP/////////////////////8AADwAAPAAA8AADwAAPAAA8AADwAAPAAA8AADwAAPAAA8AADwAAP///////"),1,0);
|
||||
g.setFont("6x15").setFontAlign(0,0).drawString(d.getDate(),11,17);
|
||||
return {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ "id": "clkinfocal",
|
||||
"name": "Calendar Clockinfo",
|
||||
"version":"0.03",
|
||||
"version":"0.04",
|
||||
"description": "For clocks that display 'clockinfo' (messages that can be cycled through using the clock_info module) this displays the day of the month in the icon, and the weekday. There is also a settings menu to select the format of the text",
|
||||
"icon": "app.png",
|
||||
"screenshots": [{"url":"screenshot.png"}],
|
||||
|
|
Loading…
Reference in New Issue