From 90546c944e527675a177ff40f7297999767e0da5 Mon Sep 17 00:00:00 2001 From: Timm Friebe Date: Tue, 31 Dec 2024 12:27:33 +0100 Subject: [PATCH] Bundle weather icons from https://basmilius.github.io/weather-icons/ --- src/main/webapp/static/weather/clear-day.svg | 1 + src/main/webapp/static/weather/drizzle.svg | 1 + src/main/webapp/static/weather/dust-day.svg | 1 + src/main/webapp/static/weather/dust-wind.svg | 1 + src/main/webapp/static/weather/dust.svg | 1 + .../webapp/static/weather/extreme-rain.svg | 89 +++++++++++++++++++ .../webapp/static/weather/extreme-snow.svg | 89 +++++++++++++++++++ src/main/webapp/static/weather/fog-day.svg | 1 + src/main/webapp/static/weather/fog.svg | 1 + src/main/webapp/static/weather/hail.svg | 1 + src/main/webapp/static/weather/haze.svg | 1 + src/main/webapp/static/weather/hurricane.svg | 1 + src/main/webapp/static/weather/mist.svg | 1 + .../webapp/static/weather/overcast-day.svg | 1 + .../weather/partly-cloudy-day-drizzle.svg | 1 + .../static/weather/partly-cloudy-day-fog.svg | 1 + .../static/weather/partly-cloudy-day-hail.svg | 1 + .../static/weather/partly-cloudy-day-rain.svg | 1 + .../weather/partly-cloudy-day-sleet.svg | 1 + .../static/weather/partly-cloudy-day-snow.svg | 1 + .../static/weather/partly-cloudy-day.svg | 1 + src/main/webapp/static/weather/rain.svg | 1 + src/main/webapp/static/weather/sleet.svg | 1 + src/main/webapp/static/weather/smoke.svg | 1 + src/main/webapp/static/weather/snow.svg | 1 + .../weather/thunderstorms-day-extreme.svg | 89 +++++++++++++++++++ .../static/weather/thunderstorms-day-rain.svg | 1 + .../static/weather/thunderstorms-day.svg | 1 + .../static/weather/thunderstorms-rain.svg | 1 + .../static/weather/thunderstorms-snow.svg | 1 + .../webapp/static/weather/thunderstorms.svg | 1 + src/main/webapp/static/weather/tornado.svg | 1 + src/main/webapp/static/weather/wind.svg | 1 + 33 files changed, 297 insertions(+) create mode 100644 src/main/webapp/static/weather/clear-day.svg create mode 100644 src/main/webapp/static/weather/drizzle.svg create mode 100644 src/main/webapp/static/weather/dust-day.svg create mode 100644 src/main/webapp/static/weather/dust-wind.svg create mode 100644 src/main/webapp/static/weather/dust.svg create mode 100644 src/main/webapp/static/weather/extreme-rain.svg create mode 100644 src/main/webapp/static/weather/extreme-snow.svg create mode 100644 src/main/webapp/static/weather/fog-day.svg create mode 100644 src/main/webapp/static/weather/fog.svg create mode 100644 src/main/webapp/static/weather/hail.svg create mode 100644 src/main/webapp/static/weather/haze.svg create mode 100644 src/main/webapp/static/weather/hurricane.svg create mode 100644 src/main/webapp/static/weather/mist.svg create mode 100644 src/main/webapp/static/weather/overcast-day.svg create mode 100644 src/main/webapp/static/weather/partly-cloudy-day-drizzle.svg create mode 100644 src/main/webapp/static/weather/partly-cloudy-day-fog.svg create mode 100644 src/main/webapp/static/weather/partly-cloudy-day-hail.svg create mode 100644 src/main/webapp/static/weather/partly-cloudy-day-rain.svg create mode 100644 src/main/webapp/static/weather/partly-cloudy-day-sleet.svg create mode 100644 src/main/webapp/static/weather/partly-cloudy-day-snow.svg create mode 100644 src/main/webapp/static/weather/partly-cloudy-day.svg create mode 100644 src/main/webapp/static/weather/rain.svg create mode 100644 src/main/webapp/static/weather/sleet.svg create mode 100644 src/main/webapp/static/weather/smoke.svg create mode 100644 src/main/webapp/static/weather/snow.svg create mode 100644 src/main/webapp/static/weather/thunderstorms-day-extreme.svg create mode 100644 src/main/webapp/static/weather/thunderstorms-day-rain.svg create mode 100644 src/main/webapp/static/weather/thunderstorms-day.svg create mode 100644 src/main/webapp/static/weather/thunderstorms-rain.svg create mode 100644 src/main/webapp/static/weather/thunderstorms-snow.svg create mode 100644 src/main/webapp/static/weather/thunderstorms.svg create mode 100644 src/main/webapp/static/weather/tornado.svg create mode 100644 src/main/webapp/static/weather/wind.svg diff --git a/src/main/webapp/static/weather/clear-day.svg b/src/main/webapp/static/weather/clear-day.svg new file mode 100644 index 0000000..7f4af1f --- /dev/null +++ b/src/main/webapp/static/weather/clear-day.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/drizzle.svg b/src/main/webapp/static/weather/drizzle.svg new file mode 100644 index 0000000..591bddc --- /dev/null +++ b/src/main/webapp/static/weather/drizzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/dust-day.svg b/src/main/webapp/static/weather/dust-day.svg new file mode 100644 index 0000000..7e91000 --- /dev/null +++ b/src/main/webapp/static/weather/dust-day.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/dust-wind.svg b/src/main/webapp/static/weather/dust-wind.svg new file mode 100644 index 0000000..aceeca0 --- /dev/null +++ b/src/main/webapp/static/weather/dust-wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/dust.svg b/src/main/webapp/static/weather/dust.svg new file mode 100644 index 0000000..d1e6ce2 --- /dev/null +++ b/src/main/webapp/static/weather/dust.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/extreme-rain.svg b/src/main/webapp/static/weather/extreme-rain.svg new file mode 100644 index 0000000..5b10050 --- /dev/null +++ b/src/main/webapp/static/weather/extreme-rain.svg @@ -0,0 +1,89 @@ + + + + + + Page not found · GitHub Pages + + + + +
+ +

404

+

File not found

+ +

+ The site configured at this address does not + contain the requested file. +

+ +

+ If this is your site, make sure that the filename case matches the URL + as well as any file permissions.
+ For root URLs (like http://example.com/) you must provide an + index.html file. +

+ +

+ Read the full documentation + for more information about using GitHub Pages. +

+ + + + + + +
+ + diff --git a/src/main/webapp/static/weather/extreme-snow.svg b/src/main/webapp/static/weather/extreme-snow.svg new file mode 100644 index 0000000..5b10050 --- /dev/null +++ b/src/main/webapp/static/weather/extreme-snow.svg @@ -0,0 +1,89 @@ + + + + + + Page not found · GitHub Pages + + + + +
+ +

404

+

File not found

+ +

+ The site configured at this address does not + contain the requested file. +

+ +

+ If this is your site, make sure that the filename case matches the URL + as well as any file permissions.
+ For root URLs (like http://example.com/) you must provide an + index.html file. +

+ +

+ Read the full documentation + for more information about using GitHub Pages. +

+ + + + + + +
+ + diff --git a/src/main/webapp/static/weather/fog-day.svg b/src/main/webapp/static/weather/fog-day.svg new file mode 100644 index 0000000..081b41f --- /dev/null +++ b/src/main/webapp/static/weather/fog-day.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/fog.svg b/src/main/webapp/static/weather/fog.svg new file mode 100644 index 0000000..38e0904 --- /dev/null +++ b/src/main/webapp/static/weather/fog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/hail.svg b/src/main/webapp/static/weather/hail.svg new file mode 100644 index 0000000..4ef86f0 --- /dev/null +++ b/src/main/webapp/static/weather/hail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/haze.svg b/src/main/webapp/static/weather/haze.svg new file mode 100644 index 0000000..aea257d --- /dev/null +++ b/src/main/webapp/static/weather/haze.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/hurricane.svg b/src/main/webapp/static/weather/hurricane.svg new file mode 100644 index 0000000..978065e --- /dev/null +++ b/src/main/webapp/static/weather/hurricane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/mist.svg b/src/main/webapp/static/weather/mist.svg new file mode 100644 index 0000000..420400e --- /dev/null +++ b/src/main/webapp/static/weather/mist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/overcast-day.svg b/src/main/webapp/static/weather/overcast-day.svg new file mode 100644 index 0000000..e39318b --- /dev/null +++ b/src/main/webapp/static/weather/overcast-day.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/partly-cloudy-day-drizzle.svg b/src/main/webapp/static/weather/partly-cloudy-day-drizzle.svg new file mode 100644 index 0000000..c19acc2 --- /dev/null +++ b/src/main/webapp/static/weather/partly-cloudy-day-drizzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/partly-cloudy-day-fog.svg b/src/main/webapp/static/weather/partly-cloudy-day-fog.svg new file mode 100644 index 0000000..16eaf27 --- /dev/null +++ b/src/main/webapp/static/weather/partly-cloudy-day-fog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/partly-cloudy-day-hail.svg b/src/main/webapp/static/weather/partly-cloudy-day-hail.svg new file mode 100644 index 0000000..a1eb323 --- /dev/null +++ b/src/main/webapp/static/weather/partly-cloudy-day-hail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/partly-cloudy-day-rain.svg b/src/main/webapp/static/weather/partly-cloudy-day-rain.svg new file mode 100644 index 0000000..15bbdea --- /dev/null +++ b/src/main/webapp/static/weather/partly-cloudy-day-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/partly-cloudy-day-sleet.svg b/src/main/webapp/static/weather/partly-cloudy-day-sleet.svg new file mode 100644 index 0000000..83aaed2 --- /dev/null +++ b/src/main/webapp/static/weather/partly-cloudy-day-sleet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/partly-cloudy-day-snow.svg b/src/main/webapp/static/weather/partly-cloudy-day-snow.svg new file mode 100644 index 0000000..de9f4fc --- /dev/null +++ b/src/main/webapp/static/weather/partly-cloudy-day-snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/partly-cloudy-day.svg b/src/main/webapp/static/weather/partly-cloudy-day.svg new file mode 100644 index 0000000..5c4540f --- /dev/null +++ b/src/main/webapp/static/weather/partly-cloudy-day.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/rain.svg b/src/main/webapp/static/weather/rain.svg new file mode 100644 index 0000000..982d0c3 --- /dev/null +++ b/src/main/webapp/static/weather/rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/sleet.svg b/src/main/webapp/static/weather/sleet.svg new file mode 100644 index 0000000..2f74d2c --- /dev/null +++ b/src/main/webapp/static/weather/sleet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/smoke.svg b/src/main/webapp/static/weather/smoke.svg new file mode 100644 index 0000000..3d9f51b --- /dev/null +++ b/src/main/webapp/static/weather/smoke.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/snow.svg b/src/main/webapp/static/weather/snow.svg new file mode 100644 index 0000000..ce0b427 --- /dev/null +++ b/src/main/webapp/static/weather/snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/thunderstorms-day-extreme.svg b/src/main/webapp/static/weather/thunderstorms-day-extreme.svg new file mode 100644 index 0000000..5b10050 --- /dev/null +++ b/src/main/webapp/static/weather/thunderstorms-day-extreme.svg @@ -0,0 +1,89 @@ + + + + + + Page not found · GitHub Pages + + + + +
+ +

404

+

File not found

+ +

+ The site configured at this address does not + contain the requested file. +

+ +

+ If this is your site, make sure that the filename case matches the URL + as well as any file permissions.
+ For root URLs (like http://example.com/) you must provide an + index.html file. +

+ +

+ Read the full documentation + for more information about using GitHub Pages. +

+ + + + + + +
+ + diff --git a/src/main/webapp/static/weather/thunderstorms-day-rain.svg b/src/main/webapp/static/weather/thunderstorms-day-rain.svg new file mode 100644 index 0000000..03631d7 --- /dev/null +++ b/src/main/webapp/static/weather/thunderstorms-day-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/thunderstorms-day.svg b/src/main/webapp/static/weather/thunderstorms-day.svg new file mode 100644 index 0000000..c8acb99 --- /dev/null +++ b/src/main/webapp/static/weather/thunderstorms-day.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/thunderstorms-rain.svg b/src/main/webapp/static/weather/thunderstorms-rain.svg new file mode 100644 index 0000000..55c9b8c --- /dev/null +++ b/src/main/webapp/static/weather/thunderstorms-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/thunderstorms-snow.svg b/src/main/webapp/static/weather/thunderstorms-snow.svg new file mode 100644 index 0000000..a187afd --- /dev/null +++ b/src/main/webapp/static/weather/thunderstorms-snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/thunderstorms.svg b/src/main/webapp/static/weather/thunderstorms.svg new file mode 100644 index 0000000..aeef945 --- /dev/null +++ b/src/main/webapp/static/weather/thunderstorms.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/tornado.svg b/src/main/webapp/static/weather/tornado.svg new file mode 100644 index 0000000..41ce9ab --- /dev/null +++ b/src/main/webapp/static/weather/tornado.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/static/weather/wind.svg b/src/main/webapp/static/weather/wind.svg new file mode 100644 index 0000000..b4dada3 --- /dev/null +++ b/src/main/webapp/static/weather/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file