From 1826ba235707a927ee960b7586d4aa7cd5262e9a Mon Sep 17 00:00:00 2001 From: XxTysweezyxX Date: Tue, 3 Sep 2024 02:23:01 +0100 Subject: [PATCH 1/6] Fix #30551: Added snowfall option to weather status Signed-off-by: Julien Veyssier --- apps/weather_status/src/App.vue | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/apps/weather_status/src/App.vue b/apps/weather_status/src/App.vue index dce45f5872b22..e086aa0391b80 100644 --- a/apps/weather_status/src/App.vue +++ b/apps/weather_status/src/App.vue @@ -98,6 +98,20 @@ const weatherOptions = { ? t('weather_status', '{temperature} {unit} cloudy later today', { temperature, unit }) : t('weather_status', '{temperature} {unit} cloudy', { temperature, unit }), }, +// Added snowfall weather conditions for both day and night on line 101 + snowfall_day: { + icon: 'icon-snowfall-day', + text: (temperature, unit, later = false) => later + ? t('weather_status', '{temperature} {unit} snowfall later today', { temperature, unit }) + : t('weather_status', '{temperature} {unit} snowfall', { temperature, unit }), + }, + snowfall_night: { + icon: 'icon-snowfall-night', + text: (temperature, unit, later = false) => later + ? t('weather_status', '{temperature} {unit} snowfall later today', { temperature, unit }) + : t('weather_status', '{temperature} {unit} snowfall', { temperature, unit }), + }, + fair_day: { icon: 'icon-fair-day', text: (temperature, unit, later = false) => later From bfa1c7e9cef424ae597a3580c2ce21914b389dde Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Tue, 24 Sep 2024 15:57:52 +0200 Subject: [PATCH 2/6] feat(weatherstatus): support all weather codes from api.met.no, use the icons provided by met.no, cleanup UI Signed-off-by: Julien Veyssier --- apps/weather_status/img/cloud-cloud.svg | 1 - apps/weather_status/img/cloud-dots.svg | 1 - apps/weather_status/img/cross.svg | 4 +- apps/weather_status/img/drop.svg | 1 - apps/weather_status/img/fog.svg | 1 - apps/weather_status/img/half-sun.svg | 1 - apps/weather_status/img/heavy-rain.svg | 1 - apps/weather_status/img/light-rain.svg | 1 - .../img/met.no.icons/clearsky_day.svg | 23 ++ .../img/met.no.icons/clearsky_night.svg | 16 ++ .../met.no.icons/clearsky_polartwilight.svg | 32 +++ .../img/met.no.icons/cloudy.svg | 12 + .../img/met.no.icons/fair_day.svg | 34 +++ .../img/met.no.icons/fair_night.svg | 27 +++ .../img/met.no.icons/fair_polartwilight.svg | 43 ++++ apps/weather_status/img/met.no.icons/fog.svg | 20 ++ .../img/met.no.icons/heavyrain.svg | 20 ++ .../img/met.no.icons/heavyrainandthunder.svg | 31 +++ .../img/met.no.icons/heavyrainshowers_day.svg | 45 ++++ .../met.no.icons/heavyrainshowers_night.svg | 38 ++++ .../heavyrainshowers_polartwilight.svg | 54 +++++ .../heavyrainshowersandthunder_day.svg | 55 +++++ .../heavyrainshowersandthunder_night.svg | 48 ++++ ...avyrainshowersandthunder_polartwilight.svg | 64 ++++++ .../img/met.no.icons/heavysleet.svg | 23 ++ .../img/met.no.icons/heavysleetandthunder.svg | 34 +++ .../met.no.icons/heavysleetshowers_day.svg | 48 ++++ .../met.no.icons/heavysleetshowers_night.svg | 41 ++++ .../heavysleetshowers_polartwilight.svg | 57 +++++ .../heavysleetshowersandthunder_day.svg | 58 +++++ .../heavysleetshowersandthunder_night.svg | 51 +++++ ...vysleetshowersandthunder_polartwilight.svg | 67 ++++++ .../img/met.no.icons/heavysnow.svg | 20 ++ .../img/met.no.icons/heavysnowandthunder.svg | 31 +++ .../img/met.no.icons/heavysnowshowers_day.svg | 45 ++++ .../met.no.icons/heavysnowshowers_night.svg | 38 ++++ .../heavysnowshowers_polartwilight.svg | 54 +++++ .../heavysnowshowersandthunder_day.svg | 55 +++++ .../heavysnowshowersandthunder_night.svg | 48 ++++ ...avysnowshowersandthunder_polartwilight.svg | 64 ++++++ .../img/met.no.icons/lightrain.svg | 17 ++ .../img/met.no.icons/lightrainandthunder.svg | 28 +++ .../img/met.no.icons/lightrainshowers_day.svg | 42 ++++ .../met.no.icons/lightrainshowers_night.svg | 35 +++ .../lightrainshowers_polartwilight.svg | 51 +++++ .../lightrainshowersandthunder_day.svg | 52 +++++ .../lightrainshowersandthunder_night.svg | 45 ++++ ...ghtrainshowersandthunder_polartwilight.svg | 61 +++++ .../img/met.no.icons/lightsleet.svg | 20 ++ .../img/met.no.icons/lightsleetandthunder.svg | 31 +++ .../met.no.icons/lightsleetshowers_day.svg | 45 ++++ .../met.no.icons/lightsleetshowers_night.svg | 38 ++++ .../lightsleetshowers_polartwilight.svg | 54 +++++ .../img/met.no.icons/lightsnow.svg | 17 ++ .../img/met.no.icons/lightsnowandthunder.svg | 28 +++ .../img/met.no.icons/lightsnowshowers_day.svg | 42 ++++ .../met.no.icons/lightsnowshowers_night.svg | 35 +++ .../lightsnowshowers_polartwilight.svg | 51 +++++ .../lightssleetshowersandthunder_day.svg | 55 +++++ .../lightssleetshowersandthunder_night.svg | 48 ++++ ...tssleetshowersandthunder_polartwilight.svg | 64 ++++++ .../lightssnowshowersandthunder_day.svg | 52 +++++ .../lightssnowshowersandthunder_night.svg | 45 ++++ ...htssnowshowersandthunder_polartwilight.svg | 61 +++++ .../img/met.no.icons/partlycloudy_day.svg | 37 +++ .../img/met.no.icons/partlycloudy_night.svg | 30 +++ .../partlycloudy_polartwilight.svg | 46 ++++ apps/weather_status/img/met.no.icons/rain.svg | 18 ++ .../img/met.no.icons/rainandthunder.svg | 29 +++ .../img/met.no.icons/rainshowers_day.svg | 43 ++++ .../img/met.no.icons/rainshowers_night.svg | 36 +++ .../rainshowers_polartwilight.svg | 52 +++++ .../rainshowersandthunder_day.svg | 53 +++++ .../rainshowersandthunder_night.svg | 46 ++++ .../rainshowersandthunder_polartwilight.svg | 62 +++++ .../weather_status/img/met.no.icons/sleet.svg | 21 ++ .../img/met.no.icons/sleetandthunder.svg | 32 +++ .../img/met.no.icons/sleetshowers_day.svg | 46 ++++ .../img/met.no.icons/sleetshowers_night.svg | 39 ++++ .../sleetshowers_polartwilight.svg | 55 +++++ .../sleetshowersandthunder_day.svg | 56 +++++ .../sleetshowersandthunder_night.svg | 49 ++++ .../sleetshowersandthunder_polartwilight.svg | 65 ++++++ apps/weather_status/img/met.no.icons/snow.svg | 18 ++ .../img/met.no.icons/snowandthunder.svg | 29 +++ .../img/met.no.icons/snowshowers_day.svg | 43 ++++ .../img/met.no.icons/snowshowers_night.svg | 36 +++ .../snowshowers_polartwilight.svg | 52 +++++ .../snowshowersandthunder_day.svg | 53 +++++ .../snowshowersandthunder_night.svg | 46 ++++ .../snowshowersandthunder_polartwilight.svg | 62 +++++ .../img/moon-cloud-heavy-rain.svg | 1 - .../img/moon-cloud-light-rain.svg | 1 - apps/weather_status/img/moon-cloud-rain.svg | 1 - apps/weather_status/img/moon-cloud.svg | 1 - apps/weather_status/img/moon-small-cloud.svg | 1 - apps/weather_status/img/moon.svg | 1 - apps/weather_status/img/rain.svg | 1 - apps/weather_status/img/snow.svg | 1 - .../img/sun-cloud-heavy-rain.svg | 1 - .../img/sun-cloud-light-rain.svg | 1 - apps/weather_status/img/sun-cloud-rain.svg | 1 - apps/weather_status/img/sun-cloud.svg | 1 - apps/weather_status/img/sun-small-cloud.svg | 1 - apps/weather_status/img/sun.svg | 1 - apps/weather_status/img/thunder.svg | 1 - apps/weather_status/img/umbrella.svg | 1 - apps/weather_status/src/App.vue | 213 +++++++----------- 108 files changed, 3551 insertions(+), 156 deletions(-) delete mode 100644 apps/weather_status/img/cloud-cloud.svg delete mode 100644 apps/weather_status/img/cloud-dots.svg delete mode 100644 apps/weather_status/img/drop.svg delete mode 100644 apps/weather_status/img/fog.svg delete mode 100644 apps/weather_status/img/half-sun.svg delete mode 100644 apps/weather_status/img/heavy-rain.svg delete mode 100644 apps/weather_status/img/light-rain.svg create mode 100644 apps/weather_status/img/met.no.icons/clearsky_day.svg create mode 100644 apps/weather_status/img/met.no.icons/clearsky_night.svg create mode 100644 apps/weather_status/img/met.no.icons/clearsky_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/cloudy.svg create mode 100644 apps/weather_status/img/met.no.icons/fair_day.svg create mode 100644 apps/weather_status/img/met.no.icons/fair_night.svg create mode 100644 apps/weather_status/img/met.no.icons/fair_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/fog.svg create mode 100644 apps/weather_status/img/met.no.icons/heavyrain.svg create mode 100644 apps/weather_status/img/met.no.icons/heavyrainandthunder.svg create mode 100644 apps/weather_status/img/met.no.icons/heavyrainshowers_day.svg create mode 100644 apps/weather_status/img/met.no.icons/heavyrainshowers_night.svg create mode 100644 apps/weather_status/img/met.no.icons/heavyrainshowers_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_day.svg create mode 100644 apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_night.svg create mode 100644 apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysleet.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysleetandthunder.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysleetshowers_day.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysleetshowers_night.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysleetshowers_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_day.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_night.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysnow.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysnowandthunder.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysnowshowers_day.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysnowshowers_night.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysnowshowers_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_day.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_night.svg create mode 100644 apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/lightrain.svg create mode 100644 apps/weather_status/img/met.no.icons/lightrainandthunder.svg create mode 100644 apps/weather_status/img/met.no.icons/lightrainshowers_day.svg create mode 100644 apps/weather_status/img/met.no.icons/lightrainshowers_night.svg create mode 100644 apps/weather_status/img/met.no.icons/lightrainshowers_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/lightrainshowersandthunder_day.svg create mode 100644 apps/weather_status/img/met.no.icons/lightrainshowersandthunder_night.svg create mode 100644 apps/weather_status/img/met.no.icons/lightrainshowersandthunder_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/lightsleet.svg create mode 100644 apps/weather_status/img/met.no.icons/lightsleetandthunder.svg create mode 100644 apps/weather_status/img/met.no.icons/lightsleetshowers_day.svg create mode 100644 apps/weather_status/img/met.no.icons/lightsleetshowers_night.svg create mode 100644 apps/weather_status/img/met.no.icons/lightsleetshowers_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/lightsnow.svg create mode 100644 apps/weather_status/img/met.no.icons/lightsnowandthunder.svg create mode 100644 apps/weather_status/img/met.no.icons/lightsnowshowers_day.svg create mode 100644 apps/weather_status/img/met.no.icons/lightsnowshowers_night.svg create mode 100644 apps/weather_status/img/met.no.icons/lightsnowshowers_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_day.svg create mode 100644 apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_night.svg create mode 100644 apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_day.svg create mode 100644 apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_night.svg create mode 100644 apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/partlycloudy_day.svg create mode 100644 apps/weather_status/img/met.no.icons/partlycloudy_night.svg create mode 100644 apps/weather_status/img/met.no.icons/partlycloudy_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/rain.svg create mode 100644 apps/weather_status/img/met.no.icons/rainandthunder.svg create mode 100644 apps/weather_status/img/met.no.icons/rainshowers_day.svg create mode 100644 apps/weather_status/img/met.no.icons/rainshowers_night.svg create mode 100644 apps/weather_status/img/met.no.icons/rainshowers_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/rainshowersandthunder_day.svg create mode 100644 apps/weather_status/img/met.no.icons/rainshowersandthunder_night.svg create mode 100644 apps/weather_status/img/met.no.icons/rainshowersandthunder_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/sleet.svg create mode 100644 apps/weather_status/img/met.no.icons/sleetandthunder.svg create mode 100644 apps/weather_status/img/met.no.icons/sleetshowers_day.svg create mode 100644 apps/weather_status/img/met.no.icons/sleetshowers_night.svg create mode 100644 apps/weather_status/img/met.no.icons/sleetshowers_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/sleetshowersandthunder_day.svg create mode 100644 apps/weather_status/img/met.no.icons/sleetshowersandthunder_night.svg create mode 100644 apps/weather_status/img/met.no.icons/sleetshowersandthunder_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/snow.svg create mode 100644 apps/weather_status/img/met.no.icons/snowandthunder.svg create mode 100644 apps/weather_status/img/met.no.icons/snowshowers_day.svg create mode 100644 apps/weather_status/img/met.no.icons/snowshowers_night.svg create mode 100644 apps/weather_status/img/met.no.icons/snowshowers_polartwilight.svg create mode 100644 apps/weather_status/img/met.no.icons/snowshowersandthunder_day.svg create mode 100644 apps/weather_status/img/met.no.icons/snowshowersandthunder_night.svg create mode 100644 apps/weather_status/img/met.no.icons/snowshowersandthunder_polartwilight.svg delete mode 100644 apps/weather_status/img/moon-cloud-heavy-rain.svg delete mode 100644 apps/weather_status/img/moon-cloud-light-rain.svg delete mode 100644 apps/weather_status/img/moon-cloud-rain.svg delete mode 100644 apps/weather_status/img/moon-cloud.svg delete mode 100644 apps/weather_status/img/moon-small-cloud.svg delete mode 100644 apps/weather_status/img/moon.svg delete mode 100644 apps/weather_status/img/rain.svg delete mode 100644 apps/weather_status/img/snow.svg delete mode 100644 apps/weather_status/img/sun-cloud-heavy-rain.svg delete mode 100644 apps/weather_status/img/sun-cloud-light-rain.svg delete mode 100644 apps/weather_status/img/sun-cloud-rain.svg delete mode 100644 apps/weather_status/img/sun-cloud.svg delete mode 100644 apps/weather_status/img/sun-small-cloud.svg delete mode 100644 apps/weather_status/img/sun.svg delete mode 100644 apps/weather_status/img/thunder.svg delete mode 100644 apps/weather_status/img/umbrella.svg diff --git a/apps/weather_status/img/cloud-cloud.svg b/apps/weather_status/img/cloud-cloud.svg deleted file mode 100644 index 29659871e2a39..0000000000000 --- a/apps/weather_status/img/cloud-cloud.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/cloud-dots.svg b/apps/weather_status/img/cloud-dots.svg deleted file mode 100644 index c77234c70bcd1..0000000000000 --- a/apps/weather_status/img/cloud-dots.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/cross.svg b/apps/weather_status/img/cross.svg index 2656253777f9f..daaca07c30fc8 100644 --- a/apps/weather_status/img/cross.svg +++ b/apps/weather_status/img/cross.svg @@ -1 +1,3 @@ - + + + \ No newline at end of file diff --git a/apps/weather_status/img/drop.svg b/apps/weather_status/img/drop.svg deleted file mode 100644 index 46c2d320e5ead..0000000000000 --- a/apps/weather_status/img/drop.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/fog.svg b/apps/weather_status/img/fog.svg deleted file mode 100644 index b2c44978e0109..0000000000000 --- a/apps/weather_status/img/fog.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/half-sun.svg b/apps/weather_status/img/half-sun.svg deleted file mode 100644 index cae6a099a5638..0000000000000 --- a/apps/weather_status/img/half-sun.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/heavy-rain.svg b/apps/weather_status/img/heavy-rain.svg deleted file mode 100644 index 80b5405324678..0000000000000 --- a/apps/weather_status/img/heavy-rain.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/light-rain.svg b/apps/weather_status/img/light-rain.svg deleted file mode 100644 index d6844df16d172..0000000000000 --- a/apps/weather_status/img/light-rain.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/met.no.icons/clearsky_day.svg b/apps/weather_status/img/met.no.icons/clearsky_day.svg new file mode 100644 index 0000000000000..e8f7541a576a1 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/clearsky_day.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/clearsky_night.svg b/apps/weather_status/img/met.no.icons/clearsky_night.svg new file mode 100644 index 0000000000000..23f9b5ea0504f --- /dev/null +++ b/apps/weather_status/img/met.no.icons/clearsky_night.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/clearsky_polartwilight.svg b/apps/weather_status/img/met.no.icons/clearsky_polartwilight.svg new file mode 100644 index 0000000000000..e6afadc8c2c83 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/clearsky_polartwilight.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/cloudy.svg b/apps/weather_status/img/met.no.icons/cloudy.svg new file mode 100644 index 0000000000000..eb98fe8392852 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/cloudy.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/fair_day.svg b/apps/weather_status/img/met.no.icons/fair_day.svg new file mode 100644 index 0000000000000..2daaed32430c1 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/fair_day.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/fair_night.svg b/apps/weather_status/img/met.no.icons/fair_night.svg new file mode 100644 index 0000000000000..1814563c37463 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/fair_night.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/fair_polartwilight.svg b/apps/weather_status/img/met.no.icons/fair_polartwilight.svg new file mode 100644 index 0000000000000..1d557ca375312 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/fair_polartwilight.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/fog.svg b/apps/weather_status/img/met.no.icons/fog.svg new file mode 100644 index 0000000000000..3cb13b4138e4d --- /dev/null +++ b/apps/weather_status/img/met.no.icons/fog.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavyrain.svg b/apps/weather_status/img/met.no.icons/heavyrain.svg new file mode 100644 index 0000000000000..9a85ccd6e8cc3 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavyrain.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavyrainandthunder.svg b/apps/weather_status/img/met.no.icons/heavyrainandthunder.svg new file mode 100644 index 0000000000000..0e73a8ccd65c1 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavyrainandthunder.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavyrainshowers_day.svg b/apps/weather_status/img/met.no.icons/heavyrainshowers_day.svg new file mode 100644 index 0000000000000..89f60eba57595 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavyrainshowers_day.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavyrainshowers_night.svg b/apps/weather_status/img/met.no.icons/heavyrainshowers_night.svg new file mode 100644 index 0000000000000..adb85eff758e8 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavyrainshowers_night.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavyrainshowers_polartwilight.svg b/apps/weather_status/img/met.no.icons/heavyrainshowers_polartwilight.svg new file mode 100644 index 0000000000000..b97fbe2d572ca --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavyrainshowers_polartwilight.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_day.svg b/apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_day.svg new file mode 100644 index 0000000000000..e2922a2d08242 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_day.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_night.svg b/apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_night.svg new file mode 100644 index 0000000000000..4389a4929044c --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_night.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_polartwilight.svg b/apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_polartwilight.svg new file mode 100644 index 0000000000000..e559dd6f55c96 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavyrainshowersandthunder_polartwilight.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysleet.svg b/apps/weather_status/img/met.no.icons/heavysleet.svg new file mode 100644 index 0000000000000..e67ff4eb499ee --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysleet.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysleetandthunder.svg b/apps/weather_status/img/met.no.icons/heavysleetandthunder.svg new file mode 100644 index 0000000000000..2729d5cf5de6a --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysleetandthunder.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysleetshowers_day.svg b/apps/weather_status/img/met.no.icons/heavysleetshowers_day.svg new file mode 100644 index 0000000000000..d9e146dc87dc3 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysleetshowers_day.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysleetshowers_night.svg b/apps/weather_status/img/met.no.icons/heavysleetshowers_night.svg new file mode 100644 index 0000000000000..aa71b146b95cd --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysleetshowers_night.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysleetshowers_polartwilight.svg b/apps/weather_status/img/met.no.icons/heavysleetshowers_polartwilight.svg new file mode 100644 index 0000000000000..c275176f48231 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysleetshowers_polartwilight.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_day.svg b/apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_day.svg new file mode 100644 index 0000000000000..dbe271523a8dc --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_day.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_night.svg b/apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_night.svg new file mode 100644 index 0000000000000..234bac9bb3f25 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_night.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_polartwilight.svg b/apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_polartwilight.svg new file mode 100644 index 0000000000000..18ed7fcd90c1f --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysleetshowersandthunder_polartwilight.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysnow.svg b/apps/weather_status/img/met.no.icons/heavysnow.svg new file mode 100644 index 0000000000000..6e6a05dfdcb8e --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysnow.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysnowandthunder.svg b/apps/weather_status/img/met.no.icons/heavysnowandthunder.svg new file mode 100644 index 0000000000000..719ed5d21bd6e --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysnowandthunder.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysnowshowers_day.svg b/apps/weather_status/img/met.no.icons/heavysnowshowers_day.svg new file mode 100644 index 0000000000000..06ab06748c276 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysnowshowers_day.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysnowshowers_night.svg b/apps/weather_status/img/met.no.icons/heavysnowshowers_night.svg new file mode 100644 index 0000000000000..fadfc895c683c --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysnowshowers_night.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysnowshowers_polartwilight.svg b/apps/weather_status/img/met.no.icons/heavysnowshowers_polartwilight.svg new file mode 100644 index 0000000000000..a1321a8a8ebe1 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysnowshowers_polartwilight.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_day.svg b/apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_day.svg new file mode 100644 index 0000000000000..2e296a31f2f4b --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_day.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_night.svg b/apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_night.svg new file mode 100644 index 0000000000000..47c25ab29a74d --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_night.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_polartwilight.svg b/apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_polartwilight.svg new file mode 100644 index 0000000000000..9abac751e11c6 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/heavysnowshowersandthunder_polartwilight.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightrain.svg b/apps/weather_status/img/met.no.icons/lightrain.svg new file mode 100644 index 0000000000000..67a1c8e9312b2 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightrain.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightrainandthunder.svg b/apps/weather_status/img/met.no.icons/lightrainandthunder.svg new file mode 100644 index 0000000000000..cdab6e26c556d --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightrainandthunder.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightrainshowers_day.svg b/apps/weather_status/img/met.no.icons/lightrainshowers_day.svg new file mode 100644 index 0000000000000..f02e940699518 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightrainshowers_day.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightrainshowers_night.svg b/apps/weather_status/img/met.no.icons/lightrainshowers_night.svg new file mode 100644 index 0000000000000..5a483fc054442 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightrainshowers_night.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightrainshowers_polartwilight.svg b/apps/weather_status/img/met.no.icons/lightrainshowers_polartwilight.svg new file mode 100644 index 0000000000000..2648cb4d78ea7 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightrainshowers_polartwilight.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightrainshowersandthunder_day.svg b/apps/weather_status/img/met.no.icons/lightrainshowersandthunder_day.svg new file mode 100644 index 0000000000000..016786ae1b00e --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightrainshowersandthunder_day.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightrainshowersandthunder_night.svg b/apps/weather_status/img/met.no.icons/lightrainshowersandthunder_night.svg new file mode 100644 index 0000000000000..38319199748ad --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightrainshowersandthunder_night.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightrainshowersandthunder_polartwilight.svg b/apps/weather_status/img/met.no.icons/lightrainshowersandthunder_polartwilight.svg new file mode 100644 index 0000000000000..e7fff4f55ebd7 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightrainshowersandthunder_polartwilight.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightsleet.svg b/apps/weather_status/img/met.no.icons/lightsleet.svg new file mode 100644 index 0000000000000..eaf49fe7990d0 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightsleet.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightsleetandthunder.svg b/apps/weather_status/img/met.no.icons/lightsleetandthunder.svg new file mode 100644 index 0000000000000..503811eac4ca4 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightsleetandthunder.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightsleetshowers_day.svg b/apps/weather_status/img/met.no.icons/lightsleetshowers_day.svg new file mode 100644 index 0000000000000..7a162bde33f6c --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightsleetshowers_day.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightsleetshowers_night.svg b/apps/weather_status/img/met.no.icons/lightsleetshowers_night.svg new file mode 100644 index 0000000000000..cd283b554b2bf --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightsleetshowers_night.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightsleetshowers_polartwilight.svg b/apps/weather_status/img/met.no.icons/lightsleetshowers_polartwilight.svg new file mode 100644 index 0000000000000..d31bb3fa59b5a --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightsleetshowers_polartwilight.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightsnow.svg b/apps/weather_status/img/met.no.icons/lightsnow.svg new file mode 100644 index 0000000000000..4ece601803add --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightsnow.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightsnowandthunder.svg b/apps/weather_status/img/met.no.icons/lightsnowandthunder.svg new file mode 100644 index 0000000000000..d8b8d2545e247 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightsnowandthunder.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightsnowshowers_day.svg b/apps/weather_status/img/met.no.icons/lightsnowshowers_day.svg new file mode 100644 index 0000000000000..0b9f99e531ea9 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightsnowshowers_day.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightsnowshowers_night.svg b/apps/weather_status/img/met.no.icons/lightsnowshowers_night.svg new file mode 100644 index 0000000000000..54b0cf2fa1426 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightsnowshowers_night.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightsnowshowers_polartwilight.svg b/apps/weather_status/img/met.no.icons/lightsnowshowers_polartwilight.svg new file mode 100644 index 0000000000000..e2d8eb8fadb25 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightsnowshowers_polartwilight.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_day.svg b/apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_day.svg new file mode 100644 index 0000000000000..bdca36d2cbee2 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_day.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_night.svg b/apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_night.svg new file mode 100644 index 0000000000000..4b8be4d275e51 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_night.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_polartwilight.svg b/apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_polartwilight.svg new file mode 100644 index 0000000000000..42308f92415eb --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightssleetshowersandthunder_polartwilight.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_day.svg b/apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_day.svg new file mode 100644 index 0000000000000..62bf909e4242c --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_day.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_night.svg b/apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_night.svg new file mode 100644 index 0000000000000..6b0b6d0321a3b --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_night.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_polartwilight.svg b/apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_polartwilight.svg new file mode 100644 index 0000000000000..58d06499c6d3b --- /dev/null +++ b/apps/weather_status/img/met.no.icons/lightssnowshowersandthunder_polartwilight.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/partlycloudy_day.svg b/apps/weather_status/img/met.no.icons/partlycloudy_day.svg new file mode 100644 index 0000000000000..827e688c34ec4 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/partlycloudy_day.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/partlycloudy_night.svg b/apps/weather_status/img/met.no.icons/partlycloudy_night.svg new file mode 100644 index 0000000000000..eeb643f196137 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/partlycloudy_night.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/partlycloudy_polartwilight.svg b/apps/weather_status/img/met.no.icons/partlycloudy_polartwilight.svg new file mode 100644 index 0000000000000..cb3647bf3afb1 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/partlycloudy_polartwilight.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/rain.svg b/apps/weather_status/img/met.no.icons/rain.svg new file mode 100644 index 0000000000000..1da5ea7a8ad3f --- /dev/null +++ b/apps/weather_status/img/met.no.icons/rain.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/rainandthunder.svg b/apps/weather_status/img/met.no.icons/rainandthunder.svg new file mode 100644 index 0000000000000..6a99951f982e6 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/rainandthunder.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/rainshowers_day.svg b/apps/weather_status/img/met.no.icons/rainshowers_day.svg new file mode 100644 index 0000000000000..0226b47482bf6 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/rainshowers_day.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/rainshowers_night.svg b/apps/weather_status/img/met.no.icons/rainshowers_night.svg new file mode 100644 index 0000000000000..58fe84790d297 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/rainshowers_night.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/rainshowers_polartwilight.svg b/apps/weather_status/img/met.no.icons/rainshowers_polartwilight.svg new file mode 100644 index 0000000000000..80ede843bd09c --- /dev/null +++ b/apps/weather_status/img/met.no.icons/rainshowers_polartwilight.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/rainshowersandthunder_day.svg b/apps/weather_status/img/met.no.icons/rainshowersandthunder_day.svg new file mode 100644 index 0000000000000..e5da5a19b713d --- /dev/null +++ b/apps/weather_status/img/met.no.icons/rainshowersandthunder_day.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/rainshowersandthunder_night.svg b/apps/weather_status/img/met.no.icons/rainshowersandthunder_night.svg new file mode 100644 index 0000000000000..1eb876d51a8e9 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/rainshowersandthunder_night.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/rainshowersandthunder_polartwilight.svg b/apps/weather_status/img/met.no.icons/rainshowersandthunder_polartwilight.svg new file mode 100644 index 0000000000000..4fca93360da06 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/rainshowersandthunder_polartwilight.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/sleet.svg b/apps/weather_status/img/met.no.icons/sleet.svg new file mode 100644 index 0000000000000..28a297fd02ec7 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/sleet.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/sleetandthunder.svg b/apps/weather_status/img/met.no.icons/sleetandthunder.svg new file mode 100644 index 0000000000000..907428f4baeed --- /dev/null +++ b/apps/weather_status/img/met.no.icons/sleetandthunder.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/sleetshowers_day.svg b/apps/weather_status/img/met.no.icons/sleetshowers_day.svg new file mode 100644 index 0000000000000..97e5afa805cdd --- /dev/null +++ b/apps/weather_status/img/met.no.icons/sleetshowers_day.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/sleetshowers_night.svg b/apps/weather_status/img/met.no.icons/sleetshowers_night.svg new file mode 100644 index 0000000000000..c43a73bedbebf --- /dev/null +++ b/apps/weather_status/img/met.no.icons/sleetshowers_night.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/sleetshowers_polartwilight.svg b/apps/weather_status/img/met.no.icons/sleetshowers_polartwilight.svg new file mode 100644 index 0000000000000..e23316955628a --- /dev/null +++ b/apps/weather_status/img/met.no.icons/sleetshowers_polartwilight.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/sleetshowersandthunder_day.svg b/apps/weather_status/img/met.no.icons/sleetshowersandthunder_day.svg new file mode 100644 index 0000000000000..01cb6e79f6ac4 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/sleetshowersandthunder_day.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/sleetshowersandthunder_night.svg b/apps/weather_status/img/met.no.icons/sleetshowersandthunder_night.svg new file mode 100644 index 0000000000000..904f987e9e1c3 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/sleetshowersandthunder_night.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/sleetshowersandthunder_polartwilight.svg b/apps/weather_status/img/met.no.icons/sleetshowersandthunder_polartwilight.svg new file mode 100644 index 0000000000000..1b53807e21b80 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/sleetshowersandthunder_polartwilight.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/snow.svg b/apps/weather_status/img/met.no.icons/snow.svg new file mode 100644 index 0000000000000..25fed858b0b7d --- /dev/null +++ b/apps/weather_status/img/met.no.icons/snow.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/snowandthunder.svg b/apps/weather_status/img/met.no.icons/snowandthunder.svg new file mode 100644 index 0000000000000..c95513373321b --- /dev/null +++ b/apps/weather_status/img/met.no.icons/snowandthunder.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/snowshowers_day.svg b/apps/weather_status/img/met.no.icons/snowshowers_day.svg new file mode 100644 index 0000000000000..b80f82adfea76 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/snowshowers_day.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/snowshowers_night.svg b/apps/weather_status/img/met.no.icons/snowshowers_night.svg new file mode 100644 index 0000000000000..b5020649743f9 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/snowshowers_night.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/snowshowers_polartwilight.svg b/apps/weather_status/img/met.no.icons/snowshowers_polartwilight.svg new file mode 100644 index 0000000000000..90e936a7a5543 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/snowshowers_polartwilight.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/snowshowersandthunder_day.svg b/apps/weather_status/img/met.no.icons/snowshowersandthunder_day.svg new file mode 100644 index 0000000000000..08752db0a3318 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/snowshowersandthunder_day.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/snowshowersandthunder_night.svg b/apps/weather_status/img/met.no.icons/snowshowersandthunder_night.svg new file mode 100644 index 0000000000000..37e7df2d28a53 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/snowshowersandthunder_night.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/met.no.icons/snowshowersandthunder_polartwilight.svg b/apps/weather_status/img/met.no.icons/snowshowersandthunder_polartwilight.svg new file mode 100644 index 0000000000000..7fc3610fd25e4 --- /dev/null +++ b/apps/weather_status/img/met.no.icons/snowshowersandthunder_polartwilight.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/weather_status/img/moon-cloud-heavy-rain.svg b/apps/weather_status/img/moon-cloud-heavy-rain.svg deleted file mode 100644 index 32f46235598b3..0000000000000 --- a/apps/weather_status/img/moon-cloud-heavy-rain.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/moon-cloud-light-rain.svg b/apps/weather_status/img/moon-cloud-light-rain.svg deleted file mode 100644 index 96707a4645694..0000000000000 --- a/apps/weather_status/img/moon-cloud-light-rain.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/moon-cloud-rain.svg b/apps/weather_status/img/moon-cloud-rain.svg deleted file mode 100644 index 4752a42c63ba1..0000000000000 --- a/apps/weather_status/img/moon-cloud-rain.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/moon-cloud.svg b/apps/weather_status/img/moon-cloud.svg deleted file mode 100644 index b7d1225a9cbc4..0000000000000 --- a/apps/weather_status/img/moon-cloud.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/moon-small-cloud.svg b/apps/weather_status/img/moon-small-cloud.svg deleted file mode 100644 index c62d9664fa1b8..0000000000000 --- a/apps/weather_status/img/moon-small-cloud.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/moon.svg b/apps/weather_status/img/moon.svg deleted file mode 100644 index d94f720b48228..0000000000000 --- a/apps/weather_status/img/moon.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/rain.svg b/apps/weather_status/img/rain.svg deleted file mode 100644 index c3626d4e90433..0000000000000 --- a/apps/weather_status/img/rain.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/snow.svg b/apps/weather_status/img/snow.svg deleted file mode 100644 index 3a9200a87b266..0000000000000 --- a/apps/weather_status/img/snow.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/sun-cloud-heavy-rain.svg b/apps/weather_status/img/sun-cloud-heavy-rain.svg deleted file mode 100644 index 2c633d839a333..0000000000000 --- a/apps/weather_status/img/sun-cloud-heavy-rain.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/sun-cloud-light-rain.svg b/apps/weather_status/img/sun-cloud-light-rain.svg deleted file mode 100644 index 64d4497d0c07f..0000000000000 --- a/apps/weather_status/img/sun-cloud-light-rain.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/sun-cloud-rain.svg b/apps/weather_status/img/sun-cloud-rain.svg deleted file mode 100644 index ba989ad6d4bf0..0000000000000 --- a/apps/weather_status/img/sun-cloud-rain.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/sun-cloud.svg b/apps/weather_status/img/sun-cloud.svg deleted file mode 100644 index c7af0a4d3b05a..0000000000000 --- a/apps/weather_status/img/sun-cloud.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/sun-small-cloud.svg b/apps/weather_status/img/sun-small-cloud.svg deleted file mode 100644 index a2fcde7059e5f..0000000000000 --- a/apps/weather_status/img/sun-small-cloud.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/sun.svg b/apps/weather_status/img/sun.svg deleted file mode 100644 index 14598354a5283..0000000000000 --- a/apps/weather_status/img/sun.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/thunder.svg b/apps/weather_status/img/thunder.svg deleted file mode 100644 index 0379c94e2c11d..0000000000000 --- a/apps/weather_status/img/thunder.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/img/umbrella.svg b/apps/weather_status/img/umbrella.svg deleted file mode 100644 index 1835415f3937f..0000000000000 --- a/apps/weather_status/img/umbrella.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/apps/weather_status/src/App.vue b/apps/weather_status/src/App.vue index e086aa0391b80..59be98e12fb8a 100644 --- a/apps/weather_status/src/App.vue +++ b/apps/weather_status/src/App.vue @@ -6,13 +6,21 @@