File tree Expand file tree Collapse file tree 10 files changed +21
-80
lines changed
src/main/java/tech/techlore/plexus/activities
fastlane/metadata/android Expand file tree Collapse file tree 10 files changed +21
-80
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
33
4+ ## v2.0.3
5+ - Disabled proguard to keep necessary features required for app functionality.
6+
47
58## v2.0.2
69- Fixed unable to submit ratings with microG
710
811
9-
1012## v2.0.1
1113- Fixed issue while verifying email.
1214
Original file line number Diff line number Diff line change @@ -33,15 +33,15 @@ android {
3333 applicationId = " tech.techlore.plexus"
3434 minSdk = 23
3535 targetSdk = 34
36- versionCode = 202
37- versionName = " 2.0.2 "
36+ versionCode = 203
37+ versionName = " 2.0.3 "
3838 setProperty(" archivesBaseName" , " Plexus_v$versionName " )
3939 }
4040
4141 buildTypes {
4242 getByName(" release" ) {
43- isMinifyEnabled = true
44- isShrinkResources = true
43+ isMinifyEnabled = false
44+ isShrinkResources = false
4545 vcsInfo.include = false // https://f-droid.org/docs/Reproducible_Builds/#vcs-info
4646 proguardFiles(getDefaultProguardFile(" proguard-android-optimize.txt" ), " proguard-rules.pro" )
4747 }
Original file line number Diff line number Diff line change @@ -121,11 +121,11 @@ class SubmitActivity : AppCompatActivity() {
121121
122122 // FAB
123123 activityBinding.submitFab.setOnClickListener {
124- submitData ()
124+ showSubmitBtmSheet ()
125125 }
126126 }
127127
128- private fun submitData () {
128+ private fun showSubmitBtmSheet () {
129129
130130 lifecycleScope.launch {
131131 if (hasNetwork(this @SubmitActivity) && hasInternet()) {
@@ -134,7 +134,7 @@ class SubmitActivity : AppCompatActivity() {
134134 }
135135 else {
136136 NoNetworkBottomSheet (negativeButtonText = getString(R .string.cancel),
137- positiveButtonClickListener = { submitData () },
137+ positiveButtonClickListener = { showSubmitBtmSheet () },
138138 negativeButtonClickListener = {})
139139 .show(supportFragmentManager, " NoNetworkBottomSheet" )
140140 }
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ - Transitioned to a user-friendly status-based system
2+ - Redesigned for better accessibility
3+ - Implemented submissions directly from the app
4+ - Fixed popup position issues during fast scrolling
5+ - Eliminated list flickering during searches
6+ - Introduced a favorites feature
7+ - Added app filtering and cross-store availability check
8+ - Supported multiple app versions
9+ - Included Material You theme (Android 12+)
10+ - Themed icons (Android 13+)
11+ - Improved German(by @KerstinMaur) and French(by @Rathmox) translations
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments