Skip to content

Commit

Permalink
Release - 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iamrasel committed Nov 3, 2022
1 parent c41dd5e commit cbd8d74
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
5 changes: 4 additions & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -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: [email protected]
about: Contact me via sending email
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ To get updated with the latest build, head over to the [Actions](https://github.

</div>

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.
<div align='center'>

<a href='https://play.google.com/store/apps/details?id=rasel.lunar.launcher'><img src='https://img.shields.io/badge/Google_Play-34A853?style=for-the-badge&logo=google-play&logoColor=white'></a>
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
}
Expand Down
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/23.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Optimizations and performance improvements
- Ability to change the number of url/contact shortcuts
- Amazon affiliate link in Support dialog

0 comments on commit cbd8d74

Please sign in to comment.