Skip to content

Commit

Permalink
Updated to 2.3.8
Browse files Browse the repository at this point in the history
★ Changelogs ★

You can see more details here: https://www.saveriomorelli.com/commonvoice/release/2-3-8/
  • Loading branch information
Sav22999 authored Jun 7, 2021
2 parents cee5ce2 + 952650f commit 55a67da
Show file tree
Hide file tree
Showing 219 changed files with 8,223 additions and 1,570 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ OS language (in English):_ (e.g. `Italian`)

<!--For OS: I mean Android, HarmonyOS, etc. You can fiend this information, usually, in "System" > "Software info"-->

##### About the app (CV Android)*
##### About the app (CV Project)*

_App release:_ (e.g. `2.2 (#125::GPS)`) -> you can find it in `Settings`, center-bottom position

Expand Down
Binary file modified app/AAS/release/app-AAS-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/AAS/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
{
"type": "SINGLE",
"filters": [],
"versionCode": 154,
"versionName": "2.3.7",
"versionCode": 161,
"versionName": "2.3.8",
"outputFile": "app-AAS-release.apk"
}
]
Expand Down
Binary file modified app/GPS/release/app-GPS-release.aab
Binary file not shown.
Binary file modified app/HAG/release/app-HAG-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/HAG/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
{
"type": "SINGLE",
"filters": [],
"versionCode": 154,
"versionName": "2.3.7",
"versionCode": 161,
"versionName": "2.3.8",
"outputFile": "app-HAG-release.apk"
}
]
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId 'org.commonvoice.saverio'
minSdkVersion 23
targetSdkVersion 30
versionCode = 154
versionName '2.3.7'
versionCode = 161
versionName '2.3.8'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
524 changes: 478 additions & 46 deletions app/src/main/java/org/commonvoice/saverio/ListenActivity.kt

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion app/src/main/java/org/commonvoice/saverio/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ class MainActivity : VariableLanguageActivity(R.layout.activity_main) {
statsPrefManager.lastDateOpenedTheApp = today
if (lastDateOpenedTheApp == null) statsPrefManager.daysInARow = 1
else statsPrefManager.daysInARow = daysInARow + 1
statsPrefManager.daysInARowShown = false
}
}

Expand All @@ -167,7 +168,7 @@ class MainActivity : VariableLanguageActivity(R.layout.activity_main) {
private fun showBuyMeACoffeeDialog() {
val counter = statsPrefManager.buyMeACoffeeCounter
val times = 200 //after this times it will show the message
if ((((counter % times) == 0 || (counter % times) == times)) && mainPrefManager.showDonationDialog) {
if ((((counter % times) == 0 || (counter % times) == times)) && mainPrefManager.showDonationDialog && counter > 0) {
dialogInflater.show(this, CheckboxedStandardDialog(
messageRes = R.string.text_buy_me_a_coffee,
buttonTextRes = R.string.liberapay_name,
Expand Down
Loading

0 comments on commit 55a67da

Please sign in to comment.