1.2116 release

This commit is contained in:
M66B 2023-10-30 15:53:24 +01:00
parent 5eb7883ef7
commit 64dc4cbd1d
8 changed files with 939819 additions and 2 deletions

View File

@ -6,6 +6,11 @@ For support you can use [the contact form](https://contact.faircode.eu/?product=
### [Vallibonavenatrix](https://en.wikipedia.org/wiki/Vallibonavenatrix)
### 1.2116 - 2023-10-30
* Fixed a crash in the JSoup library on Android 7.0 and earlier
* Updated [translations](https://crowdin.com/project/open-source-email)
### 1.2115 - 2023-10-30
* Added option to disable storing invitations tentatively, see [the FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq186)

View File

@ -3,7 +3,7 @@ apply plugin: 'com.bugsnag.android.gradle'
apply plugin: 'kotlin-android'
apply plugin: 'de.undercouch.download'
def getVersionCode = { -> return 2115 }
def getVersionCode = { -> return 2116 }
def getRevision = { -> return "a" }
def getReleaseName = { -> return "Vallibonavenatrix" }
// https://en.wikipedia.org/wiki/List_of_dinosaur_genera
@ -86,6 +86,8 @@ android {
}
compileOptions {
// https://developer.android.com/studio/write/java8-support#groovy
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
@ -530,6 +532,9 @@ dependencies {
def canary_version = "2.12"
def ws_version = "2.14"
// https://mvnrepository.com/artifact/com.android.tools/desugar_jdk_libs?repo=google
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.3'
// https://developer.android.com/jetpack/androidx/releases/startup
implementation "androidx.startup:startup-runtime:$startup_version"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -6,6 +6,11 @@ For support you can use [the contact form](https://contact.faircode.eu/?product=
### [Vallibonavenatrix](https://en.wikipedia.org/wiki/Vallibonavenatrix)
### 1.2116 - 2023-10-30
* Fixed a crash in the JSoup library on Android 7.0 and earlier
* Updated [translations](https://crowdin.com/project/open-source-email)
### 1.2115 - 2023-10-30
* Added option to disable storing invitations tentatively, see [the FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq186)

View File

@ -11,7 +11,7 @@
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
org.gradle.jvmargs=-Xmx1280m
org.gradle.jvmargs=-Xmx1536m
org.gradle.warning.mode=all
android.useAndroidX=true

File diff suppressed because it is too large Load Diff