diff --git a/apps/clkinfocal/ChangeLog b/apps/clkinfocal/ChangeLog index 50da8d080..e3c19f0ba 100644 --- a/apps/clkinfocal/ChangeLog +++ b/apps/clkinfocal/ChangeLog @@ -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 \ No newline at end of file +0.03: Remove un-needed font requirement, now outputs transparent image +0.04: Fix image after 0.03 regression \ No newline at end of file diff --git a/apps/clkinfocal/clkinfo.js b/apps/clkinfocal/clkinfo.js index da9607bb4..893549399 100644 --- a/apps/clkinfocal/clkinfo.js +++ b/apps/clkinfocal/clkinfo.js @@ -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 { diff --git a/apps/clkinfocal/metadata.json b/apps/clkinfocal/metadata.json index 2f1182883..0bdcb5178 100644 --- a/apps/clkinfocal/metadata.json +++ b/apps/clkinfocal/metadata.json @@ -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"}],