Compare commits
3 commits
660bac6af8
...
561ee93875
Author | SHA1 | Date | |
---|---|---|---|
561ee93875 | |||
|
4c9b0a1b22 | ||
|
3fa2bc38ab |
5 changed files with 13 additions and 7 deletions
|
@ -11,8 +11,8 @@ android {
|
|||
applicationId = "partisan.weforge.xyz.pulse"
|
||||
minSdk = 29
|
||||
targetSdk = 34
|
||||
versionCode = 14
|
||||
versionName = "2.0.0"
|
||||
versionCode = 15
|
||||
versionName = "2.0.1"
|
||||
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
|
|
@ -133,7 +133,11 @@ class PopupSettingsFragment : Fragment() {
|
|||
binding.popupEffectSpinner.onItemSelectedListener = object : AdapterView.OnItemSelectedListener {
|
||||
override fun onItemSelected(parent: AdapterView<*>, view: View?, position: Int, id: Long) {
|
||||
val selectedEffect = allEffects[position]
|
||||
if (!prefs.isDonationActivated && selectedEffect !in prefs.getAvailablePopupEffects()) {
|
||||
if (!prefs.isDonationActivated &&
|
||||
selectedEffect !in prefs.getAvailablePopupEffects() &&
|
||||
selectedEffect != Preferences.PopupEffect.NONE &&
|
||||
selectedEffect != Preferences.PopupEffect.RANDOM
|
||||
) {
|
||||
Toast.makeText(requireContext(), getString(R.string.donate_lock), Toast.LENGTH_SHORT).show()
|
||||
binding.popupEffectSpinner.setSelection(prefs.popupEffect.ordinal)
|
||||
} else {
|
||||
|
|
|
@ -17,6 +17,6 @@ Fixes:
|
|||
|
||||
Misc:
|
||||
- Updated Gradle to v8.14.1
|
||||
- Updated screenshots to include new looks of the app.
|
||||
- Updated description.
|
||||
- Added temporary "v2.0" to store icon to indicate new version.
|
||||
- Updated screenshots to reflect the new look of the app
|
||||
- Updated description
|
||||
- Temporarily added "v2.0" to the store icon to indicate the new version
|
2
fastlane/metadata/android/en-US/changelogs/16.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/16.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
v2.0.1
|
||||
- Fixed lock warning on NONE and RANDOM popup effects
|
|
@ -1 +1 @@
|
|||
Redirecting outgoing calls to E2EE apps.
|
||||
Redirecting outgoing calls to E2EE apps
|
Loading…
Add table
Add a link
Reference in a new issue