Merge pull request #3450 from paul-arg/vpw_clock

VPW clock: do not remove VGA8 font for fast loading
master
thyttan 2024-06-10 20:14:01 +02:00 committed by GitHub
commit fd7ea9a587
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -3,3 +3,4 @@
0.03: Set theme to light, add black as an option for foreground color 0.03: Set theme to light, add black as an option for foreground color
0.04: Handle fast loading 0.04: Handle fast loading
0.05: Fix theme reset for some themes 0.05: Fix theme reset for some themes
0.06: Minor fix: do not remove VGA8 font

View File

@ -167,7 +167,6 @@ Graphics.prototype.setFontMadeSunflower = function () {
if (drawTimeout) clearTimeout(drawTimeout); if (drawTimeout) clearTimeout(drawTimeout);
// remove custom font // remove custom font
delete Graphics.prototype.setFontMadeSunflower; delete Graphics.prototype.setFontMadeSunflower;
delete Graphics.prototype.setFontVGA8;
// revert theme to how it was before // revert theme to how it was before
g.setTheme(originalTheme); g.setTheme(originalTheme);
} }

View File

@ -3,7 +3,7 @@
"name": "Vaporwave Sunset Clock", "name": "Vaporwave Sunset Clock",
"shortName": "Vaporwave Sunset", "shortName": "Vaporwave Sunset",
"type": "clock", "type": "clock",
"version":"0.05", "version":"0.06",
"description": "A clock with a vaporwave sunset theme.", "description": "A clock with a vaporwave sunset theme.",
"tags": "clock", "tags": "clock",
"supports": ["BANGLEJS2"], "supports": ["BANGLEJS2"],