From 0d1d49a8173aac659b7e03a6c1ab4b735d7b40fa Mon Sep 17 00:00:00 2001 From: jx163 Date: Tue, 5 Aug 2025 21:21:12 +1200 Subject: [PATCH 1/2] Comment out the backdrop-filter in div.edit-mode-bottom-banner --- src/styles/color-themes.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/color-themes.scss b/src/styles/color-themes.scss index ac8676f4f8..1b1de353a4 100644 --- a/src/styles/color-themes.scss +++ b/src/styles/color-themes.scss @@ -1889,7 +1889,7 @@ html[data-theme='neomorphic'] { div.edit-mode-bottom-banner, .add-new-section { background: rgba(255, 255, 255, 0.15); - backdrop-filter: blur(50px); + //backdrop-filter: blur(50px); } .critical-error-wrap { @@ -1910,7 +1910,7 @@ html[data-theme='glass'] { } html[data-theme='glass-2'] { - body { + body { background: url('https://i.ibb.co/FnLH6bj/dashy-glass.jpg') center center no-repeat; background-size: cover; background-color: #090317; From 2dddbbae6b1efb3a3690988051537ea588f11b1b Mon Sep 17 00:00:00 2001 From: jx163 Date: Sat, 9 Aug 2025 15:11:46 +1200 Subject: [PATCH 2/2] Updated to allow WeatherAPI support by adjusting request params and parsing. --- src/components/Widgets/WeatherForecast.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/components/Widgets/WeatherForecast.vue b/src/components/Widgets/WeatherForecast.vue index c95c045d51..1f62ae3ba3 100644 --- a/src/components/Widgets/WeatherForecast.vue +++ b/src/components/Widgets/WeatherForecast.vue @@ -57,7 +57,8 @@ export default { }, endpoint() { const { apiKey, city } = this.options; - const params = `?q=${city}&cnt=${this.numDays}&units=${this.units}&appid=${apiKey}`; + const count = this.numDays * 8; + const params = `?q=${city}&cnt=${count}&units=${this.units}&appid=${apiKey}`; return `${widgetApiEndpoints.weatherForecast}${params}`; }, tempDisplayUnits() { @@ -92,9 +93,12 @@ export default { /* Process the results from the Axios request */ processData(dataList) { const uiWeatherData = []; - dataList.list.forEach((day, index) => { + + const step = 8; + for (let i = 1; i < dataList.list.length; i += step) { + const day = dataList.list[i]; uiWeatherData.push({ - index, + index: i, date: this.dateFromStamp(day.dt), icon: day.weather[0].icon, main: day.weather[0].main, @@ -102,7 +106,7 @@ export default { temp: this.processTemp(day.main.temp), info: this.makeWeatherData(day), }); - }); + } this.weatherData = uiWeatherData; }, /* Process additional data, needed when user clicks a given day */