version bump to 2.10.2 + changelog
This commit is contained in:
parent
bae9fc45c2
commit
a8ff88398d
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### Version 2.10.2
|
||||||
|
|
||||||
|
* Fix crash when rendering some quotes
|
||||||
|
* Fix crash in welcome screen
|
||||||
|
|
||||||
### Version 2.10.1
|
### Version 2.10.1
|
||||||
|
|
||||||
* Fix issue with some videos not being compressed
|
* Fix issue with some videos not being compressed
|
||||||
|
|
|
@ -92,8 +92,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 29
|
targetSdkVersion 29
|
||||||
versionCode 42022
|
versionCode 42023
|
||||||
versionName "2.10.1"
|
versionName "2.10.2"
|
||||||
archivesBaseName += "-$versionName"
|
archivesBaseName += "-$versionName"
|
||||||
applicationId "eu.siacs.conversations"
|
applicationId "eu.siacs.conversations"
|
||||||
resValue "string", "applicationId", applicationId
|
resValue "string", "applicationId", applicationId
|
||||||
|
@ -277,7 +277,9 @@ android {
|
||||||
variant.outputs.each { output ->
|
variant.outputs.each { output ->
|
||||||
def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(com.android.build.OutputFile.ABI))
|
def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(com.android.build.OutputFile.ABI))
|
||||||
if (baseAbiVersionCode != null) {
|
if (baseAbiVersionCode != null) {
|
||||||
output.versionCodeOverride = (100 * variant.versionCode) + baseAbiVersionCode
|
output.versionCodeOverride = (100 * project.android.defaultConfig.versionCode) + baseAbiVersionCode
|
||||||
|
} else {
|
||||||
|
output.versionCodeOverride = 100 * project.android.defaultConfig.versionCode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
fastlane/metadata/android/en-US/changelogs/42023.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/42023.txt
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
* Fix crash when rendering some quotes
|
||||||
|
* Fix crash in welcome screen
|
Loading…
Reference in a new issue