version 1.8.0

This commit is contained in:
Diego Beraldin 2024-03-02 07:43:46 +01:00
parent c561739a1d
commit 97db8e7a0d
2 changed files with 21 additions and 2 deletions

View File

@ -13,8 +13,8 @@ android {
applicationId = "com.github.diegoberaldin.raccoonforlemmy.android"
minSdk = libs.versions.android.minSdk.get().toInt()
targetSdk = libs.versions.android.targetSdk.get().toInt()
versionCode = 83
versionName = "1.8.0-20240229-pre"
versionCode = 84
versionName = "1.8.0"
archivesName.set("RaccoonForLemmy")
}
buildFeatures {
@ -52,6 +52,14 @@ android {
kotlinOptions {
jvmTarget = "1.8"
}
splits {
abi {
isEnable = true
reset()
include("arm64-v8a", "x86_64")
isUniversalApk = true
}
}
}
dependencies {

View File

@ -0,0 +1,11 @@
- possibility to save drafts for posts and comments
- content look and feel confiuration with preview
- reorganization of settings screen
- custom font scale for content classes
- new Markdown rendering
- new navigation transition
- new material design navigation drawer
- improved user detail and community detail
- show vote detail in raw content dialog
- layout update for report and ban screens and about dialog
- retain input after configuration change