Compare commits

..

2 Commits

Author SHA1 Message Date
Matt Walsh
2368a30980 5.4.3 2022-12-12 10:52:31 -06:00
Matt Walsh
8efff1a057 fix alamanc graphics 2022-12-12 10:48:54 -06:00
3 changed files with 5 additions and 5 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "ws4kp",
"version": "5.4.1",
"version": "5.4.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "ws4kp",
"version": "5.4.1",
"version": "5.4.3",
"license": "MIT",
"dependencies": {
"eslint": "^8.21.0",

View File

@@ -1,6 +1,6 @@
{
"name": "ws4kp",
"version": "5.4.2",
"version": "5.4.3",
"description": "Welcome to the WeatherStar 4000+ project page!",
"main": "index.js",
"scripts": {
@@ -45,4 +45,4 @@
"eslint-plugin-import": "^2.26.0"
},
"dependencies": {}
}
}

View File

@@ -133,7 +133,7 @@ class Almanac extends WeatherDisplay {
fill.date = date;
fill.type = MoonPhase.phase;
fill.icon = { type: 'img', src: imageName(MoonPhase.Phase) };
fill.icon = { type: 'img', src: imageName(MoonPhase.phase) };
return this.fillTemplate('day', fill);
});