diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
index e732457..ac137a5 100644
--- a/.github/ISSUE_TEMPLATE/config.yml
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -1,5 +1,8 @@
blank_issues_enabled: false
contact_links:
- - name: 💬 Mail me?
+ - name: 💬 Community
+ url: https://github.com/iamrasel/lunar-launcher#community
+ about: Join the community
+ - name: 💬 Email
url: iamrasel@proton.me
about: Contact me via sending email
\ No newline at end of file
diff --git a/README.md b/README.md
index 4a0be0c..af6d155 100644
--- a/README.md
+++ b/README.md
@@ -103,7 +103,7 @@ To get updated with the latest build, head over to the [Actions](https://github.
-This app is also available on Google's Play Store, which is published by [Vedansh Nigam](https://github.com/vednig). If you don't have any issue with installing apps from Play Store, you can go ahead.
+This app is also available on Google's Play Store, which is forked and published by [Vedansh Nigam](https://github.com/vednig). If you don't have any issue with installing apps from Play Store, you can go ahead.

diff --git a/app/build.gradle.kts b/app/build.gradle.kts
index 647df2f..aeae1a3 100644
--- a/app/build.gradle.kts
+++ b/app/build.gradle.kts
@@ -11,8 +11,8 @@ android {
applicationId = "rasel.lunar.launcher"
minSdk = 26
targetSdk = 33
- versionCode = 22
- versionName = "2.1.1"
+ versionCode = 23
+ versionName = "2.1.2"
}
buildTypes {
diff --git a/app/src/main/kotlin/rasel/lunar/launcher/qaccess/QuickAccess.kt b/app/src/main/kotlin/rasel/lunar/launcher/qaccess/QuickAccess.kt
index 445f68a..50c9752 100644
--- a/app/src/main/kotlin/rasel/lunar/launcher/qaccess/QuickAccess.kt
+++ b/app/src/main/kotlin/rasel/lunar/launcher/qaccess/QuickAccess.kt
@@ -211,7 +211,7 @@ internal class QuickAccess : BottomSheetDialogFragment() {
/* set up favorite apps */
private fun favApps() {
val prefsFavApps = requireContext().getSharedPreferences(constants.PREFS_FAVORITE_APPS, 0)
- if (prefsFavApps.all.toString() == "{}") {
+ if (prefsFavApps.all.toString().length < 3) {
binding.favAppsGroup.visibility = View.GONE
} else {
binding.favAppsGroup.visibility = View.VISIBLE
@@ -272,9 +272,7 @@ internal class QuickAccess : BottomSheetDialogFragment() {
/* reset the shortcut on long click */
textView.setOnLongClickListener {
- sharedPreferences.edit().putString(constants.KEY_SHORTCUT_NO_ + position, "").apply()
- textView.text = "+"
- textView.background.colorFilter = null
+ sharedPreferences.edit().remove(constants.KEY_SHORTCUT_NO_ + position).apply()
this.onResume()
true
}
diff --git a/fastlane/metadata/android/en-US/changelogs/23.txt b/fastlane/metadata/android/en-US/changelogs/23.txt
new file mode 100644
index 0000000..2b928c7
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/23.txt
@@ -0,0 +1,3 @@
+- Optimizations and performance improvements
+- Ability to change the number of url/contact shortcuts
+- Amazon affiliate link in Support dialog
\ No newline at end of file