Compare commits

...

3 Commits

Author SHA1 Message Date
Matt Walsh
7bb024eff5 6.2.3 2025-10-17 00:36:14 +00:00
Matt Walsh
f4a1a3a1d8 add hazards before custom scroll options close #149 2025-10-17 00:35:26 +00:00
Matt Walsh
9a5efe9d48 update dependencies 2025-10-17 00:14:59 +00:00
4 changed files with 678 additions and 660 deletions

1328
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "ws4kp", "name": "ws4kp",
"version": "6.2.2", "version": "6.2.3",
"description": "Welcome to the WeatherStar 4000+ project page!", "description": "Welcome to the WeatherStar 4000+ project page!",
"main": "index.mjs", "main": "index.mjs",
"type": "module", "type": "module",

View File

@@ -298,4 +298,5 @@ export {
hide, hide,
screenCount, screenCount,
atDefault, atDefault,
hazards,
}; };

View File

@@ -1,5 +1,5 @@
import Setting from './utils/setting.mjs'; import Setting from './utils/setting.mjs';
import { reset as resetScroll, addScreen as addScroll } from './currentweatherscroll.mjs'; import { reset as resetScroll, addScreen as addScroll, hazards } from './currentweatherscroll.mjs';
import { json } from './utils/fetch.mjs'; import { json } from './utils/fetch.mjs';
let firstRun = true; let firstRun = true;
@@ -42,8 +42,9 @@ const parseFeed = (textInput) => {
return; return;
} }
// add single text scroll // add single text scroll after hazards if present
resetScroll(); resetScroll();
addScroll(hazards);
addScroll( addScroll(
() => ( () => (
{ {
@@ -81,6 +82,8 @@ const getFeed = async (url) => {
// reset the scroll, then add the screens // reset the scroll, then add the screens
resetScroll(); resetScroll();
// add the hazards scroll first
addScroll(hazards);
titles.forEach((title) => { titles.forEach((title) => {
// data is provided to the screen handler, so we return a function // data is provided to the screen handler, so we return a function
addScroll( addScroll(