diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f9110a..d36d7f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ + +[moertel]: https://github.com/moertel + +[Donnnno]: https://github.com/Donnnno + +# v3.17.4 + +- Ability to load wallpapers from `assets` +- Removed MultiDex (thanks to [@connyduck](https://github.com/connyduck)) +- Added support for visibly disabled requests (thanks to [@moertel][moertel]) +- Updated launchers (thanks to [@Donnnno][Donnnno]) +- Added support for rendering `VectorDrawable` +- Updated translations + +# v3.17.3 + +- Add support for formatting FAQs +- Fixed home intro not showing when tutorials are reset using the `Setting` sections + + # v3.17.2 - Configuration for filtering out apps in requests. Refer to [this issue](https://github.com/zixpo/candybar/issues/123) for more details - Configuration for enabling analytics in the app diff --git a/app/src/main/res/values/changelog.xml b/app/src/main/res/values/changelog.xml index 2b88bfd..a27a1e3 100644 --- a/app/src/main/res/values/changelog.xml +++ b/app/src/main/res/values/changelog.xml @@ -2,21 +2,18 @@ - December 11, 2022 - + June 10, 2023 - Updated AGP, dependencies and translations - Migrated to Billing Library v5.1 - Fixed icon requests failing when using Gmail - Fixed keyboard not showing in search - Added better fast scroller in icons section - Pressing the clock should work again - Bump Min SDK to 21 + Ability to load wallpapers from `assets` + Removed MultiDex (thanks to @connyduck) + Added support for visibly disabled requests (thanks to @moertel) + Updated launchers (thanks to @Donnnno) + Added support for rendering VectorDrawable diff --git a/build.gradle b/build.gradle index c0667ef..5e0ff48 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ allprojects { rootProject.ext { def major = 3 def minor = 17 - def patch = 2 + def patch = 4 VersionCode = major * 10000 + minor * 100 + patch VersionName = "$major.$minor.$patch"