summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas <tschneider.ac@gmail.com>2023-02-16 18:57:22 +0100
committerThomas <tschneider.ac@gmail.com>2023-02-16 18:57:22 +0100
commitbc70576a635cf91ff1e5132db01f99e75ff4c52e (patch)
tree9416763fecb66c759e33f46b6b3a5a4dde32e27f
parent187d20cc153b1d613d1a6055ae132b35da6de3fa (diff)
Release 3.18.23.18.2
-rw-r--r--app/build.gradle4
-rw-r--r--app/src/main/assets/release_notes/notes.json5
-rw-r--r--app/src/main/res/layouts/mastodon/layout/drawer_conversation.xml4
-rw-r--r--src/fdroid/fastlane/metadata/android/en/changelogs/480.txt7
4 files changed, 17 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle
index c417442e5..202f1f8db 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -13,8 +13,8 @@ android {
defaultConfig {
minSdk 21
targetSdk 33
- versionCode 479
- versionName "3.18.1"
+ versionCode 480
+ versionName "3.18.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
flavorDimensions "default"
diff --git a/app/src/main/assets/release_notes/notes.json b/app/src/main/assets/release_notes/notes.json
index 50cd786f9..7aaf714ca 100644
--- a/app/src/main/assets/release_notes/notes.json
+++ b/app/src/main/assets/release_notes/notes.json
@@ -1,5 +1,10 @@
[
{
+ "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",
"code": "479",
"note": "Added:\n- Add Lingva translator (Settings > Timelines)\n- Add support for Nyastodon-style emoji reactions (skyevg)\n- Add chat view for DM (default: disable / Settings > Timelines)"
diff --git a/app/src/main/res/layouts/mastodon/layout/drawer_conversation.xml b/app/src/main/res/layouts/mastodon/layout/drawer_conversation.xml
index 2146e32ac..00dd98df3 100644
--- a/app/src/main/res/layouts/mastodon/layout/drawer_conversation.xml
+++ b/app/src/main/res/layouts/mastodon/layout/drawer_conversation.xml
@@ -90,9 +90,11 @@
android:id="@+id/status_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
+ android:ellipsize="end"
android:layout_marginHorizontal="6dp"
android:layout_marginTop="6dp"
- tools:maxLines="10"
+ android:maxLines="5"
+ tools:maxLines="5"
tools:text="@tools:sample/lorem/random" />
<HorizontalScrollView
diff --git a/src/fdroid/fastlane/metadata/android/en/changelogs/480.txt b/src/fdroid/fastlane/metadata/android/en/changelogs/480.txt
new file mode 100644
index 000000000..fba299e17
--- /dev/null
+++ b/src/fdroid/fastlane/metadata/android/en/changelogs/480.txt
@@ -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 \ No newline at end of file