From 3ae3404b546986e8d0f60fc72b3d6adb5f27410c Mon Sep 17 00:00:00 2001 From: esu23 Date: Sun, 8 Apr 2018 11:44:41 +0200 Subject: [PATCH 1/2] Add Voice Recorder plugin to README.md (#2949) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cc40de4c2..26310607e 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ * End-to-end encryption with [OMEMO](http://conversations.im/omemo/) or [OpenPGP](http://openpgp.org/about/) * Send and receive images as well as other kind of files * Share your location via an external [plug-in](https://play.google.com/store/apps/details?id=eu.siacs.conversations.sharelocation&referrer=utm_source%3Dgithub) +* Send voice messages via an external [plug-in](https://play.google.com/store/apps/details?id=eu.siacs.conversations.voicerecorder&referrer=utm_source%3Dgithub) * Indication when your contact has read your message * Intuitive UI that follows Android Design guidelines * Pictures / Avatars for your Contacts From a3e26b95f06beb2f97e6851a713f869c4ca56195 Mon Sep 17 00:00:00 2001 From: Harshit Bansal Date: Tue, 10 Apr 2018 20:10:15 +0530 Subject: [PATCH 2/2] solve fab shadow bug on pre api 19 devices (#2924) --- src/main/res/layout/fragment_conversation.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/res/layout/fragment_conversation.xml b/src/main/res/layout/fragment_conversation.xml index 737a71f41..75e19b684 100644 --- a/src/main/res/layout/fragment_conversation.xml +++ b/src/main/res/layout/fragment_conversation.xml @@ -28,14 +28,14 @@ android:id="@+id/scroll_to_bottom_button" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_margin="12dp" android:layout_alignParentEnd="true" android:layout_alignBottom="@+id/messages_view" android:alpha="0.85" app:backgroundTint="?attr/color_background_primary" android:src="?attr/icon_scroll_down" app:fabSize="mini" - android:visibility="gone"/> + android:visibility="gone" + app:useCompatPadding="true"/>