diff --git a/screenless/bureau/publications/weather.py b/screenless/bureau/publications/weather.py index a6708e8..d3ff77d 100644 --- a/screenless/bureau/publications/weather.py +++ b/screenless/bureau/publications/weather.py @@ -12,11 +12,14 @@ def get_weather_json(lat, lon): periods. NOTE: This is not tidied up. Use get_forecast for nicer formatted stuff. """ - url = "https://api.met.no/weatherapi/locationforecast/1.9/.json" - params = { "lat": lat, "lon": lon } + url = "https://api.met.no/weatherapi/locationforecast/2.0/complete" + headers = { "User-Agent": "https://gitlab.com/bhowell/the-screenless-office" } + # the 2.0+ api only allows a max resolution of four decimals (for cacheing) + params = { "lat": format(lat, ".4"), "lon": format(lon, ".4")} - # https://api.met.no/weatherapi/locationforecast/1.9/.json?lat=52.50639&lon=13.4063 - resp = requests.get(url=url, params=params) + # https://api.met.no/weatherapi/locationforecast/2.0/classic?lat=52.50639&lon=13.4063 + resp = requests.get(url=url, params=params, headers=headers) + pprint(resp) return resp.json() def get_forecast(lat, lon): @@ -33,11 +36,11 @@ def get_forecast(lat, lon): w = get_weather_json(lat, lon) forecasts = [] - for t in w["product"]["time"]: + for t in w["properties"]["timeseries"]: # need to strip the trainling 'Z' char which indicates UTC - fr = datetime.datetime.fromisoformat(t["from"][:-1]) - to = datetime.datetime.fromisoformat(t["to"][:-1]) - dtdelta = datetime.date.today() - fr.date() + tdate = datetime.datetime.fromisoformat(t["time"][:-1]) + to = tdate + datetime.timedelta(hours=6) + dtdelta = datetime.date.today() - tdate.date() if dtdelta == datetime.timedelta(days=0): day_of = "Today" @@ -45,27 +48,26 @@ def get_forecast(lat, lon): day_of = "Tomorrow" else: days = ("Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday") - day_of = days[fr.weekday()] + day_of = days[tdate.weekday()] - if fr.hour not in (0, 6, 12, 18): + if tdate.hour not in (0, 6, 12, 18): continue - if(to-fr == datetime.timedelta(hours=6)): - mintemp = t["location"]["minTemperature"]["value"] - maxtemp = t["location"]["maxTemperature"]["value"] - symbol = t["location"]["symbol"]["id"].lower() - png = symbol - if fr.hour in (18, 0): - symbol += "-night.svg" - png += "-night.png" - else: - symbol += ".svg" - png += ".png" - icon = os.path.join(thisdir, "weather_icons", symbol) - png = os.path.join(thisdir, "weather_icons", png) - forecast = {"fromtime": fr, "totime": to, "symbol": icon, - "mintemp": mintemp, "maxtemp": maxtemp, "png": png, - "period": periods[fr.hour], "day": day_of} - forecasts.append(forecast) + + if not("next_6_hours" in t["data"]): + continue + + mintemp = t["data"]["next_6_hours"]["details"]["air_temperature_min"] + maxtemp = t["data"]["next_6_hours"]["details"]["air_temperature_max"] + symbol = t["data"]["next_6_hours"]["summary"]["symbol_code"] + png = symbol + symbol += ".svg" + png += ".png" + icon = os.path.join(thisdir, "weather_icons", symbol) + png = os.path.join(thisdir, "weather_icons", png) + forecast = {"fromtime": tdate, "totime": to, "symbol": icon, + "mintemp": mintemp, "maxtemp": maxtemp, "png": png, + "period": periods[tdate.hour], "day": day_of} + forecasts.append(forecast) return forecasts diff --git a/screenless/bureau/publications/weather_icons/clearsky_day.png b/screenless/bureau/publications/weather_icons/clearsky_day.png new file mode 100644 index 0000000..772a881 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/clearsky_day.png differ diff --git a/screenless/bureau/publications/weather_icons/clearsky_day.svg b/screenless/bureau/publications/weather_icons/clearsky_day.svg new file mode 100644 index 0000000..e8f7541 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/clearsky_day.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/clearsky_night.png b/screenless/bureau/publications/weather_icons/clearsky_night.png new file mode 100644 index 0000000..1b9e87b Binary files /dev/null and b/screenless/bureau/publications/weather_icons/clearsky_night.png differ diff --git a/screenless/bureau/publications/weather_icons/clearsky_night.svg b/screenless/bureau/publications/weather_icons/clearsky_night.svg new file mode 100644 index 0000000..23f9b5e --- /dev/null +++ b/screenless/bureau/publications/weather_icons/clearsky_night.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/clearsky_polartwilight.png b/screenless/bureau/publications/weather_icons/clearsky_polartwilight.png new file mode 100644 index 0000000..21dc4a6 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/clearsky_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/clearsky_polartwilight.svg b/screenless/bureau/publications/weather_icons/clearsky_polartwilight.svg new file mode 100644 index 0000000..e6afadc --- /dev/null +++ b/screenless/bureau/publications/weather_icons/clearsky_polartwilight.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/cloud-night.png b/screenless/bureau/publications/weather_icons/cloud-night.png deleted file mode 100644 index e142837..0000000 Binary files a/screenless/bureau/publications/weather_icons/cloud-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/cloud-night.svg b/screenless/bureau/publications/weather_icons/cloud-night.svg deleted file mode 100644 index a29667f..0000000 --- a/screenless/bureau/publications/weather_icons/cloud-night.svg +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/cloud.png b/screenless/bureau/publications/weather_icons/cloud.png deleted file mode 100644 index c778aff..0000000 Binary files a/screenless/bureau/publications/weather_icons/cloud.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/cloud.svg b/screenless/bureau/publications/weather_icons/cloud.svg deleted file mode 100644 index 433d0a4..0000000 --- a/screenless/bureau/publications/weather_icons/cloud.svg +++ /dev/null @@ -1,313 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/cloudy.png b/screenless/bureau/publications/weather_icons/cloudy.png new file mode 100644 index 0000000..9ea0fcd Binary files /dev/null and b/screenless/bureau/publications/weather_icons/cloudy.png differ diff --git a/screenless/bureau/publications/weather_icons/cloudy.svg b/screenless/bureau/publications/weather_icons/cloudy.svg new file mode 100644 index 0000000..eb98fe8 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/cloudy.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/drizzle-night.png b/screenless/bureau/publications/weather_icons/drizzle-night.png deleted file mode 100644 index 5f6fd3e..0000000 Binary files a/screenless/bureau/publications/weather_icons/drizzle-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/drizzle-night.svg b/screenless/bureau/publications/weather_icons/drizzle-night.svg deleted file mode 100644 index 87fe1ed..0000000 --- a/screenless/bureau/publications/weather_icons/drizzle-night.svg +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/drizzle.png b/screenless/bureau/publications/weather_icons/drizzle.png deleted file mode 100644 index 195efc9..0000000 Binary files a/screenless/bureau/publications/weather_icons/drizzle.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/drizzle.svg b/screenless/bureau/publications/weather_icons/drizzle.svg deleted file mode 100644 index ee7237e..0000000 --- a/screenless/bureau/publications/weather_icons/drizzle.svg +++ /dev/null @@ -1,408 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/fair_day.png b/screenless/bureau/publications/weather_icons/fair_day.png new file mode 100644 index 0000000..571d6fd Binary files /dev/null and b/screenless/bureau/publications/weather_icons/fair_day.png differ diff --git a/screenless/bureau/publications/weather_icons/fair_day.svg b/screenless/bureau/publications/weather_icons/fair_day.svg new file mode 100644 index 0000000..2daaed3 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/fair_day.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/fair_night.png b/screenless/bureau/publications/weather_icons/fair_night.png new file mode 100644 index 0000000..7d270ab Binary files /dev/null and b/screenless/bureau/publications/weather_icons/fair_night.png differ diff --git a/screenless/bureau/publications/weather_icons/fair_night.svg b/screenless/bureau/publications/weather_icons/fair_night.svg new file mode 100644 index 0000000..1814563 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/fair_night.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/fair_polartwilight.png b/screenless/bureau/publications/weather_icons/fair_polartwilight.png new file mode 100644 index 0000000..cc4da98 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/fair_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/fair_polartwilight.svg b/screenless/bureau/publications/weather_icons/fair_polartwilight.svg new file mode 100644 index 0000000..1d557ca --- /dev/null +++ b/screenless/bureau/publications/weather_icons/fair_polartwilight.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/fog-night.png b/screenless/bureau/publications/weather_icons/fog-night.png deleted file mode 100644 index daa3257..0000000 Binary files a/screenless/bureau/publications/weather_icons/fog-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/fog-night.svg b/screenless/bureau/publications/weather_icons/fog-night.svg deleted file mode 100644 index ffbd1ba..0000000 --- a/screenless/bureau/publications/weather_icons/fog-night.svg +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/fog.png b/screenless/bureau/publications/weather_icons/fog.png index 3a467b2..5337086 100644 Binary files a/screenless/bureau/publications/weather_icons/fog.png and b/screenless/bureau/publications/weather_icons/fog.png differ diff --git a/screenless/bureau/publications/weather_icons/fog.svg b/screenless/bureau/publications/weather_icons/fog.svg index cc5394d..3cb13b4 100644 --- a/screenless/bureau/publications/weather_icons/fog.svg +++ b/screenless/bureau/publications/weather_icons/fog.svg @@ -1,409 +1,20 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - - - - + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavyrain.png b/screenless/bureau/publications/weather_icons/heavyrain.png new file mode 100644 index 0000000..a127c24 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavyrain.png differ diff --git a/screenless/bureau/publications/weather_icons/heavyrain.svg b/screenless/bureau/publications/weather_icons/heavyrain.svg new file mode 100644 index 0000000..9a85ccd --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavyrain.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavyrainandthunder.png b/screenless/bureau/publications/weather_icons/heavyrainandthunder.png new file mode 100644 index 0000000..603ed86 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavyrainandthunder.png differ diff --git a/screenless/bureau/publications/weather_icons/heavyrainandthunder.svg b/screenless/bureau/publications/weather_icons/heavyrainandthunder.svg new file mode 100644 index 0000000..0e73a8c --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavyrainandthunder.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowers_day.png b/screenless/bureau/publications/weather_icons/heavyrainshowers_day.png new file mode 100644 index 0000000..e64c9ae Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavyrainshowers_day.png differ diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowers_day.svg b/screenless/bureau/publications/weather_icons/heavyrainshowers_day.svg new file mode 100644 index 0000000..89f60eb --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavyrainshowers_day.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowers_night.png b/screenless/bureau/publications/weather_icons/heavyrainshowers_night.png new file mode 100644 index 0000000..f8dbed6 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavyrainshowers_night.png differ diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowers_night.svg b/screenless/bureau/publications/weather_icons/heavyrainshowers_night.svg new file mode 100644 index 0000000..adb85ef --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavyrainshowers_night.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowers_polartwilight.png b/screenless/bureau/publications/weather_icons/heavyrainshowers_polartwilight.png new file mode 100644 index 0000000..e99d3a7 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavyrainshowers_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowers_polartwilight.svg b/screenless/bureau/publications/weather_icons/heavyrainshowers_polartwilight.svg new file mode 100644 index 0000000..b97fbe2 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavyrainshowers_polartwilight.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_day.png b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_day.png new file mode 100644 index 0000000..7e3d860 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_day.png differ diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_day.svg b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_day.svg new file mode 100644 index 0000000..e2922a2 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_day.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_night.png b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_night.png new file mode 100644 index 0000000..4a46d95 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_night.png differ diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_night.svg b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_night.svg new file mode 100644 index 0000000..4389a49 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_night.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_polartwilight.png b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_polartwilight.png new file mode 100644 index 0000000..da91117 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_polartwilight.svg b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_polartwilight.svg new file mode 100644 index 0000000..e559dd6 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavyrainshowersandthunder_polartwilight.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysleet.png b/screenless/bureau/publications/weather_icons/heavysleet.png new file mode 100644 index 0000000..e68758f Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysleet.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysleet.svg b/screenless/bureau/publications/weather_icons/heavysleet.svg new file mode 100644 index 0000000..e67ff4e --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysleet.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysleetandthunder.png b/screenless/bureau/publications/weather_icons/heavysleetandthunder.png new file mode 100644 index 0000000..54e7ab3 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysleetandthunder.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysleetandthunder.svg b/screenless/bureau/publications/weather_icons/heavysleetandthunder.svg new file mode 100644 index 0000000..2729d5c --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysleetandthunder.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowers_day.png b/screenless/bureau/publications/weather_icons/heavysleetshowers_day.png new file mode 100644 index 0000000..f7aa3cd Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysleetshowers_day.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowers_day.svg b/screenless/bureau/publications/weather_icons/heavysleetshowers_day.svg new file mode 100644 index 0000000..d9e146d --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysleetshowers_day.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowers_night.png b/screenless/bureau/publications/weather_icons/heavysleetshowers_night.png new file mode 100644 index 0000000..8c8db7b Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysleetshowers_night.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowers_night.svg b/screenless/bureau/publications/weather_icons/heavysleetshowers_night.svg new file mode 100644 index 0000000..aa71b14 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysleetshowers_night.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowers_polartwilight.png b/screenless/bureau/publications/weather_icons/heavysleetshowers_polartwilight.png new file mode 100644 index 0000000..804bcd6 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysleetshowers_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowers_polartwilight.svg b/screenless/bureau/publications/weather_icons/heavysleetshowers_polartwilight.svg new file mode 100644 index 0000000..c275176 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysleetshowers_polartwilight.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_day.png b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_day.png new file mode 100644 index 0000000..2b081c8 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_day.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_day.svg b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_day.svg new file mode 100644 index 0000000..dbe2715 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_day.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_night.png b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_night.png new file mode 100644 index 0000000..04c99e8 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_night.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_night.svg b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_night.svg new file mode 100644 index 0000000..234bac9 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_night.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_polartwilight.png b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_polartwilight.png new file mode 100644 index 0000000..22814de Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_polartwilight.svg b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_polartwilight.svg new file mode 100644 index 0000000..18ed7fc --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysleetshowersandthunder_polartwilight.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysnow.png b/screenless/bureau/publications/weather_icons/heavysnow.png new file mode 100644 index 0000000..e88355b Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysnow.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysnow.svg b/screenless/bureau/publications/weather_icons/heavysnow.svg new file mode 100644 index 0000000..6e6a05d --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysnow.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysnowandthunder.png b/screenless/bureau/publications/weather_icons/heavysnowandthunder.png new file mode 100644 index 0000000..7ad18d8 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysnowandthunder.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysnowandthunder.svg b/screenless/bureau/publications/weather_icons/heavysnowandthunder.svg new file mode 100644 index 0000000..719ed5d --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysnowandthunder.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowers_day.png b/screenless/bureau/publications/weather_icons/heavysnowshowers_day.png new file mode 100644 index 0000000..2a9c037 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysnowshowers_day.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowers_day.svg b/screenless/bureau/publications/weather_icons/heavysnowshowers_day.svg new file mode 100644 index 0000000..06ab067 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysnowshowers_day.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowers_night.png b/screenless/bureau/publications/weather_icons/heavysnowshowers_night.png new file mode 100644 index 0000000..3d6623d Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysnowshowers_night.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowers_night.svg b/screenless/bureau/publications/weather_icons/heavysnowshowers_night.svg new file mode 100644 index 0000000..fadfc89 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysnowshowers_night.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowers_polartwilight.png b/screenless/bureau/publications/weather_icons/heavysnowshowers_polartwilight.png new file mode 100644 index 0000000..cb1738b Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysnowshowers_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowers_polartwilight.svg b/screenless/bureau/publications/weather_icons/heavysnowshowers_polartwilight.svg new file mode 100644 index 0000000..a1321a8 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysnowshowers_polartwilight.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_day.png b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_day.png new file mode 100644 index 0000000..a63e46d Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_day.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_day.svg b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_day.svg new file mode 100644 index 0000000..2e296a3 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_day.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_night.png b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_night.png new file mode 100644 index 0000000..138b55a Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_night.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_night.svg b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_night.svg new file mode 100644 index 0000000..47c25ab --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_night.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_polartwilight.png b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_polartwilight.png new file mode 100644 index 0000000..86830eb Binary files /dev/null and b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_polartwilight.svg b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_polartwilight.svg new file mode 100644 index 0000000..9abac75 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/heavysnowshowersandthunder_polartwilight.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightcloud-night.png b/screenless/bureau/publications/weather_icons/lightcloud-night.png deleted file mode 100644 index 8200556..0000000 Binary files a/screenless/bureau/publications/weather_icons/lightcloud-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/lightcloud-night.svg b/screenless/bureau/publications/weather_icons/lightcloud-night.svg deleted file mode 100644 index f6326e0..0000000 --- a/screenless/bureau/publications/weather_icons/lightcloud-night.svg +++ /dev/null @@ -1,328 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/lightcloud.png b/screenless/bureau/publications/weather_icons/lightcloud.png deleted file mode 100644 index f9c1d5b..0000000 Binary files a/screenless/bureau/publications/weather_icons/lightcloud.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/lightcloud.svg b/screenless/bureau/publications/weather_icons/lightcloud.svg deleted file mode 100644 index f183f26..0000000 --- a/screenless/bureau/publications/weather_icons/lightcloud.svg +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/lightrain-night.png b/screenless/bureau/publications/weather_icons/lightrain-night.png deleted file mode 100644 index 5f6fd3e..0000000 Binary files a/screenless/bureau/publications/weather_icons/lightrain-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/lightrain-night.svg b/screenless/bureau/publications/weather_icons/lightrain-night.svg deleted file mode 100644 index 87fe1ed..0000000 --- a/screenless/bureau/publications/weather_icons/lightrain-night.svg +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/lightrain.png b/screenless/bureau/publications/weather_icons/lightrain.png index 195efc9..8b94c28 100644 Binary files a/screenless/bureau/publications/weather_icons/lightrain.png and b/screenless/bureau/publications/weather_icons/lightrain.png differ diff --git a/screenless/bureau/publications/weather_icons/lightrain.svg b/screenless/bureau/publications/weather_icons/lightrain.svg index ee7237e..67a1c8e 100644 --- a/screenless/bureau/publications/weather_icons/lightrain.svg +++ b/screenless/bureau/publications/weather_icons/lightrain.svg @@ -1,408 +1,17 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightrainandthunder.png b/screenless/bureau/publications/weather_icons/lightrainandthunder.png new file mode 100644 index 0000000..8880273 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightrainandthunder.png differ diff --git a/screenless/bureau/publications/weather_icons/lightrainandthunder.svg b/screenless/bureau/publications/weather_icons/lightrainandthunder.svg new file mode 100644 index 0000000..cdab6e2 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightrainandthunder.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightrainshowers_day.png b/screenless/bureau/publications/weather_icons/lightrainshowers_day.png new file mode 100644 index 0000000..cdb74ce Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightrainshowers_day.png differ diff --git a/screenless/bureau/publications/weather_icons/lightrainshowers_day.svg b/screenless/bureau/publications/weather_icons/lightrainshowers_day.svg new file mode 100644 index 0000000..f02e940 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightrainshowers_day.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightrainshowers_night.png b/screenless/bureau/publications/weather_icons/lightrainshowers_night.png new file mode 100644 index 0000000..1d9eb0a Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightrainshowers_night.png differ diff --git a/screenless/bureau/publications/weather_icons/lightrainshowers_night.svg b/screenless/bureau/publications/weather_icons/lightrainshowers_night.svg new file mode 100644 index 0000000..5a483fc --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightrainshowers_night.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightrainshowers_polartwilight.png b/screenless/bureau/publications/weather_icons/lightrainshowers_polartwilight.png new file mode 100644 index 0000000..170dc4e Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightrainshowers_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/lightrainshowers_polartwilight.svg b/screenless/bureau/publications/weather_icons/lightrainshowers_polartwilight.svg new file mode 100644 index 0000000..2648cb4 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightrainshowers_polartwilight.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_day.png b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_day.png new file mode 100644 index 0000000..5339df4 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_day.png differ diff --git a/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_day.svg b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_day.svg new file mode 100644 index 0000000..016786a --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_day.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_night.png b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_night.png new file mode 100644 index 0000000..4549a5f Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_night.png differ diff --git a/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_night.svg b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_night.svg new file mode 100644 index 0000000..3831919 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_night.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_polartwilight.png b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_polartwilight.png new file mode 100644 index 0000000..93a78b4 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_polartwilight.svg b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_polartwilight.svg new file mode 100644 index 0000000..e7fff4f --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightrainshowersandthunder_polartwilight.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightrainsun-night.png b/screenless/bureau/publications/weather_icons/lightrainsun-night.png deleted file mode 100644 index c7be426..0000000 Binary files a/screenless/bureau/publications/weather_icons/lightrainsun-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/lightrainsun-night.svg b/screenless/bureau/publications/weather_icons/lightrainsun-night.svg deleted file mode 100644 index ca9c2b7..0000000 --- a/screenless/bureau/publications/weather_icons/lightrainsun-night.svg +++ /dev/null @@ -1,417 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/lightrainsun.png b/screenless/bureau/publications/weather_icons/lightrainsun.png deleted file mode 100644 index 2f31cc1..0000000 Binary files a/screenless/bureau/publications/weather_icons/lightrainsun.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/lightrainsun.svg b/screenless/bureau/publications/weather_icons/lightrainsun.svg deleted file mode 100644 index 44192fc..0000000 --- a/screenless/bureau/publications/weather_icons/lightrainsun.svg +++ /dev/null @@ -1,417 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/lightrainthunder-night.png b/screenless/bureau/publications/weather_icons/lightrainthunder-night.png deleted file mode 100644 index 19da0fd..0000000 Binary files a/screenless/bureau/publications/weather_icons/lightrainthunder-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/lightrainthunder-night.svg b/screenless/bureau/publications/weather_icons/lightrainthunder-night.svg deleted file mode 100644 index 150a97f..0000000 --- a/screenless/bureau/publications/weather_icons/lightrainthunder-night.svg +++ /dev/null @@ -1,519 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/lightrainthunder.png b/screenless/bureau/publications/weather_icons/lightrainthunder.png deleted file mode 100644 index f33f568..0000000 Binary files a/screenless/bureau/publications/weather_icons/lightrainthunder.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/lightrainthunder.svg b/screenless/bureau/publications/weather_icons/lightrainthunder.svg deleted file mode 100644 index 73c2520..0000000 --- a/screenless/bureau/publications/weather_icons/lightrainthunder.svg +++ /dev/null @@ -1,519 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/lightrainthundersun-night.png b/screenless/bureau/publications/weather_icons/lightrainthundersun-night.png deleted file mode 100644 index b97e825..0000000 Binary files a/screenless/bureau/publications/weather_icons/lightrainthundersun-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/lightrainthundersun-night.svg b/screenless/bureau/publications/weather_icons/lightrainthundersun-night.svg deleted file mode 100644 index 239ca4c..0000000 --- a/screenless/bureau/publications/weather_icons/lightrainthundersun-night.svg +++ /dev/null @@ -1,528 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/lightrainthundersun.png b/screenless/bureau/publications/weather_icons/lightrainthundersun.png deleted file mode 100644 index 3cf0e10..0000000 Binary files a/screenless/bureau/publications/weather_icons/lightrainthundersun.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/lightrainthundersun.svg b/screenless/bureau/publications/weather_icons/lightrainthundersun.svg deleted file mode 100644 index fc4364d..0000000 --- a/screenless/bureau/publications/weather_icons/lightrainthundersun.svg +++ /dev/null @@ -1,528 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/lightsleet-night.png b/screenless/bureau/publications/weather_icons/lightsleet-night.png deleted file mode 100644 index cc98062..0000000 Binary files a/screenless/bureau/publications/weather_icons/lightsleet-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/lightsleet-night.svg b/screenless/bureau/publications/weather_icons/lightsleet-night.svg deleted file mode 100644 index b290df4..0000000 --- a/screenless/bureau/publications/weather_icons/lightsleet-night.svg +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/lightsleet.png b/screenless/bureau/publications/weather_icons/lightsleet.png index ab7487b..888314d 100644 Binary files a/screenless/bureau/publications/weather_icons/lightsleet.png and b/screenless/bureau/publications/weather_icons/lightsleet.png differ diff --git a/screenless/bureau/publications/weather_icons/lightsleet.svg b/screenless/bureau/publications/weather_icons/lightsleet.svg index ba52058..eaf49fe 100644 --- a/screenless/bureau/publications/weather_icons/lightsleet.svg +++ b/screenless/bureau/publications/weather_icons/lightsleet.svg @@ -1,407 +1,20 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightsleetandthunder.png b/screenless/bureau/publications/weather_icons/lightsleetandthunder.png new file mode 100644 index 0000000..cc2ef2e Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightsleetandthunder.png differ diff --git a/screenless/bureau/publications/weather_icons/lightsleetandthunder.svg b/screenless/bureau/publications/weather_icons/lightsleetandthunder.svg new file mode 100644 index 0000000..503811e --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightsleetandthunder.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightsleetshowers_day.png b/screenless/bureau/publications/weather_icons/lightsleetshowers_day.png new file mode 100644 index 0000000..f1ec438 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightsleetshowers_day.png differ diff --git a/screenless/bureau/publications/weather_icons/lightsleetshowers_day.svg b/screenless/bureau/publications/weather_icons/lightsleetshowers_day.svg new file mode 100644 index 0000000..7a162bd --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightsleetshowers_day.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightsleetshowers_night.png b/screenless/bureau/publications/weather_icons/lightsleetshowers_night.png new file mode 100644 index 0000000..4834fd7 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightsleetshowers_night.png differ diff --git a/screenless/bureau/publications/weather_icons/lightsleetshowers_night.svg b/screenless/bureau/publications/weather_icons/lightsleetshowers_night.svg new file mode 100644 index 0000000..cd283b5 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightsleetshowers_night.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightsleetshowers_polartwilight.png b/screenless/bureau/publications/weather_icons/lightsleetshowers_polartwilight.png new file mode 100644 index 0000000..6dc9302 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightsleetshowers_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/lightsleetshowers_polartwilight.svg b/screenless/bureau/publications/weather_icons/lightsleetshowers_polartwilight.svg new file mode 100644 index 0000000..d31bb3f --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightsleetshowers_polartwilight.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightsnow.png b/screenless/bureau/publications/weather_icons/lightsnow.png new file mode 100644 index 0000000..2a13fff Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightsnow.png differ diff --git a/screenless/bureau/publications/weather_icons/lightsnow.svg b/screenless/bureau/publications/weather_icons/lightsnow.svg new file mode 100644 index 0000000..4ece601 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightsnow.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightsnowandthunder.png b/screenless/bureau/publications/weather_icons/lightsnowandthunder.png new file mode 100644 index 0000000..883e066 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightsnowandthunder.png differ diff --git a/screenless/bureau/publications/weather_icons/lightsnowandthunder.svg b/screenless/bureau/publications/weather_icons/lightsnowandthunder.svg new file mode 100644 index 0000000..d8b8d25 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightsnowandthunder.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightsnowshowers_day.png b/screenless/bureau/publications/weather_icons/lightsnowshowers_day.png new file mode 100644 index 0000000..df0acad Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightsnowshowers_day.png differ diff --git a/screenless/bureau/publications/weather_icons/lightsnowshowers_day.svg b/screenless/bureau/publications/weather_icons/lightsnowshowers_day.svg new file mode 100644 index 0000000..0b9f99e --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightsnowshowers_day.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightsnowshowers_night.png b/screenless/bureau/publications/weather_icons/lightsnowshowers_night.png new file mode 100644 index 0000000..abb52b5 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightsnowshowers_night.png differ diff --git a/screenless/bureau/publications/weather_icons/lightsnowshowers_night.svg b/screenless/bureau/publications/weather_icons/lightsnowshowers_night.svg new file mode 100644 index 0000000..54b0cf2 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightsnowshowers_night.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightsnowshowers_polartwilight.png b/screenless/bureau/publications/weather_icons/lightsnowshowers_polartwilight.png new file mode 100644 index 0000000..60bc67a Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightsnowshowers_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/lightsnowshowers_polartwilight.svg b/screenless/bureau/publications/weather_icons/lightsnowshowers_polartwilight.svg new file mode 100644 index 0000000..e2d8eb8 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightsnowshowers_polartwilight.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_day.png b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_day.png new file mode 100644 index 0000000..a314d0e Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_day.png differ diff --git a/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_day.svg b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_day.svg new file mode 100644 index 0000000..bdca36d --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_day.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_night.png b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_night.png new file mode 100644 index 0000000..d3081f4 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_night.png differ diff --git a/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_night.svg b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_night.svg new file mode 100644 index 0000000..4b8be4d --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_night.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_polartwilight.png b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_polartwilight.png new file mode 100644 index 0000000..97c1217 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_polartwilight.svg b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_polartwilight.svg new file mode 100644 index 0000000..42308f9 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightssleetshowersandthunder_polartwilight.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_day.png b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_day.png new file mode 100644 index 0000000..44cf4f9 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_day.png differ diff --git a/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_day.svg b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_day.svg new file mode 100644 index 0000000..62bf909 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_day.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_night.png b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_night.png new file mode 100644 index 0000000..7033887 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_night.png differ diff --git a/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_night.svg b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_night.svg new file mode 100644 index 0000000..6b0b6d0 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_night.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_polartwilight.png b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_polartwilight.png new file mode 100644 index 0000000..2f676f1 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_polartwilight.svg b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_polartwilight.svg new file mode 100644 index 0000000..58d0649 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/lightssnowshowersandthunder_polartwilight.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/nodata.png b/screenless/bureau/publications/weather_icons/nodata.png deleted file mode 100644 index 70f043d..0000000 Binary files a/screenless/bureau/publications/weather_icons/nodata.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/nodata.svg b/screenless/bureau/publications/weather_icons/nodata.svg deleted file mode 100644 index 69f4e38..0000000 --- a/screenless/bureau/publications/weather_icons/nodata.svg +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ? - - diff --git a/screenless/bureau/publications/weather_icons/partlycloud-night.png b/screenless/bureau/publications/weather_icons/partlycloud-night.png deleted file mode 100644 index e442f43..0000000 Binary files a/screenless/bureau/publications/weather_icons/partlycloud-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/partlycloud-night.svg b/screenless/bureau/publications/weather_icons/partlycloud-night.svg deleted file mode 100644 index e75d9b3..0000000 --- a/screenless/bureau/publications/weather_icons/partlycloud-night.svg +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/partlycloud.png b/screenless/bureau/publications/weather_icons/partlycloud.png deleted file mode 100644 index f618304..0000000 Binary files a/screenless/bureau/publications/weather_icons/partlycloud.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/partlycloud.svg b/screenless/bureau/publications/weather_icons/partlycloud.svg deleted file mode 100644 index 9e60b57..0000000 --- a/screenless/bureau/publications/weather_icons/partlycloud.svg +++ /dev/null @@ -1,327 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/partlycloudy_day.png b/screenless/bureau/publications/weather_icons/partlycloudy_day.png new file mode 100644 index 0000000..08f0949 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/partlycloudy_day.png differ diff --git a/screenless/bureau/publications/weather_icons/partlycloudy_day.svg b/screenless/bureau/publications/weather_icons/partlycloudy_day.svg new file mode 100644 index 0000000..827e688 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/partlycloudy_day.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/partlycloudy_night.png b/screenless/bureau/publications/weather_icons/partlycloudy_night.png new file mode 100644 index 0000000..3dadbec Binary files /dev/null and b/screenless/bureau/publications/weather_icons/partlycloudy_night.png differ diff --git a/screenless/bureau/publications/weather_icons/partlycloudy_night.svg b/screenless/bureau/publications/weather_icons/partlycloudy_night.svg new file mode 100644 index 0000000..eeb643f --- /dev/null +++ b/screenless/bureau/publications/weather_icons/partlycloudy_night.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/partlycloudy_polartwilight.png b/screenless/bureau/publications/weather_icons/partlycloudy_polartwilight.png new file mode 100644 index 0000000..8f5b8a6 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/partlycloudy_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/partlycloudy_polartwilight.svg b/screenless/bureau/publications/weather_icons/partlycloudy_polartwilight.svg new file mode 100644 index 0000000..cb3647b --- /dev/null +++ b/screenless/bureau/publications/weather_icons/partlycloudy_polartwilight.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/rain-night.png b/screenless/bureau/publications/weather_icons/rain-night.png deleted file mode 100644 index 3894a8e..0000000 Binary files a/screenless/bureau/publications/weather_icons/rain-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/rain-night.svg b/screenless/bureau/publications/weather_icons/rain-night.svg deleted file mode 100644 index e8735ee..0000000 --- a/screenless/bureau/publications/weather_icons/rain-night.svg +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/rain.png b/screenless/bureau/publications/weather_icons/rain.png index 3736624..a8b4a1e 100644 Binary files a/screenless/bureau/publications/weather_icons/rain.png and b/screenless/bureau/publications/weather_icons/rain.png differ diff --git a/screenless/bureau/publications/weather_icons/rain.svg b/screenless/bureau/publications/weather_icons/rain.svg index 6584a0e..1da5ea7 100644 --- a/screenless/bureau/publications/weather_icons/rain.svg +++ b/screenless/bureau/publications/weather_icons/rain.svg @@ -1,407 +1,18 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/rainandthunder.png b/screenless/bureau/publications/weather_icons/rainandthunder.png new file mode 100644 index 0000000..f3dd972 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/rainandthunder.png differ diff --git a/screenless/bureau/publications/weather_icons/rainandthunder.svg b/screenless/bureau/publications/weather_icons/rainandthunder.svg new file mode 100644 index 0000000..6a99951 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/rainandthunder.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/rainshowers_day.png b/screenless/bureau/publications/weather_icons/rainshowers_day.png new file mode 100644 index 0000000..71aeb20 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/rainshowers_day.png differ diff --git a/screenless/bureau/publications/weather_icons/rainshowers_day.svg b/screenless/bureau/publications/weather_icons/rainshowers_day.svg new file mode 100644 index 0000000..0226b47 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/rainshowers_day.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/rainshowers_night.png b/screenless/bureau/publications/weather_icons/rainshowers_night.png new file mode 100644 index 0000000..fd989c9 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/rainshowers_night.png differ diff --git a/screenless/bureau/publications/weather_icons/rainshowers_night.svg b/screenless/bureau/publications/weather_icons/rainshowers_night.svg new file mode 100644 index 0000000..58fe847 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/rainshowers_night.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/rainshowers_polartwilight.png b/screenless/bureau/publications/weather_icons/rainshowers_polartwilight.png new file mode 100644 index 0000000..4a80a90 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/rainshowers_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/rainshowers_polartwilight.svg b/screenless/bureau/publications/weather_icons/rainshowers_polartwilight.svg new file mode 100644 index 0000000..80ede84 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/rainshowers_polartwilight.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/rainshowersandthunder_day.png b/screenless/bureau/publications/weather_icons/rainshowersandthunder_day.png new file mode 100644 index 0000000..8afe20e Binary files /dev/null and b/screenless/bureau/publications/weather_icons/rainshowersandthunder_day.png differ diff --git a/screenless/bureau/publications/weather_icons/rainshowersandthunder_day.svg b/screenless/bureau/publications/weather_icons/rainshowersandthunder_day.svg new file mode 100644 index 0000000..e5da5a1 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/rainshowersandthunder_day.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/rainshowersandthunder_night.png b/screenless/bureau/publications/weather_icons/rainshowersandthunder_night.png new file mode 100644 index 0000000..fbdd642 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/rainshowersandthunder_night.png differ diff --git a/screenless/bureau/publications/weather_icons/rainshowersandthunder_night.svg b/screenless/bureau/publications/weather_icons/rainshowersandthunder_night.svg new file mode 100644 index 0000000..1eb876d --- /dev/null +++ b/screenless/bureau/publications/weather_icons/rainshowersandthunder_night.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/rainshowersandthunder_polartwilight.png b/screenless/bureau/publications/weather_icons/rainshowersandthunder_polartwilight.png new file mode 100644 index 0000000..9e787d3 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/rainshowersandthunder_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/rainshowersandthunder_polartwilight.svg b/screenless/bureau/publications/weather_icons/rainshowersandthunder_polartwilight.svg new file mode 100644 index 0000000..4fca933 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/rainshowersandthunder_polartwilight.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/rainthunder-night.png b/screenless/bureau/publications/weather_icons/rainthunder-night.png deleted file mode 100644 index 454fccf..0000000 Binary files a/screenless/bureau/publications/weather_icons/rainthunder-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/rainthunder-night.svg b/screenless/bureau/publications/weather_icons/rainthunder-night.svg deleted file mode 100644 index 0148cdd..0000000 --- a/screenless/bureau/publications/weather_icons/rainthunder-night.svg +++ /dev/null @@ -1,518 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/rainthunder.png b/screenless/bureau/publications/weather_icons/rainthunder.png deleted file mode 100644 index 75784a6..0000000 Binary files a/screenless/bureau/publications/weather_icons/rainthunder.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/rainthunder.svg b/screenless/bureau/publications/weather_icons/rainthunder.svg deleted file mode 100644 index abdeaa0..0000000 --- a/screenless/bureau/publications/weather_icons/rainthunder.svg +++ /dev/null @@ -1,518 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/sleet-night.png b/screenless/bureau/publications/weather_icons/sleet-night.png deleted file mode 100644 index cc98062..0000000 Binary files a/screenless/bureau/publications/weather_icons/sleet-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/sleet-night.svg b/screenless/bureau/publications/weather_icons/sleet-night.svg deleted file mode 100644 index b290df4..0000000 --- a/screenless/bureau/publications/weather_icons/sleet-night.svg +++ /dev/null @@ -1,407 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/sleet.png b/screenless/bureau/publications/weather_icons/sleet.png index ab7487b..d93991b 100644 Binary files a/screenless/bureau/publications/weather_icons/sleet.png and b/screenless/bureau/publications/weather_icons/sleet.png differ diff --git a/screenless/bureau/publications/weather_icons/sleet.svg b/screenless/bureau/publications/weather_icons/sleet.svg index ba52058..28a297f 100644 --- a/screenless/bureau/publications/weather_icons/sleet.svg +++ b/screenless/bureau/publications/weather_icons/sleet.svg @@ -1,407 +1,21 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/sleetandthunder.png b/screenless/bureau/publications/weather_icons/sleetandthunder.png new file mode 100644 index 0000000..fcc9430 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/sleetandthunder.png differ diff --git a/screenless/bureau/publications/weather_icons/sleetandthunder.svg b/screenless/bureau/publications/weather_icons/sleetandthunder.svg new file mode 100644 index 0000000..907428f --- /dev/null +++ b/screenless/bureau/publications/weather_icons/sleetandthunder.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/sleetshowers_day.png b/screenless/bureau/publications/weather_icons/sleetshowers_day.png new file mode 100644 index 0000000..1991b4d Binary files /dev/null and b/screenless/bureau/publications/weather_icons/sleetshowers_day.png differ diff --git a/screenless/bureau/publications/weather_icons/sleetshowers_day.svg b/screenless/bureau/publications/weather_icons/sleetshowers_day.svg new file mode 100644 index 0000000..97e5afa --- /dev/null +++ b/screenless/bureau/publications/weather_icons/sleetshowers_day.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/sleetshowers_night.png b/screenless/bureau/publications/weather_icons/sleetshowers_night.png new file mode 100644 index 0000000..3e404d8 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/sleetshowers_night.png differ diff --git a/screenless/bureau/publications/weather_icons/sleetshowers_night.svg b/screenless/bureau/publications/weather_icons/sleetshowers_night.svg new file mode 100644 index 0000000..c43a73b --- /dev/null +++ b/screenless/bureau/publications/weather_icons/sleetshowers_night.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/sleetshowers_polartwilight.png b/screenless/bureau/publications/weather_icons/sleetshowers_polartwilight.png new file mode 100644 index 0000000..8f72956 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/sleetshowers_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/sleetshowers_polartwilight.svg b/screenless/bureau/publications/weather_icons/sleetshowers_polartwilight.svg new file mode 100644 index 0000000..e233169 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/sleetshowers_polartwilight.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/sleetshowersandthunder_day.png b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_day.png new file mode 100644 index 0000000..ff030af Binary files /dev/null and b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_day.png differ diff --git a/screenless/bureau/publications/weather_icons/sleetshowersandthunder_day.svg b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_day.svg new file mode 100644 index 0000000..01cb6e7 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_day.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/sleetshowersandthunder_night.png b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_night.png new file mode 100644 index 0000000..f9a1305 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_night.png differ diff --git a/screenless/bureau/publications/weather_icons/sleetshowersandthunder_night.svg b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_night.svg new file mode 100644 index 0000000..904f987 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_night.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/sleetshowersandthunder_polartwilight.png b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_polartwilight.png new file mode 100644 index 0000000..2dd5973 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/sleetshowersandthunder_polartwilight.svg b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_polartwilight.svg new file mode 100644 index 0000000..1b53807 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/sleetshowersandthunder_polartwilight.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/sleetsun-night.png b/screenless/bureau/publications/weather_icons/sleetsun-night.png deleted file mode 100644 index b713a12..0000000 Binary files a/screenless/bureau/publications/weather_icons/sleetsun-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/sleetsun-night.svg b/screenless/bureau/publications/weather_icons/sleetsun-night.svg deleted file mode 100644 index b11339b..0000000 --- a/screenless/bureau/publications/weather_icons/sleetsun-night.svg +++ /dev/null @@ -1,417 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/sleetsun.png b/screenless/bureau/publications/weather_icons/sleetsun.png deleted file mode 100644 index cc12898..0000000 Binary files a/screenless/bureau/publications/weather_icons/sleetsun.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/sleetsun.svg b/screenless/bureau/publications/weather_icons/sleetsun.svg deleted file mode 100644 index d5b6890..0000000 --- a/screenless/bureau/publications/weather_icons/sleetsun.svg +++ /dev/null @@ -1,417 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/sleetsunthunder-night.png b/screenless/bureau/publications/weather_icons/sleetsunthunder-night.png deleted file mode 100644 index 237a913..0000000 Binary files a/screenless/bureau/publications/weather_icons/sleetsunthunder-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/sleetsunthunder-night.svg b/screenless/bureau/publications/weather_icons/sleetsunthunder-night.svg deleted file mode 100644 index dd025ad..0000000 --- a/screenless/bureau/publications/weather_icons/sleetsunthunder-night.svg +++ /dev/null @@ -1,528 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/sleetsunthunder.png b/screenless/bureau/publications/weather_icons/sleetsunthunder.png deleted file mode 100644 index a6b89c8..0000000 Binary files a/screenless/bureau/publications/weather_icons/sleetsunthunder.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/sleetsunthunder.svg b/screenless/bureau/publications/weather_icons/sleetsunthunder.svg deleted file mode 100644 index 07d488f..0000000 --- a/screenless/bureau/publications/weather_icons/sleetsunthunder.svg +++ /dev/null @@ -1,528 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/sleetthunder-night.png b/screenless/bureau/publications/weather_icons/sleetthunder-night.png deleted file mode 100644 index 94b3307..0000000 Binary files a/screenless/bureau/publications/weather_icons/sleetthunder-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/sleetthunder-night.svg b/screenless/bureau/publications/weather_icons/sleetthunder-night.svg deleted file mode 100644 index 1dccde5..0000000 --- a/screenless/bureau/publications/weather_icons/sleetthunder-night.svg +++ /dev/null @@ -1,518 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/sleetthunder.png b/screenless/bureau/publications/weather_icons/sleetthunder.png deleted file mode 100644 index 5a5f44e..0000000 Binary files a/screenless/bureau/publications/weather_icons/sleetthunder.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/sleetthunder.svg b/screenless/bureau/publications/weather_icons/sleetthunder.svg deleted file mode 100644 index cd2e30a..0000000 --- a/screenless/bureau/publications/weather_icons/sleetthunder.svg +++ /dev/null @@ -1,518 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/snow-night.png b/screenless/bureau/publications/weather_icons/snow-night.png deleted file mode 100644 index cba3cae..0000000 Binary files a/screenless/bureau/publications/weather_icons/snow-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/snow-night.svg b/screenless/bureau/publications/weather_icons/snow-night.svg deleted file mode 100644 index d0cdf4f..0000000 --- a/screenless/bureau/publications/weather_icons/snow-night.svg +++ /dev/null @@ -1,526 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/snow.png b/screenless/bureau/publications/weather_icons/snow.png index d544899..ab1da2b 100644 Binary files a/screenless/bureau/publications/weather_icons/snow.png and b/screenless/bureau/publications/weather_icons/snow.png differ diff --git a/screenless/bureau/publications/weather_icons/snow.svg b/screenless/bureau/publications/weather_icons/snow.svg index 67ea048..25fed85 100644 --- a/screenless/bureau/publications/weather_icons/snow.svg +++ b/screenless/bureau/publications/weather_icons/snow.svg @@ -1,526 +1,18 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/snowandthunder.png b/screenless/bureau/publications/weather_icons/snowandthunder.png new file mode 100644 index 0000000..2a6c94c Binary files /dev/null and b/screenless/bureau/publications/weather_icons/snowandthunder.png differ diff --git a/screenless/bureau/publications/weather_icons/snowandthunder.svg b/screenless/bureau/publications/weather_icons/snowandthunder.svg new file mode 100644 index 0000000..c955133 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/snowandthunder.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/snowshowers_day.png b/screenless/bureau/publications/weather_icons/snowshowers_day.png new file mode 100644 index 0000000..a79d82e Binary files /dev/null and b/screenless/bureau/publications/weather_icons/snowshowers_day.png differ diff --git a/screenless/bureau/publications/weather_icons/snowshowers_day.svg b/screenless/bureau/publications/weather_icons/snowshowers_day.svg new file mode 100644 index 0000000..b80f82a --- /dev/null +++ b/screenless/bureau/publications/weather_icons/snowshowers_day.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/snowshowers_night.png b/screenless/bureau/publications/weather_icons/snowshowers_night.png new file mode 100644 index 0000000..3227767 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/snowshowers_night.png differ diff --git a/screenless/bureau/publications/weather_icons/snowshowers_night.svg b/screenless/bureau/publications/weather_icons/snowshowers_night.svg new file mode 100644 index 0000000..b502064 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/snowshowers_night.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/snowshowers_polartwilight.png b/screenless/bureau/publications/weather_icons/snowshowers_polartwilight.png new file mode 100644 index 0000000..e32099f Binary files /dev/null and b/screenless/bureau/publications/weather_icons/snowshowers_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/snowshowers_polartwilight.svg b/screenless/bureau/publications/weather_icons/snowshowers_polartwilight.svg new file mode 100644 index 0000000..90e936a --- /dev/null +++ b/screenless/bureau/publications/weather_icons/snowshowers_polartwilight.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/snowshowersandthunder_day.png b/screenless/bureau/publications/weather_icons/snowshowersandthunder_day.png new file mode 100644 index 0000000..7fefc92 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/snowshowersandthunder_day.png differ diff --git a/screenless/bureau/publications/weather_icons/snowshowersandthunder_day.svg b/screenless/bureau/publications/weather_icons/snowshowersandthunder_day.svg new file mode 100644 index 0000000..08752db --- /dev/null +++ b/screenless/bureau/publications/weather_icons/snowshowersandthunder_day.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/snowshowersandthunder_night.png b/screenless/bureau/publications/weather_icons/snowshowersandthunder_night.png new file mode 100644 index 0000000..ff865d3 Binary files /dev/null and b/screenless/bureau/publications/weather_icons/snowshowersandthunder_night.png differ diff --git a/screenless/bureau/publications/weather_icons/snowshowersandthunder_night.svg b/screenless/bureau/publications/weather_icons/snowshowersandthunder_night.svg new file mode 100644 index 0000000..37e7df2 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/snowshowersandthunder_night.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/snowshowersandthunder_polartwilight.png b/screenless/bureau/publications/weather_icons/snowshowersandthunder_polartwilight.png new file mode 100644 index 0000000..4a7daac Binary files /dev/null and b/screenless/bureau/publications/weather_icons/snowshowersandthunder_polartwilight.png differ diff --git a/screenless/bureau/publications/weather_icons/snowshowersandthunder_polartwilight.svg b/screenless/bureau/publications/weather_icons/snowshowersandthunder_polartwilight.svg new file mode 100644 index 0000000..7fc3610 --- /dev/null +++ b/screenless/bureau/publications/weather_icons/snowshowersandthunder_polartwilight.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/screenless/bureau/publications/weather_icons/snowsun-night.png b/screenless/bureau/publications/weather_icons/snowsun-night.png deleted file mode 100644 index e6adf49..0000000 Binary files a/screenless/bureau/publications/weather_icons/snowsun-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/snowsun-night.svg b/screenless/bureau/publications/weather_icons/snowsun-night.svg deleted file mode 100644 index 25359b5..0000000 --- a/screenless/bureau/publications/weather_icons/snowsun-night.svg +++ /dev/null @@ -1,536 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/snowsun.png b/screenless/bureau/publications/weather_icons/snowsun.png deleted file mode 100644 index 0ede0ba..0000000 Binary files a/screenless/bureau/publications/weather_icons/snowsun.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/snowsun.svg b/screenless/bureau/publications/weather_icons/snowsun.svg deleted file mode 100644 index 6ac014d..0000000 --- a/screenless/bureau/publications/weather_icons/snowsun.svg +++ /dev/null @@ -1,536 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/snowsunthunder-night.png b/screenless/bureau/publications/weather_icons/snowsunthunder-night.png deleted file mode 100644 index 5d9ef1e..0000000 Binary files a/screenless/bureau/publications/weather_icons/snowsunthunder-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/snowsunthunder-night.svg b/screenless/bureau/publications/weather_icons/snowsunthunder-night.svg deleted file mode 100644 index 27f2f14..0000000 --- a/screenless/bureau/publications/weather_icons/snowsunthunder-night.svg +++ /dev/null @@ -1,647 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/snowsunthunder.png b/screenless/bureau/publications/weather_icons/snowsunthunder.png deleted file mode 100644 index 6e2b084..0000000 Binary files a/screenless/bureau/publications/weather_icons/snowsunthunder.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/snowsunthunder.svg b/screenless/bureau/publications/weather_icons/snowsunthunder.svg deleted file mode 100644 index 7882f11..0000000 --- a/screenless/bureau/publications/weather_icons/snowsunthunder.svg +++ /dev/null @@ -1,644 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/snowthunder-night.png b/screenless/bureau/publications/weather_icons/snowthunder-night.png deleted file mode 100644 index e1415ce..0000000 Binary files a/screenless/bureau/publications/weather_icons/snowthunder-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/snowthunder-night.svg b/screenless/bureau/publications/weather_icons/snowthunder-night.svg deleted file mode 100644 index 377fe05..0000000 --- a/screenless/bureau/publications/weather_icons/snowthunder-night.svg +++ /dev/null @@ -1,637 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/snowthunder.png b/screenless/bureau/publications/weather_icons/snowthunder.png deleted file mode 100644 index 1318551..0000000 Binary files a/screenless/bureau/publications/weather_icons/snowthunder.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/snowthunder.svg b/screenless/bureau/publications/weather_icons/snowthunder.svg deleted file mode 100644 index 341092c..0000000 --- a/screenless/bureau/publications/weather_icons/snowthunder.svg +++ /dev/null @@ -1,637 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/sun-night.png b/screenless/bureau/publications/weather_icons/sun-night.png deleted file mode 100644 index 6652736..0000000 Binary files a/screenless/bureau/publications/weather_icons/sun-night.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/sun-night.svg b/screenless/bureau/publications/weather_icons/sun-night.svg deleted file mode 100644 index 5d8ee0b..0000000 --- a/screenless/bureau/publications/weather_icons/sun-night.svg +++ /dev/null @@ -1,323 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/screenless/bureau/publications/weather_icons/sun.png b/screenless/bureau/publications/weather_icons/sun.png deleted file mode 100644 index b4da600..0000000 Binary files a/screenless/bureau/publications/weather_icons/sun.png and /dev/null differ diff --git a/screenless/bureau/publications/weather_icons/sun.svg b/screenless/bureau/publications/weather_icons/sun.svg deleted file mode 100644 index 4e94cf4..0000000 --- a/screenless/bureau/publications/weather_icons/sun.svg +++ /dev/null @@ -1,322 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -