diff --git a/CHANGES.md b/CHANGES.md index 442d3641dd..022591f5a1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,39 @@ +Changes in Element v1.5.10 (2022-11-30) +======================================= + +Features ✨ +---------- + - Add setting to allow disabling direct share ([#2725](https://github.com/vector-im/element-android/issues/2725)) + - [Device Manager] Toggle IP address visibility ([#7546](https://github.com/vector-im/element-android/issues/7546)) + - New implementation of the full screen mode for the Rich Text Editor. ([#7577](https://github.com/vector-im/element-android/issues/7577)) + +Bugfixes 🐛 +---------- + - Fix italic text is truncated when bubble mode and markdown is enabled ([#5679](https://github.com/vector-im/element-android/issues/5679)) + - Missing translations on "replyTo" messages ([#7555](https://github.com/vector-im/element-android/issues/7555)) + - ANR on session start when sending client info is enabled ([#7604](https://github.com/vector-im/element-android/issues/7604)) + - Make the plain text mode layout of the RTE more compact. ([#7620](https://github.com/vector-im/element-android/issues/7620)) + - Push notification for thread message is now shown correctly when user observes rooms main timeline ([#7634](https://github.com/vector-im/element-android/issues/7634)) + - Voice Broadcast - Fix playback stuck in buffering mode ([#7646](https://github.com/vector-im/element-android/issues/7646)) + +In development 🚧 +---------------- + - Voice Broadcast - Handle redaction of the state events on the listener and recorder sides ([#7629](https://github.com/vector-im/element-android/issues/7629)) + - Voice Broadcast - Update the buffering display in the timeline ([#7655](https://github.com/vector-im/element-android/issues/7655)) + - Voice Broadcast - Remove voice messages related to a VB from the room attachments ([#7656](https://github.com/vector-im/element-android/issues/7656)) + +SDK API changes ⚠️ +------------------ + - Added support for read receipts in threads. Now user in a room can have multiple read receipts (one per thread + one in main thread + one without threadId) ([#6996](https://github.com/vector-im/element-android/issues/6996)) + - Sync Filter now taking in account homeserver capabilities to not pass unsupported parameters. + Sync Filter is now configured by providing SyncFilterBuilder class instance, instead of Filter to identify Filter changes related to homeserver capabilities ([#7626](https://github.com/vector-im/element-android/issues/7626)) + +Other changes +------------- + - Remove usage of Buildkite. ([#7583](https://github.com/vector-im/element-android/issues/7583)) + - Better validation of edits ([#7594](https://github.com/vector-im/element-android/issues/7594)) + + Changes in Element v1.5.8 (2022-11-17) ====================================== diff --git a/changelog.d/2725.feature b/changelog.d/2725.feature deleted file mode 100644 index eb3fcaed57..0000000000 --- a/changelog.d/2725.feature +++ /dev/null @@ -1 +0,0 @@ -Add setting to allow disabling direct share diff --git a/changelog.d/5679.bugfix b/changelog.d/5679.bugfix deleted file mode 100644 index 0394bc3e5d..0000000000 --- a/changelog.d/5679.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix italic text is truncated when bubble mode and markdown is enabled diff --git a/changelog.d/6996.sdk b/changelog.d/6996.sdk deleted file mode 100644 index 588ec160d7..0000000000 --- a/changelog.d/6996.sdk +++ /dev/null @@ -1 +0,0 @@ -Added support for read receipts in threads. Now user in a room can have multiple read receipts (one per thread + one in main thread + one without threadId) diff --git a/changelog.d/7546.feature b/changelog.d/7546.feature deleted file mode 100644 index 94450082c9..0000000000 --- a/changelog.d/7546.feature +++ /dev/null @@ -1 +0,0 @@ -[Device Manager] Toggle IP address visibility diff --git a/changelog.d/7555.bugfix b/changelog.d/7555.bugfix deleted file mode 100644 index 064b21a9e5..0000000000 --- a/changelog.d/7555.bugfix +++ /dev/null @@ -1 +0,0 @@ -Missing translations on "replyTo" messages diff --git a/changelog.d/7577.feature b/changelog.d/7577.feature deleted file mode 100644 index e21ccb13c0..0000000000 --- a/changelog.d/7577.feature +++ /dev/null @@ -1 +0,0 @@ -New implementation of the full screen mode for the Rich Text Editor. diff --git a/changelog.d/7583.misc b/changelog.d/7583.misc deleted file mode 100644 index 3c63aeaadf..0000000000 --- a/changelog.d/7583.misc +++ /dev/null @@ -1 +0,0 @@ -Remove usage of Buildkite. diff --git a/changelog.d/7594.misc b/changelog.d/7594.misc deleted file mode 100644 index 5c5771d8d0..0000000000 --- a/changelog.d/7594.misc +++ /dev/null @@ -1 +0,0 @@ -Better validation of edits diff --git a/changelog.d/7604.bugfix b/changelog.d/7604.bugfix deleted file mode 100644 index 0fbee55bce..0000000000 --- a/changelog.d/7604.bugfix +++ /dev/null @@ -1 +0,0 @@ -ANR on session start when sending client info is enabled diff --git a/changelog.d/7620.bugfix b/changelog.d/7620.bugfix deleted file mode 100644 index 55c0e423ad..0000000000 --- a/changelog.d/7620.bugfix +++ /dev/null @@ -1 +0,0 @@ -Make the plain text mode layout of the RTE more compact. diff --git a/changelog.d/7626.sdk b/changelog.d/7626.sdk deleted file mode 100644 index 4d9f28183a..0000000000 --- a/changelog.d/7626.sdk +++ /dev/null @@ -1,2 +0,0 @@ -Sync Filter now taking in account homeserver capabilities to not pass unsupported parameters. -Sync Filter is now configured by providing SyncFilterBuilder class instance, instead of Filter to identify Filter changes related to homeserver capabilities diff --git a/changelog.d/7629.wip b/changelog.d/7629.wip deleted file mode 100644 index ecc4449b6f..0000000000 --- a/changelog.d/7629.wip +++ /dev/null @@ -1 +0,0 @@ -Voice Broadcast - Handle redaction of the state events on the listener and recorder sides diff --git a/changelog.d/7634.bugfix b/changelog.d/7634.bugfix deleted file mode 100644 index a3c829840a..0000000000 --- a/changelog.d/7634.bugfix +++ /dev/null @@ -1 +0,0 @@ -Push notification for thread message is now shown correctly when user observes rooms main timeline diff --git a/changelog.d/7646.bugfix b/changelog.d/7646.bugfix deleted file mode 100644 index 7f771bc6f7..0000000000 --- a/changelog.d/7646.bugfix +++ /dev/null @@ -1 +0,0 @@ -Voice Broadcast - Fix playback stuck in buffering mode diff --git a/changelog.d/7655.wip b/changelog.d/7655.wip deleted file mode 100644 index 24358007a9..0000000000 --- a/changelog.d/7655.wip +++ /dev/null @@ -1 +0,0 @@ -Voice Broadcast - Update the buffering display in the timeline diff --git a/changelog.d/7656.wip b/changelog.d/7656.wip deleted file mode 100644 index ab0e47289f..0000000000 --- a/changelog.d/7656.wip +++ /dev/null @@ -1 +0,0 @@ -Voice Broadcast - Remove voice messages related to a VB from the room attachments