From 18d6bd9764e33da8464af28d91e1bf26ff3f022c Mon Sep 17 00:00:00 2001 From: dgcampbe Date: Sun, 21 Jul 2024 01:13:06 -0400 Subject: [PATCH 1/5] Initial attempt to add breezy weather support to the main app. --- app/src/main/AndroidManifest.xml | 19 ++++ .../breezy_icon_provider_animator_filter.xml | 92 +++++++++++++++ .../res/xml/breezy_icon_provider_config.xml | 6 + .../breezy_icon_provider_drawable_filter.xml | 52 +++++++++ .../breezy_icon_provider_shortcut_filter.xml | 76 +++++++++++++ .../breezy_icon_provider_sun_moon_filter.xml | 7 ++ newicons/weather_clear_day.svg | 105 ++++++++++++++++++ newicons/weather_clear_night.svg | 40 +++++++ newicons/weather_cloudy_day.svg | 41 +++++++ newicons/weather_cloudy_night.svg | 41 +++++++ newicons/weather_partly_cloudy_day.svg | 86 ++++++++++++++ newicons/weather_partly_cloudy_night.svg | 46 ++++++++ newicons/weather_rain_day.svg | 65 +++++++++++ newicons/weather_rain_night.svg | 65 +++++++++++ 14 files changed, 741 insertions(+) create mode 100644 app/src/main/res/xml/breezy_icon_provider_animator_filter.xml create mode 100644 app/src/main/res/xml/breezy_icon_provider_config.xml create mode 100644 app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml create mode 100644 app/src/main/res/xml/breezy_icon_provider_shortcut_filter.xml create mode 100644 app/src/main/res/xml/breezy_icon_provider_sun_moon_filter.xml create mode 100644 newicons/weather_clear_day.svg create mode 100644 newicons/weather_clear_night.svg create mode 100644 newicons/weather_cloudy_day.svg create mode 100644 newicons/weather_cloudy_night.svg create mode 100644 newicons/weather_partly_cloudy_day.svg create mode 100644 newicons/weather_partly_cloudy_night.svg create mode 100644 newicons/weather_rain_day.svg create mode 100644 newicons/weather_rain_night.svg diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 21b30a4b82..d9f35fcc0c 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -32,6 +32,25 @@ android:theme="@style/Theme.App.Starting" android:configChanges="uiMode|orientation|keyboardHidden|screenSize" android:exported="true"> + + + + + + + + + diff --git a/app/src/main/res/xml/breezy_icon_provider_animator_filter.xml b/app/src/main/res/xml/breezy_icon_provider_animator_filter.xml new file mode 100644 index 0000000000..eb7a741a00 --- /dev/null +++ b/app/src/main/res/xml/breezy_icon_provider_animator_filter.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/xml/breezy_icon_provider_config.xml b/app/src/main/res/xml/breezy_icon_provider_config.xml new file mode 100644 index 0000000000..a70b11d294 --- /dev/null +++ b/app/src/main/res/xml/breezy_icon_provider_config.xml @@ -0,0 +1,6 @@ + diff --git a/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml b/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml new file mode 100644 index 0000000000..6ca157e0fa --- /dev/null +++ b/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/xml/breezy_icon_provider_shortcut_filter.xml b/app/src/main/res/xml/breezy_icon_provider_shortcut_filter.xml new file mode 100644 index 0000000000..abb3d725f7 --- /dev/null +++ b/app/src/main/res/xml/breezy_icon_provider_shortcut_filter.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/xml/breezy_icon_provider_sun_moon_filter.xml b/app/src/main/res/xml/breezy_icon_provider_sun_moon_filter.xml new file mode 100644 index 0000000000..f39c7a54da --- /dev/null +++ b/app/src/main/res/xml/breezy_icon_provider_sun_moon_filter.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/newicons/weather_clear_day.svg b/newicons/weather_clear_day.svg new file mode 100644 index 0000000000..05380b830f --- /dev/null +++ b/newicons/weather_clear_day.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + diff --git a/newicons/weather_clear_night.svg b/newicons/weather_clear_night.svg new file mode 100644 index 0000000000..f6661825f8 --- /dev/null +++ b/newicons/weather_clear_night.svg @@ -0,0 +1,40 @@ + + + + + + + + diff --git a/newicons/weather_cloudy_day.svg b/newicons/weather_cloudy_day.svg new file mode 100644 index 0000000000..0913d4d9fe --- /dev/null +++ b/newicons/weather_cloudy_day.svg @@ -0,0 +1,41 @@ + + + + + + + + diff --git a/newicons/weather_cloudy_night.svg b/newicons/weather_cloudy_night.svg new file mode 100644 index 0000000000..0913d4d9fe --- /dev/null +++ b/newicons/weather_cloudy_night.svg @@ -0,0 +1,41 @@ + + + + + + + + diff --git a/newicons/weather_partly_cloudy_day.svg b/newicons/weather_partly_cloudy_day.svg new file mode 100644 index 0000000000..e5b82988d3 --- /dev/null +++ b/newicons/weather_partly_cloudy_day.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + diff --git a/newicons/weather_partly_cloudy_night.svg b/newicons/weather_partly_cloudy_night.svg new file mode 100644 index 0000000000..e4b5f19847 --- /dev/null +++ b/newicons/weather_partly_cloudy_night.svg @@ -0,0 +1,46 @@ + + + + + + + + + diff --git a/newicons/weather_rain_day.svg b/newicons/weather_rain_day.svg new file mode 100644 index 0000000000..c7fa95209d --- /dev/null +++ b/newicons/weather_rain_day.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + diff --git a/newicons/weather_rain_night.svg b/newicons/weather_rain_night.svg new file mode 100644 index 0000000000..c7fa95209d --- /dev/null +++ b/newicons/weather_rain_night.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + From 49f6d010a8d79f103200ad5caf5dc7d0ab14fe66 Mon Sep 17 00:00:00 2001 From: Donno <31142286+Donnnno@users.noreply.github.com> Date: Sun, 21 Jul 2024 13:37:05 +0200 Subject: [PATCH 2/5] minified svgs --- newicons/weather_clear_day.svg | 106 +---------------------- newicons/weather_clear_night.svg | 41 +-------- newicons/weather_cloudy_day.svg | 42 +-------- newicons/weather_cloudy_night.svg | 42 +-------- newicons/weather_partly_cloudy_day.svg | 87 +------------------ newicons/weather_partly_cloudy_night.svg | 47 +--------- newicons/weather_rain_day.svg | 66 +------------- newicons/weather_rain_night.svg | 66 +------------- 8 files changed, 8 insertions(+), 489 deletions(-) diff --git a/newicons/weather_clear_day.svg b/newicons/weather_clear_day.svg index 05380b830f..143a138447 100644 --- a/newicons/weather_clear_day.svg +++ b/newicons/weather_clear_day.svg @@ -1,105 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/newicons/weather_clear_night.svg b/newicons/weather_clear_night.svg index f6661825f8..4c63a85de3 100644 --- a/newicons/weather_clear_night.svg +++ b/newicons/weather_clear_night.svg @@ -1,40 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/newicons/weather_cloudy_day.svg b/newicons/weather_cloudy_day.svg index 0913d4d9fe..6b46f0e06a 100644 --- a/newicons/weather_cloudy_day.svg +++ b/newicons/weather_cloudy_day.svg @@ -1,41 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/newicons/weather_cloudy_night.svg b/newicons/weather_cloudy_night.svg index 0913d4d9fe..6b46f0e06a 100644 --- a/newicons/weather_cloudy_night.svg +++ b/newicons/weather_cloudy_night.svg @@ -1,41 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/newicons/weather_partly_cloudy_day.svg b/newicons/weather_partly_cloudy_day.svg index e5b82988d3..69d8276604 100644 --- a/newicons/weather_partly_cloudy_day.svg +++ b/newicons/weather_partly_cloudy_day.svg @@ -1,86 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/newicons/weather_partly_cloudy_night.svg b/newicons/weather_partly_cloudy_night.svg index e4b5f19847..dd47b212e5 100644 --- a/newicons/weather_partly_cloudy_night.svg +++ b/newicons/weather_partly_cloudy_night.svg @@ -1,46 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/newicons/weather_rain_day.svg b/newicons/weather_rain_day.svg index c7fa95209d..d63c14a4c3 100644 --- a/newicons/weather_rain_day.svg +++ b/newicons/weather_rain_day.svg @@ -1,65 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/newicons/weather_rain_night.svg b/newicons/weather_rain_night.svg index c7fa95209d..d63c14a4c3 100644 --- a/newicons/weather_rain_night.svg +++ b/newicons/weather_rain_night.svg @@ -1,65 +1 @@ - - - - - - - - - - - + \ No newline at end of file From a43fc215199e40ba24df9c54d6f5cf59b12057f1 Mon Sep 17 00:00:00 2001 From: Bastian <8929967+Kaiserdragon2@users.noreply.github.com> Date: Tue, 23 Jul 2024 18:12:06 +0200 Subject: [PATCH 3/5] Move Metadata to correct position so it can be accessed by brezzy --- app/src/main/AndroidManifest.xml | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index d9f35fcc0c..2cdd35b2b7 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -26,6 +26,22 @@ tools:replace="android:icon" tools:targetApi="n"> + + + + + + - - - - - From 0c2393d79c272b40ca63f1855e91d386d4357945 Mon Sep 17 00:00:00 2001 From: Donno <31142286+Donnnno@users.noreply.github.com> Date: Fri, 26 Jul 2024 14:01:13 +0200 Subject: [PATCH 4/5] icons update --- app/src/black/res/values-night/colors.xml | 6 +- app/src/black/res/values/colors.xml | 6 +- .../main/res/drawable/weather_clear_day.xml | 60 +++++++++++++++++++ .../main/res/drawable/weather_clear_night.xml | 12 ++++ app/src/main/res/drawable/weather_cloudy.xml | 30 ++++++++++ app/src/main/res/drawable/weather_fog.xml | 30 ++++++++++ app/src/main/res/drawable/weather_hail.xml | 30 ++++++++++ app/src/main/res/drawable/weather_haze.xml | 60 +++++++++++++++++++ .../drawable/weather_partly_cloudy_day.xml | 60 +++++++++++++++++++ .../drawable/weather_partly_cloudy_night.xml | 24 ++++++++ .../main/res/drawable/weather_rain_day.xml | 30 ++++++++++ .../main/res/drawable/weather_rain_sleet.xml | 30 ++++++++++ app/src/main/res/drawable/weather_snow.xml | 30 ++++++++++ app/src/main/res/drawable/weather_thunder.xml | 18 ++++++ .../res/drawable/weather_thunderstorm.xml | 24 ++++++++ app/src/main/res/drawable/weather_wind.xml | 27 +++++++++ .../breezy_icon_provider_drawable_filter.xml | 40 ++++++------- app/src/normal/res/values-night/colors.xml | 3 + app/src/normal/res/values/colors.xml | 8 ++- 19 files changed, 504 insertions(+), 24 deletions(-) create mode 100644 app/src/main/res/drawable/weather_clear_day.xml create mode 100644 app/src/main/res/drawable/weather_clear_night.xml create mode 100644 app/src/main/res/drawable/weather_cloudy.xml create mode 100644 app/src/main/res/drawable/weather_fog.xml create mode 100644 app/src/main/res/drawable/weather_hail.xml create mode 100644 app/src/main/res/drawable/weather_haze.xml create mode 100644 app/src/main/res/drawable/weather_partly_cloudy_day.xml create mode 100644 app/src/main/res/drawable/weather_partly_cloudy_night.xml create mode 100644 app/src/main/res/drawable/weather_rain_day.xml create mode 100644 app/src/main/res/drawable/weather_rain_sleet.xml create mode 100644 app/src/main/res/drawable/weather_snow.xml create mode 100644 app/src/main/res/drawable/weather_thunder.xml create mode 100644 app/src/main/res/drawable/weather_thunderstorm.xml create mode 100644 app/src/main/res/drawable/weather_wind.xml diff --git a/app/src/black/res/values-night/colors.xml b/app/src/black/res/values-night/colors.xml index 14cfea60d7..92d78b5be2 100644 --- a/app/src/black/res/values-night/colors.xml +++ b/app/src/black/res/values-night/colors.xml @@ -4,9 +4,13 @@ #f1f1f1 - #FFF + #fff #000000 #000000 + + + #000000 + \ No newline at end of file diff --git a/app/src/black/res/values/colors.xml b/app/src/black/res/values/colors.xml index 14cfea60d7..693b81c786 100644 --- a/app/src/black/res/values/colors.xml +++ b/app/src/black/res/values/colors.xml @@ -4,9 +4,13 @@ #f1f1f1 - #FFF + #fff #000000 #000000 + + + #fff + \ No newline at end of file diff --git a/app/src/main/res/drawable/weather_clear_day.xml b/app/src/main/res/drawable/weather_clear_day.xml new file mode 100644 index 0000000000..97b68e5b7c --- /dev/null +++ b/app/src/main/res/drawable/weather_clear_day.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + diff --git a/app/src/main/res/drawable/weather_clear_night.xml b/app/src/main/res/drawable/weather_clear_night.xml new file mode 100644 index 0000000000..50594fec3d --- /dev/null +++ b/app/src/main/res/drawable/weather_clear_night.xml @@ -0,0 +1,12 @@ + + + diff --git a/app/src/main/res/drawable/weather_cloudy.xml b/app/src/main/res/drawable/weather_cloudy.xml new file mode 100644 index 0000000000..ce42924ef6 --- /dev/null +++ b/app/src/main/res/drawable/weather_cloudy.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/weather_fog.xml b/app/src/main/res/drawable/weather_fog.xml new file mode 100644 index 0000000000..9f0023692d --- /dev/null +++ b/app/src/main/res/drawable/weather_fog.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/weather_hail.xml b/app/src/main/res/drawable/weather_hail.xml new file mode 100644 index 0000000000..ff493d3f18 --- /dev/null +++ b/app/src/main/res/drawable/weather_hail.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/weather_haze.xml b/app/src/main/res/drawable/weather_haze.xml new file mode 100644 index 0000000000..5d82dd147f --- /dev/null +++ b/app/src/main/res/drawable/weather_haze.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + diff --git a/app/src/main/res/drawable/weather_partly_cloudy_day.xml b/app/src/main/res/drawable/weather_partly_cloudy_day.xml new file mode 100644 index 0000000000..e2e48231f6 --- /dev/null +++ b/app/src/main/res/drawable/weather_partly_cloudy_day.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + diff --git a/app/src/main/res/drawable/weather_partly_cloudy_night.xml b/app/src/main/res/drawable/weather_partly_cloudy_night.xml new file mode 100644 index 0000000000..7bda76eead --- /dev/null +++ b/app/src/main/res/drawable/weather_partly_cloudy_night.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/app/src/main/res/drawable/weather_rain_day.xml b/app/src/main/res/drawable/weather_rain_day.xml new file mode 100644 index 0000000000..f0f8ce05ae --- /dev/null +++ b/app/src/main/res/drawable/weather_rain_day.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/weather_rain_sleet.xml b/app/src/main/res/drawable/weather_rain_sleet.xml new file mode 100644 index 0000000000..6f6c6fbc0c --- /dev/null +++ b/app/src/main/res/drawable/weather_rain_sleet.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/weather_snow.xml b/app/src/main/res/drawable/weather_snow.xml new file mode 100644 index 0000000000..2bbdc67532 --- /dev/null +++ b/app/src/main/res/drawable/weather_snow.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/weather_thunder.xml b/app/src/main/res/drawable/weather_thunder.xml new file mode 100644 index 0000000000..79fbebe5ca --- /dev/null +++ b/app/src/main/res/drawable/weather_thunder.xml @@ -0,0 +1,18 @@ + + + + diff --git a/app/src/main/res/drawable/weather_thunderstorm.xml b/app/src/main/res/drawable/weather_thunderstorm.xml new file mode 100644 index 0000000000..558e7cb162 --- /dev/null +++ b/app/src/main/res/drawable/weather_thunderstorm.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/app/src/main/res/drawable/weather_wind.xml b/app/src/main/res/drawable/weather_wind.xml new file mode 100644 index 0000000000..dba9c3bbc3 --- /dev/null +++ b/app/src/main/res/drawable/weather_wind.xml @@ -0,0 +1,27 @@ + + + + + diff --git a/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml b/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml index 6ca157e0fa..4733df64f2 100644 --- a/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml +++ b/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml @@ -9,44 +9,44 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/app/src/normal/res/values-night/colors.xml b/app/src/normal/res/values-night/colors.xml index d55f727e61..6d65a348ff 100644 --- a/app/src/normal/res/values-night/colors.xml +++ b/app/src/normal/res/values-night/colors.xml @@ -3,4 +3,7 @@ #222222 + + #000000 + \ No newline at end of file diff --git a/app/src/normal/res/values/colors.xml b/app/src/normal/res/values/colors.xml index ae9b12eff7..da5661e2b1 100644 --- a/app/src/normal/res/values/colors.xml +++ b/app/src/normal/res/values/colors.xml @@ -4,8 +4,12 @@ #222222 #000000 - #FFF + #fff - #FFFFFF + #fff + + + #fff + \ No newline at end of file From 587ae68ec9ee31d973a742e7b8d684e00135a239 Mon Sep 17 00:00:00 2001 From: Donno <31142286+Donnnno@users.noreply.github.com> Date: Sat, 27 Jul 2024 14:04:38 +0200 Subject: [PATCH 5/5] fixes and shortcut icons --- app/src/black/res/values-night/colors.xml | 7 +- app/src/black/res/values/colors.xml | 5 +- app/src/dayNight/res/values-night/colors.xml | 9 +- app/src/dayNight/res/values/colors.xml | 7 +- app/src/main/AndroidManifest.xml | 3 - .../main/res/drawable/shortcut_clear_day.xml | 64 +++++++++++++ .../res/drawable/shortcut_clear_day_f.xml | 60 ++++++++++++ .../res/drawable/shortcut_clear_night.xml | 16 ++++ .../res/drawable/shortcut_clear_night_f.xml | 12 +++ app/src/main/res/drawable/shortcut_cloudy.xml | 34 +++++++ .../main/res/drawable/shortcut_cloudy_f.xml | 30 ++++++ app/src/main/res/drawable/shortcut_fog.xml | 34 +++++++ app/src/main/res/drawable/shortcut_fog_f.xml | 30 ++++++ app/src/main/res/drawable/shortcut_hail.xml | 34 +++++++ app/src/main/res/drawable/shortcut_hail_f.xml | 30 ++++++ app/src/main/res/drawable/shortcut_haze.xml | 64 +++++++++++++ app/src/main/res/drawable/shortcut_haze_f.xml | 60 ++++++++++++ .../drawable/shortcut_partly_cloudy_day.xml | 64 +++++++++++++ .../drawable/shortcut_partly_cloudy_day_f.xml | 60 ++++++++++++ .../drawable/shortcut_partly_cloudy_night.xml | 28 ++++++ .../shortcut_partly_cloudy_night_f.xml | 24 +++++ app/src/main/res/drawable/shortcut_rain.xml | 34 +++++++ app/src/main/res/drawable/shortcut_rain_f.xml | 30 ++++++ app/src/main/res/drawable/shortcut_sleet.xml | 34 +++++++ .../main/res/drawable/shortcut_sleet_f.xml | 30 ++++++ app/src/main/res/drawable/shortcut_snow.xml | 34 +++++++ app/src/main/res/drawable/shortcut_snow_f.xml | 30 ++++++ .../main/res/drawable/shortcut_thunder.xml | 22 +++++ .../main/res/drawable/shortcut_thunder_f.xml | 18 ++++ .../res/drawable/shortcut_thunderstorm.xml | 28 ++++++ .../res/drawable/shortcut_thunderstorm_f.xml | 24 +++++ app/src/main/res/drawable/shortcut_wind.xml | 28 ++++++ app/src/main/res/drawable/shortcut_wind_f.xml | 24 +++++ .../main/res/drawable/weather_clear_day.xml | 9 ++ .../main/res/drawable/weather_clear_night.xml | 1 + app/src/main/res/drawable/weather_cloudy.xml | 4 + app/src/main/res/drawable/weather_fog.xml | 4 + app/src/main/res/drawable/weather_hail.xml | 4 + app/src/main/res/drawable/weather_haze.xml | 9 ++ .../drawable/weather_partly_cloudy_day.xml | 9 ++ .../drawable/weather_partly_cloudy_night.xml | 3 + ...{weather_rain_day.xml => weather_rain.xml} | 4 + ...ather_rain_sleet.xml => weather_sleet.xml} | 4 + app/src/main/res/drawable/weather_snow.xml | 4 + app/src/main/res/drawable/weather_thunder.xml | 2 + .../res/drawable/weather_thunderstorm.xml | 3 + app/src/main/res/drawable/weather_wind.xml | 6 +- .../res/xml/breezy_icon_provider_config.xml | 2 +- .../breezy_icon_provider_drawable_filter.xml | 27 +++++- .../breezy_icon_provider_shortcut_filter.xml | 96 +++++++++---------- .../breezy_icon_provider_sun_moon_filter.xml | 7 -- app/src/normal/res/values-night/colors.xml | 3 +- app/src/normal/res/values/colors.xml | 3 +- app/src/you/res/values-night/colors.xml | 10 +- app/src/you/res/values/colors.xml | 10 +- newicons/weather_clear_day.svg | 1 - newicons/weather_clear_night.svg | 1 - newicons/weather_cloudy_day.svg | 1 - newicons/weather_cloudy_night.svg | 1 - newicons/weather_partly_cloudy_day.svg | 1 - newicons/weather_partly_cloudy_night.svg | 1 - newicons/weather_rain_day.svg | 1 - newicons/weather_rain_night.svg | 1 - 63 files changed, 1147 insertions(+), 96 deletions(-) create mode 100644 app/src/main/res/drawable/shortcut_clear_day.xml create mode 100644 app/src/main/res/drawable/shortcut_clear_day_f.xml create mode 100644 app/src/main/res/drawable/shortcut_clear_night.xml create mode 100644 app/src/main/res/drawable/shortcut_clear_night_f.xml create mode 100644 app/src/main/res/drawable/shortcut_cloudy.xml create mode 100644 app/src/main/res/drawable/shortcut_cloudy_f.xml create mode 100644 app/src/main/res/drawable/shortcut_fog.xml create mode 100644 app/src/main/res/drawable/shortcut_fog_f.xml create mode 100644 app/src/main/res/drawable/shortcut_hail.xml create mode 100644 app/src/main/res/drawable/shortcut_hail_f.xml create mode 100644 app/src/main/res/drawable/shortcut_haze.xml create mode 100644 app/src/main/res/drawable/shortcut_haze_f.xml create mode 100644 app/src/main/res/drawable/shortcut_partly_cloudy_day.xml create mode 100644 app/src/main/res/drawable/shortcut_partly_cloudy_day_f.xml create mode 100644 app/src/main/res/drawable/shortcut_partly_cloudy_night.xml create mode 100644 app/src/main/res/drawable/shortcut_partly_cloudy_night_f.xml create mode 100644 app/src/main/res/drawable/shortcut_rain.xml create mode 100644 app/src/main/res/drawable/shortcut_rain_f.xml create mode 100644 app/src/main/res/drawable/shortcut_sleet.xml create mode 100644 app/src/main/res/drawable/shortcut_sleet_f.xml create mode 100644 app/src/main/res/drawable/shortcut_snow.xml create mode 100644 app/src/main/res/drawable/shortcut_snow_f.xml create mode 100644 app/src/main/res/drawable/shortcut_thunder.xml create mode 100644 app/src/main/res/drawable/shortcut_thunder_f.xml create mode 100644 app/src/main/res/drawable/shortcut_thunderstorm.xml create mode 100644 app/src/main/res/drawable/shortcut_thunderstorm_f.xml create mode 100644 app/src/main/res/drawable/shortcut_wind.xml create mode 100644 app/src/main/res/drawable/shortcut_wind_f.xml rename app/src/main/res/drawable/{weather_rain_day.xml => weather_rain.xml} (92%) rename app/src/main/res/drawable/{weather_rain_sleet.xml => weather_sleet.xml} (91%) delete mode 100644 app/src/main/res/xml/breezy_icon_provider_sun_moon_filter.xml delete mode 100644 newicons/weather_clear_day.svg delete mode 100644 newicons/weather_clear_night.svg delete mode 100644 newicons/weather_cloudy_day.svg delete mode 100644 newicons/weather_cloudy_night.svg delete mode 100644 newicons/weather_partly_cloudy_day.svg delete mode 100644 newicons/weather_partly_cloudy_night.svg delete mode 100644 newicons/weather_rain_day.svg delete mode 100644 newicons/weather_rain_night.svg diff --git a/app/src/black/res/values-night/colors.xml b/app/src/black/res/values-night/colors.xml index 92d78b5be2..8422b0d291 100644 --- a/app/src/black/res/values-night/colors.xml +++ b/app/src/black/res/values-night/colors.xml @@ -5,12 +5,13 @@ #fff - #000000 + #000 - #000000 + #000 - #000000 + #000 + #fff \ No newline at end of file diff --git a/app/src/black/res/values/colors.xml b/app/src/black/res/values/colors.xml index 693b81c786..021c07664f 100644 --- a/app/src/black/res/values/colors.xml +++ b/app/src/black/res/values/colors.xml @@ -5,12 +5,13 @@ #fff - #000000 + #000 - #000000 + #000 #fff + #000 \ No newline at end of file diff --git a/app/src/dayNight/res/values-night/colors.xml b/app/src/dayNight/res/values-night/colors.xml index 78a5723ad4..57aef0d964 100644 --- a/app/src/dayNight/res/values-night/colors.xml +++ b/app/src/dayNight/res/values-night/colors.xml @@ -4,12 +4,13 @@ #222222 - #000000 - #FFF + #000 + #fff - #FFFFFF + #fff + #000 - #FFFFFF + #fff \ No newline at end of file diff --git a/app/src/dayNight/res/values/colors.xml b/app/src/dayNight/res/values/colors.xml index 7546cd0474..a2749479a1 100644 --- a/app/src/dayNight/res/values/colors.xml +++ b/app/src/dayNight/res/values/colors.xml @@ -5,11 +5,12 @@ #FFF - #000000 + #000 - #000000 + #000 + #fff - #000000 + #000 \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 2cdd35b2b7..13db0ab639 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -38,9 +38,6 @@ - + + + + + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_clear_day_f.xml b/app/src/main/res/drawable/shortcut_clear_day_f.xml new file mode 100644 index 0000000000..936a172c4f --- /dev/null +++ b/app/src/main/res/drawable/shortcut_clear_day_f.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_clear_night.xml b/app/src/main/res/drawable/shortcut_clear_night.xml new file mode 100644 index 0000000000..98a8a47bce --- /dev/null +++ b/app/src/main/res/drawable/shortcut_clear_night.xml @@ -0,0 +1,16 @@ + + + + diff --git a/app/src/main/res/drawable/shortcut_clear_night_f.xml b/app/src/main/res/drawable/shortcut_clear_night_f.xml new file mode 100644 index 0000000000..28d303c347 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_clear_night_f.xml @@ -0,0 +1,12 @@ + + + diff --git a/app/src/main/res/drawable/shortcut_cloudy.xml b/app/src/main/res/drawable/shortcut_cloudy.xml new file mode 100644 index 0000000000..bd25d6ad82 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_cloudy.xml @@ -0,0 +1,34 @@ + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_cloudy_f.xml b/app/src/main/res/drawable/shortcut_cloudy_f.xml new file mode 100644 index 0000000000..ec4e517ca8 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_cloudy_f.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/shortcut_fog.xml b/app/src/main/res/drawable/shortcut_fog.xml new file mode 100644 index 0000000000..aa7409621b --- /dev/null +++ b/app/src/main/res/drawable/shortcut_fog.xml @@ -0,0 +1,34 @@ + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_fog_f.xml b/app/src/main/res/drawable/shortcut_fog_f.xml new file mode 100644 index 0000000000..8cc2d2e5d0 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_fog_f.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/shortcut_hail.xml b/app/src/main/res/drawable/shortcut_hail.xml new file mode 100644 index 0000000000..42c1a55df4 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_hail.xml @@ -0,0 +1,34 @@ + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_hail_f.xml b/app/src/main/res/drawable/shortcut_hail_f.xml new file mode 100644 index 0000000000..5861022250 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_hail_f.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/shortcut_haze.xml b/app/src/main/res/drawable/shortcut_haze.xml new file mode 100644 index 0000000000..c05f670c68 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_haze.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_haze_f.xml b/app/src/main/res/drawable/shortcut_haze_f.xml new file mode 100644 index 0000000000..c9574df77c --- /dev/null +++ b/app/src/main/res/drawable/shortcut_haze_f.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_partly_cloudy_day.xml b/app/src/main/res/drawable/shortcut_partly_cloudy_day.xml new file mode 100644 index 0000000000..637abd01c3 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_partly_cloudy_day.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_partly_cloudy_day_f.xml b/app/src/main/res/drawable/shortcut_partly_cloudy_day_f.xml new file mode 100644 index 0000000000..bc872d7b40 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_partly_cloudy_day_f.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_partly_cloudy_night.xml b/app/src/main/res/drawable/shortcut_partly_cloudy_night.xml new file mode 100644 index 0000000000..6971201c2c --- /dev/null +++ b/app/src/main/res/drawable/shortcut_partly_cloudy_night.xml @@ -0,0 +1,28 @@ + + + + + + diff --git a/app/src/main/res/drawable/shortcut_partly_cloudy_night_f.xml b/app/src/main/res/drawable/shortcut_partly_cloudy_night_f.xml new file mode 100644 index 0000000000..0218129670 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_partly_cloudy_night_f.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/app/src/main/res/drawable/shortcut_rain.xml b/app/src/main/res/drawable/shortcut_rain.xml new file mode 100644 index 0000000000..c1e74df6af --- /dev/null +++ b/app/src/main/res/drawable/shortcut_rain.xml @@ -0,0 +1,34 @@ + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_rain_f.xml b/app/src/main/res/drawable/shortcut_rain_f.xml new file mode 100644 index 0000000000..e1bb154cb9 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_rain_f.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/shortcut_sleet.xml b/app/src/main/res/drawable/shortcut_sleet.xml new file mode 100644 index 0000000000..c33c95bbef --- /dev/null +++ b/app/src/main/res/drawable/shortcut_sleet.xml @@ -0,0 +1,34 @@ + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_sleet_f.xml b/app/src/main/res/drawable/shortcut_sleet_f.xml new file mode 100644 index 0000000000..ed89fc857a --- /dev/null +++ b/app/src/main/res/drawable/shortcut_sleet_f.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/shortcut_snow.xml b/app/src/main/res/drawable/shortcut_snow.xml new file mode 100644 index 0000000000..f34f607c93 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_snow.xml @@ -0,0 +1,34 @@ + + + + + + + diff --git a/app/src/main/res/drawable/shortcut_snow_f.xml b/app/src/main/res/drawable/shortcut_snow_f.xml new file mode 100644 index 0000000000..766885f1a6 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_snow_f.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/app/src/main/res/drawable/shortcut_thunder.xml b/app/src/main/res/drawable/shortcut_thunder.xml new file mode 100644 index 0000000000..6fa185d43c --- /dev/null +++ b/app/src/main/res/drawable/shortcut_thunder.xml @@ -0,0 +1,22 @@ + + + + + diff --git a/app/src/main/res/drawable/shortcut_thunder_f.xml b/app/src/main/res/drawable/shortcut_thunder_f.xml new file mode 100644 index 0000000000..0bb66aca66 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_thunder_f.xml @@ -0,0 +1,18 @@ + + + + diff --git a/app/src/main/res/drawable/shortcut_thunderstorm.xml b/app/src/main/res/drawable/shortcut_thunderstorm.xml new file mode 100644 index 0000000000..ff6d8f90d4 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_thunderstorm.xml @@ -0,0 +1,28 @@ + + + + + + diff --git a/app/src/main/res/drawable/shortcut_thunderstorm_f.xml b/app/src/main/res/drawable/shortcut_thunderstorm_f.xml new file mode 100644 index 0000000000..d06eb116be --- /dev/null +++ b/app/src/main/res/drawable/shortcut_thunderstorm_f.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/app/src/main/res/drawable/shortcut_wind.xml b/app/src/main/res/drawable/shortcut_wind.xml new file mode 100644 index 0000000000..df58001887 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_wind.xml @@ -0,0 +1,28 @@ + + + + + + diff --git a/app/src/main/res/drawable/shortcut_wind_f.xml b/app/src/main/res/drawable/shortcut_wind_f.xml new file mode 100644 index 0000000000..10cbf7bad8 --- /dev/null +++ b/app/src/main/res/drawable/shortcut_wind_f.xml @@ -0,0 +1,24 @@ + + + + + diff --git a/app/src/main/res/drawable/weather_clear_day.xml b/app/src/main/res/drawable/weather_clear_day.xml index 97b68e5b7c..6971247092 100644 --- a/app/src/main/res/drawable/weather_clear_day.xml +++ b/app/src/main/res/drawable/weather_clear_day.xml @@ -7,54 +7,63 @@ android:strokeWidth="1" android:pathData="M24,10.5c7.4558,0 13.5,6.0442 13.5,13.5s-6.0442,13.5 -13.5,13.5 -13.5,-6.0442 -13.5,-13.5 6.0442,-13.5 13.5,-13.5Z" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_clear_night.xml b/app/src/main/res/drawable/weather_clear_night.xml index 50594fec3d..108149ab08 100644 --- a/app/src/main/res/drawable/weather_clear_night.xml +++ b/app/src/main/res/drawable/weather_clear_night.xml @@ -7,6 +7,7 @@ android:strokeWidth="1" android:pathData="M27.6591,2.834c3.1735,3.1763 5.1364,7.5624 5.1364,12.4071 0,9.695 -7.8594,17.5543 -17.5544,17.5543 -4.8447,0 -9.2308,-1.9629 -12.4071,-5.1364 1.7401,10.1275 10.5418,17.841 21.166,17.841 11.8741,0 21.5,-9.6259 21.5,-21.5 0,-10.6241 -7.7134,-19.4259 -17.8409,-21.166Z" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_cloudy.xml b/app/src/main/res/drawable/weather_cloudy.xml index ce42924ef6..dddbcde564 100644 --- a/app/src/main/res/drawable/weather_cloudy.xml +++ b/app/src/main/res/drawable/weather_cloudy.xml @@ -7,24 +7,28 @@ android:strokeWidth="1" android:pathData="M27.2591,39.6252c2.485,0 4.4995,-2.0145 4.4995,-4.4995s-2.0145,-4.4995 -4.4995,-4.4995c-0.4242,0 -0.833,0.0627 -1.2222,0.1725 0.0273,-0.2551 0.0431,-0.5135 0.0431,-0.7759 0,-3.9832 -3.2291,-7.2122 -7.2122,-7.2122 -3.0854,0 -5.7108,1.9412 -6.7409,4.6658 -0.1779,-0.0156 -0.3569,-0.0272 -0.5388,-0.0272 -3.3624,0 -6.088,2.7257 -6.088,6.088s2.7257,6.088 6.088,6.088h15.6711Z" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_fog.xml b/app/src/main/res/drawable/weather_fog.xml index 9f0023692d..ff5dfaff7b 100644 --- a/app/src/main/res/drawable/weather_fog.xml +++ b/app/src/main/res/drawable/weather_fog.xml @@ -7,24 +7,28 @@ android:strokeWidth="1" android:pathData="M31.4696,15.8843h0.3089c2.4713,0 4.4706,1.9993 4.4706,4.4706 0,0.4977 -0.103,0.9696 -0.2488,1.4158h3.029c2.4713,0 4.4706,2.0079 4.4706,4.4792s-1.9993,4.4706 -4.4706,4.4706h-3.4924c0.2832,0.5921 0.4548,1.2442 0.4548,1.9479 0,2.4713 -1.9993,4.4706 -4.4706,4.4706H12.1541c-2.4713,0 -4.4792,-1.9993 -4.4792,-4.4706s2.0079,-4.4792 4.4792,-4.4792h3.4924c-0.2917,-0.5921 -0.4634,-1.2442 -0.4634,-1.9393 0,-0.4977 0.103,-0.9696 0.2488,-1.4158h-6.4528c-2.4713,0 -4.4792,-2.0079 -4.4792,-4.4792s2.0079,-4.4706 4.4792,-4.4706h0.3003" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_hail.xml b/app/src/main/res/drawable/weather_hail.xml index ff493d3f18..2dd3d2e103 100644 --- a/app/src/main/res/drawable/weather_hail.xml +++ b/app/src/main/res/drawable/weather_hail.xml @@ -7,24 +7,28 @@ android:strokeWidth="1" android:pathData="M34.737,26.4204c3.0918,0 5.5982,-2.5064 5.5982,-5.5982s-2.5064,-5.5982 -5.5982,-5.5982c-0.5278,0 -1.0365,0.078 -1.5206,0.2146 0.034,-0.3173 0.0536,-0.6389 0.0536,-0.9653 0,-4.9558 -4.0175,-8.9733 -8.9733,-8.9733 -3.8388,0 -7.1053,2.4151 -8.3869,5.8051 -0.2213,-0.0195 -0.4441,-0.0338 -0.6704,-0.0338 -4.1834,0 -7.5746,3.3912 -7.5746,7.5746s3.3912,7.5746 7.5746,7.5746h19.4976Z" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_haze.xml b/app/src/main/res/drawable/weather_haze.xml index 5d82dd147f..ba15da467b 100644 --- a/app/src/main/res/drawable/weather_haze.xml +++ b/app/src/main/res/drawable/weather_haze.xml @@ -7,54 +7,63 @@ android:strokeWidth="1" android:pathData="M35.1681,27.2342m-5.7341,0a5.7341,5.7341 0,1 1,11.4682 0a5.7341,5.7341 0,1 1,-11.4682 0" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_partly_cloudy_day.xml b/app/src/main/res/drawable/weather_partly_cloudy_day.xml index e2e48231f6..1d7d1d9b7d 100644 --- a/app/src/main/res/drawable/weather_partly_cloudy_day.xml +++ b/app/src/main/res/drawable/weather_partly_cloudy_day.xml @@ -7,54 +7,63 @@ android:strokeWidth="1" android:pathData="M36.7,28.57c0.52,-1.42 0.8,-2.96 0.8,-4.57 0,-7.46 -6.04,-13.5 -13.5,-13.5s-13.5,6.04 -13.5,13.5 6.04,13.5 13.5,13.5c0.62,0 1.24,-0.04 1.84,-0.13" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_partly_cloudy_night.xml b/app/src/main/res/drawable/weather_partly_cloudy_night.xml index 7bda76eead..a9a09f7e92 100644 --- a/app/src/main/res/drawable/weather_partly_cloudy_night.xml +++ b/app/src/main/res/drawable/weather_partly_cloudy_night.xml @@ -7,18 +7,21 @@ android:strokeWidth="1" android:pathData="M39.8443,39.2028c1.6782,0 3.0387,-1.3605 3.0387,-3.0387s-1.3605,-3.0387 -3.0387,-3.0387c-0.2865,0 -0.5626,0.0424 -0.8254,0.1165 0.0184,-0.1722 0.0291,-0.3468 0.0291,-0.524 0,-2.69 -2.1807,-4.8707 -4.8707,-4.8707 -2.0837,0 -3.8567,1.3109 -4.5524,3.151 -0.1201,-0.0106 -0.241,-0.0184 -0.3639,-0.0184 -2.2707,0 -4.1115,1.8408 -4.1115,4.1115s1.8408,4.1115 4.1115,4.1115h10.5833Z" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_rain_day.xml b/app/src/main/res/drawable/weather_rain.xml similarity index 92% rename from app/src/main/res/drawable/weather_rain_day.xml rename to app/src/main/res/drawable/weather_rain.xml index f0f8ce05ae..ad32a71c52 100644 --- a/app/src/main/res/drawable/weather_rain_day.xml +++ b/app/src/main/res/drawable/weather_rain.xml @@ -7,24 +7,28 @@ android:strokeWidth="1" android:pathData="M34.737,26.4204c3.0918,0 5.5982,-2.5064 5.5982,-5.5982s-2.5064,-5.5982 -5.5982,-5.5982c-0.5278,0 -1.0365,0.078 -1.5206,0.2146 0.034,-0.3173 0.0536,-0.6389 0.0536,-0.9653 0,-4.9558 -4.0175,-8.9733 -8.9733,-8.9733 -3.8388,0 -7.1053,2.4151 -8.3869,5.8051 -0.2213,-0.0195 -0.4441,-0.0338 -0.6704,-0.0338 -4.1834,0 -7.5746,3.3912 -7.5746,7.5746s3.3912,7.5746 7.5746,7.5746h19.4976Z" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_rain_sleet.xml b/app/src/main/res/drawable/weather_sleet.xml similarity index 91% rename from app/src/main/res/drawable/weather_rain_sleet.xml rename to app/src/main/res/drawable/weather_sleet.xml index 6f6c6fbc0c..056f784f48 100644 --- a/app/src/main/res/drawable/weather_rain_sleet.xml +++ b/app/src/main/res/drawable/weather_sleet.xml @@ -7,24 +7,28 @@ android:strokeWidth="1" android:pathData="M34.737,26.4204c3.0918,0 5.5982,-2.5064 5.5982,-5.5982s-2.5064,-5.5982 -5.5982,-5.5982c-0.5278,0 -1.0365,0.078 -1.5206,0.2146 0.034,-0.3173 0.0536,-0.6389 0.0536,-0.9653 0,-4.9558 -4.0175,-8.9733 -8.9733,-8.9733 -3.8388,0 -7.1053,2.4151 -8.3869,5.8051 -0.2213,-0.0195 -0.4441,-0.0338 -0.6704,-0.0338 -4.1834,0 -7.5746,3.3912 -7.5746,7.5746s3.3912,7.5746 7.5746,7.5746h19.4976Z" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_snow.xml b/app/src/main/res/drawable/weather_snow.xml index 2bbdc67532..a54dca0e43 100644 --- a/app/src/main/res/drawable/weather_snow.xml +++ b/app/src/main/res/drawable/weather_snow.xml @@ -7,24 +7,28 @@ android:strokeWidth="1" android:pathData="M34.737,26.4204c3.0918,0 5.5982,-2.5064 5.5982,-5.5982s-2.5064,-5.5982 -5.5982,-5.5982c-0.5278,0 -1.0365,0.078 -1.5206,0.2146 0.034,-0.3173 0.0536,-0.6389 0.0536,-0.9653 0,-4.9558 -4.0175,-8.9733 -8.9733,-8.9733 -3.8388,0 -7.1053,2.4151 -8.3869,5.8051 -0.2213,-0.0195 -0.4441,-0.0338 -0.6704,-0.0338 -4.1834,0 -7.5746,3.3912 -7.5746,7.5746s3.3912,7.5746 7.5746,7.5746h19.4976Z" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_thunder.xml b/app/src/main/res/drawable/weather_thunder.xml index 79fbebe5ca..addc7b9f5a 100644 --- a/app/src/main/res/drawable/weather_thunder.xml +++ b/app/src/main/res/drawable/weather_thunder.xml @@ -7,12 +7,14 @@ android:strokeWidth="1" android:pathData="M34.737,26.4204c3.0918,0 5.5982,-2.5064 5.5982,-5.5982s-2.5064,-5.5982 -5.5982,-5.5982c-0.5278,0 -1.0365,0.078 -1.5206,0.2146 0.034,-0.3173 0.0536,-0.6389 0.0536,-0.9653 0,-4.9558 -4.0175,-8.9733 -8.9733,-8.9733 -3.8388,0 -7.1053,2.4151 -8.3869,5.8051 -0.2213,-0.0195 -0.4441,-0.0338 -0.6704,-0.0338 -4.1834,0 -7.5746,3.3912 -7.5746,7.5746s3.3912,7.5746 7.5746,7.5746h19.4976Z" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_thunderstorm.xml b/app/src/main/res/drawable/weather_thunderstorm.xml index 558e7cb162..9d09391f33 100644 --- a/app/src/main/res/drawable/weather_thunderstorm.xml +++ b/app/src/main/res/drawable/weather_thunderstorm.xml @@ -7,18 +7,21 @@ android:strokeWidth="1" android:pathData="M34.737,26.4204c3.0918,0 5.5982,-2.5064 5.5982,-5.5982s-2.5064,-5.5982 -5.5982,-5.5982c-0.5278,0 -1.0365,0.078 -1.5206,0.2146 0.034,-0.3173 0.0536,-0.6389 0.0536,-0.9653 0,-4.9558 -4.0175,-8.9733 -8.9733,-8.9733 -3.8388,0 -7.1053,2.4151 -8.3869,5.8051 -0.2213,-0.0195 -0.4441,-0.0338 -0.6704,-0.0338 -4.1834,0 -7.5746,3.3912 -7.5746,7.5746s3.3912,7.5746 7.5746,7.5746h19.4976Z" android:strokeLineJoin="round" + android:fillColor="#00000000" android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/drawable/weather_wind.xml b/app/src/main/res/drawable/weather_wind.xml index dba9c3bbc3..c7646c181d 100644 --- a/app/src/main/res/drawable/weather_wind.xml +++ b/app/src/main/res/drawable/weather_wind.xml @@ -8,20 +8,20 @@ android:pathData="M19.1524,11.3357c0,-2.5048 2.0305,-4.5353 4.5353,-4.5353s4.5353,2.0305 4.5353,4.5353 -2.0305,4.5353 -4.5353,4.5353H5.5" android:strokeLineJoin="round" android:fillColor="#00000000" - android:strokeColor="#fff" + android:strokeColor="@color/icon_color" android:strokeLineCap="round"/> diff --git a/app/src/main/res/xml/breezy_icon_provider_config.xml b/app/src/main/res/xml/breezy_icon_provider_config.xml index a70b11d294..5ceb64ddee 100644 --- a/app/src/main/res/xml/breezy_icon_provider_config.xml +++ b/app/src/main/res/xml/breezy_icon_provider_config.xml @@ -2,5 +2,5 @@ hasWeatherIcons="true" hasWeatherAnimators="false" hasMinimalIcons="false" - hasShortcutIcons="false" + hasShortcutIcons="true" hasSunMoonDrawables="false" /> diff --git a/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml b/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml index 4733df64f2..50f5fd772a 100644 --- a/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml +++ b/app/src/main/res/xml/breezy_icon_provider_drawable_filter.xml @@ -2,51 +2,74 @@ + + + + + + + + + + + + + + + + + - + + + + + + + - + diff --git a/app/src/main/res/xml/breezy_icon_provider_shortcut_filter.xml b/app/src/main/res/xml/breezy_icon_provider_shortcut_filter.xml index abb3d725f7..defbc1aade 100644 --- a/app/src/main/res/xml/breezy_icon_provider_shortcut_filter.xml +++ b/app/src/main/res/xml/breezy_icon_provider_shortcut_filter.xml @@ -1,76 +1,76 @@ - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + \ No newline at end of file diff --git a/app/src/main/res/xml/breezy_icon_provider_sun_moon_filter.xml b/app/src/main/res/xml/breezy_icon_provider_sun_moon_filter.xml deleted file mode 100644 index f39c7a54da..0000000000 --- a/app/src/main/res/xml/breezy_icon_provider_sun_moon_filter.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/app/src/normal/res/values-night/colors.xml b/app/src/normal/res/values-night/colors.xml index 6d65a348ff..b3383ae06c 100644 --- a/app/src/normal/res/values-night/colors.xml +++ b/app/src/normal/res/values-night/colors.xml @@ -4,6 +4,7 @@ #222222 - #000000 + #fff + #000 \ No newline at end of file diff --git a/app/src/normal/res/values/colors.xml b/app/src/normal/res/values/colors.xml index da5661e2b1..084adb9443 100644 --- a/app/src/normal/res/values/colors.xml +++ b/app/src/normal/res/values/colors.xml @@ -10,6 +10,7 @@ #fff - #fff + #000 + #fff \ No newline at end of file diff --git a/app/src/you/res/values-night/colors.xml b/app/src/you/res/values-night/colors.xml index 2c0ecb4164..57aef0d964 100644 --- a/app/src/you/res/values-night/colors.xml +++ b/app/src/you/res/values-night/colors.xml @@ -4,13 +4,13 @@ #222222 - #000000 - #FFF + #000 + #fff - #FFFFFF - #000000 + #fff + #000 - #FFFFFF + #fff \ No newline at end of file diff --git a/app/src/you/res/values/colors.xml b/app/src/you/res/values/colors.xml index 1463531b1b..6eb78a0998 100644 --- a/app/src/you/res/values/colors.xml +++ b/app/src/you/res/values/colors.xml @@ -4,13 +4,13 @@ #222222 - #FFF - #000000 + #fff + #000 - #000000 - #FFFFFFFF + #000 + #ffffffff - #000000 + #000 \ No newline at end of file diff --git a/newicons/weather_clear_day.svg b/newicons/weather_clear_day.svg deleted file mode 100644 index 143a138447..0000000000 --- a/newicons/weather_clear_day.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/newicons/weather_clear_night.svg b/newicons/weather_clear_night.svg deleted file mode 100644 index 4c63a85de3..0000000000 --- a/newicons/weather_clear_night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/newicons/weather_cloudy_day.svg b/newicons/weather_cloudy_day.svg deleted file mode 100644 index 6b46f0e06a..0000000000 --- a/newicons/weather_cloudy_day.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/newicons/weather_cloudy_night.svg b/newicons/weather_cloudy_night.svg deleted file mode 100644 index 6b46f0e06a..0000000000 --- a/newicons/weather_cloudy_night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/newicons/weather_partly_cloudy_day.svg b/newicons/weather_partly_cloudy_day.svg deleted file mode 100644 index 69d8276604..0000000000 --- a/newicons/weather_partly_cloudy_day.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/newicons/weather_partly_cloudy_night.svg b/newicons/weather_partly_cloudy_night.svg deleted file mode 100644 index dd47b212e5..0000000000 --- a/newicons/weather_partly_cloudy_night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/newicons/weather_rain_day.svg b/newicons/weather_rain_day.svg deleted file mode 100644 index d63c14a4c3..0000000000 --- a/newicons/weather_rain_day.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/newicons/weather_rain_night.svg b/newicons/weather_rain_night.svg deleted file mode 100644 index d63c14a4c3..0000000000 --- a/newicons/weather_rain_night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file