From 55cabe98832304e677633c085b38c5b4189d951b Mon Sep 17 00:00:00 2001 From: Sarsa Murmu Date: Mon, 26 Jun 2023 19:04:47 +0530 Subject: [PATCH] Update version and changelog --- CHANGELOG.md | 9 ++++++--- app/src/main/res/values/changelog.xml | 11 ++++------- build.gradle | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b46875a0..f8f4f7c8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ [Donnnno]: https://github.com/Donnnno +# v3.17.5 + +- Fix issue related to restore purchases +- Probably fix issue with icon search when navigating back +- Minor fixes + # v3.17.4 - Ability to load wallpapers from `assets` @@ -12,16 +18,13 @@ - Updated translations # v3.17.3 - - Add support for formatting FAQs - Fixed home intro not showing when tutorials are reset using the `Setting` sections # v3.7.2 - - Added ZenUI to launcher. It was deleted by mistake. # v3.17.1 - - Updated Gradle, AGP and dependencies # v3.17.0 diff --git a/app/src/main/res/values/changelog.xml b/app/src/main/res/values/changelog.xml index 8e6e8bd9a..cb5c6e741 100644 --- a/app/src/main/res/values/changelog.xml +++ b/app/src/main/res/values/changelog.xml @@ -2,7 +2,7 @@ - June 10, 2023 + June 26, 2023 - 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 - Updated translations + Fix issue related to restore purchases + Probably fix issue with icon search when navigating back + Minor fixes diff --git a/build.gradle b/build.gradle index 5e0ff48f5..911758425 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ allprojects { rootProject.ext { def major = 3 def minor = 17 - def patch = 4 + def patch = 5 VersionCode = major * 10000 + minor * 100 + patch VersionName = "$major.$minor.$patch"