clkinfocal 0.04: Fix image after 0.03 regression

pull/3395/head
Gordon Williams 2024-05-01 13:27:37 +01:00
parent 5ee8064bf2
commit 1528a42c09
3 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,4 @@
0.01: New App! 0.01: New App!
0.02: added settings options to change date format 0.02: added settings options to change date format
0.03: Remove un-needed font requirement, now outputs transparent image 0.03: Remove un-needed font requirement, now outputs transparent image
0.04: Fix image after 0.03 regression

View File

@ -20,7 +20,7 @@
get : () => { get : () => {
let d = new Date(); let d = new Date();
let g = Graphics.createArrayBuffer(24,24,1,{msb:true}); let g = Graphics.createArrayBuffer(24,24,1,{msb:true});
g.transparent = 1; g.transparent = 0;
g.drawImage(atob("FhgBDADAMAMP/////////////////////8AADwAAPAAA8AADwAAPAAA8AADwAAPAAA8AADwAAPAAA8AADwAAP///////"),1,0); g.drawImage(atob("FhgBDADAMAMP/////////////////////8AADwAAPAAA8AADwAAPAAA8AADwAAPAAA8AADwAAPAAA8AADwAAP///////"),1,0);
g.setFont("6x15").setFontAlign(0,0).drawString(d.getDate(),11,17); g.setFont("6x15").setFontAlign(0,0).drawString(d.getDate(),11,17);
return { return {

View File

@ -1,6 +1,6 @@
{ "id": "clkinfocal", { "id": "clkinfocal",
"name": "Calendar Clockinfo", "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", "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", "icon": "app.png",
"screenshots": [{"url":"screenshot.png"}], "screenshots": [{"url":"screenshot.png"}],