diff --git a/CHANGELOG.md b/CHANGELOG.md index acd2725b2..06292757f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,16 +28,19 @@ Group changes to describe their impact on the project, as follows: - Using new [Unified Content API](https://developer.android.com/about/versions/12/features/unified-content-api) to share files from keyboard (or other sources) - Bumped dependencies, gradle updated from 4.2.2 to 7.0.2 - Target Android SDK version set to 31 (Android 12) +- Splashscreen is using new APIs - SDK updated to 5.1.0 release ### Fixed - Chat notifications disappearing when app restarts - "Infinite backstack", now each view is stored (at most) once in the backstack - Going back to the dialer when pressing back in a chat room after clicking on a chat message notification +- Missing international prefix / phone number in assistant after granting permission ### Removed - Launcher Activity has been replaced by [Splash Screen API](https://developer.android.com/reference/kotlin/androidx/core/splashscreen/SplashScreen) - Dialer will no longer make DTMF sound when pressing digits +- Launcher activity - Global push notification setting in Network, use the switch in each Account instead ## [4.5.6] - 2021-11-08 diff --git a/app/src/main/res/layout/chat_bubble_activity.xml b/app/src/main/res/layout/chat_bubble_activity.xml index 4c67bbbc0..7883ba600 100644 --- a/app/src/main/res/layout/chat_bubble_activity.xml +++ b/app/src/main/res/layout/chat_bubble_activity.xml @@ -103,7 +103,7 @@ android:layout_gravity="center_vertical" android:layout_marginTop="5dp" android:layout_marginBottom="5dp" - android:layout_marginLeft="5dp" + android:layout_marginStart="10dp" android:layout_weight="1" android:background="@drawable/resizable_text_field" android:imeOptions="flagNoExtractUi" @@ -124,7 +124,7 @@ android:contentDescription="@string/content_description_send_message" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:padding="5dp" + android:padding="10dp" android:src="@drawable/chat_send_message" />