mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-06-07 13:50:07 +03:00
Release 3.18.2
This commit is contained in:
parent
187d20cc15
commit
bc70576a63
4 changed files with 17 additions and 3 deletions
|
@ -13,8 +13,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk 21
|
minSdk 21
|
||||||
targetSdk 33
|
targetSdk 33
|
||||||
versionCode 479
|
versionCode 480
|
||||||
versionName "3.18.1"
|
versionName "3.18.2"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
flavorDimensions "default"
|
flavorDimensions "default"
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"version": "3.18.2",
|
||||||
|
"code": "480",
|
||||||
|
"note": "Changed:\n- First media layout will depend of its ratio\n\nFixed:\n- Impossible to add media with the chat view\n- Chat view limited in chars\n- Freezes / bad behaviors due to the new media presentation"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "3.18.1",
|
"version": "3.18.1",
|
||||||
"code": "479",
|
"code": "479",
|
||||||
|
|
|
@ -90,9 +90,11 @@
|
||||||
android:id="@+id/status_content"
|
android:id="@+id/status_content"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:ellipsize="end"
|
||||||
android:layout_marginHorizontal="6dp"
|
android:layout_marginHorizontal="6dp"
|
||||||
android:layout_marginTop="6dp"
|
android:layout_marginTop="6dp"
|
||||||
tools:maxLines="10"
|
android:maxLines="5"
|
||||||
|
tools:maxLines="5"
|
||||||
tools:text="@tools:sample/lorem/random" />
|
tools:text="@tools:sample/lorem/random" />
|
||||||
|
|
||||||
<HorizontalScrollView
|
<HorizontalScrollView
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
Changed:
|
||||||
|
- First media layout will depend of its ratio
|
||||||
|
|
||||||
|
Fixed:
|
||||||
|
- Impossible to add media with the chat view
|
||||||
|
- Chat view limited in chars
|
||||||
|
- Freezes / bad behaviors due to the new media presentation
|
Loading…
Reference in a new issue