diff --git a/CHANGES.md b/CHANGES.md index 76b46bbbe7..08f375f8c1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,37 @@ +Changes in Element v1.5.24 (2023-02-08) +======================================= + +Features ✨ +---------- + - [Rich text editor] Add inline code to rich text editor ([#8011](https://github.com/vector-im/element-android/issues/8011)) + +Bugfixes 🐛 +---------- + - If media cache is large, Settings > General takes a long time to open ([#5918](https://github.com/vector-im/element-android/issues/5918)) + - Fix that replies to @roomba would be highlighted as a room ping. Contributed by Nico. ([#6457](https://github.com/vector-im/element-android/issues/6457)) + - Cannot select text properly in plain text mode when using Rich Text Editor. ([#7801](https://github.com/vector-im/element-android/issues/7801)) + - Fix the next button disabled issue after going to change homeserver screen ([#7928](https://github.com/vector-im/element-android/issues/7928)) + - Fix extra new lines added to inline code ([#7975](https://github.com/vector-im/element-android/issues/7975)) + - [Voice Broadcast] Use internal playback timer to compute the current playback position ([#8012](https://github.com/vector-im/element-android/issues/8012)) + - Do not send any request to Posthog if no consent is provided. ([#8031](https://github.com/vector-im/element-android/issues/8031)) + - [Voice Broadcast] We should not be able to start broadcasting if there is already a live broadcast in the Room ([#8062](https://github.com/vector-im/element-android/issues/8062)) + +In development 🚧 +---------------- + - [Poll] History list: unmock data ([#7864](https://github.com/vector-im/element-android/issues/7864)) + +SDK API changes ⚠️ +------------------ + - [Poll] Adding PollHistoryService ([#7864](https://github.com/vector-im/element-android/issues/7864)) + - [Push rules] Call /actions api before /enabled api ([#8005](https://github.com/vector-im/element-android/issues/8005)) + +Other changes +------------- + - Let the user know when we are not able to decrypt the voice broadcast chunks ([#7820](https://github.com/vector-im/element-android/issues/7820)) + - [Voice Broadcast] Show Live broadcast in the room list only if the feature flag is enabled in the lab ([#8042](https://github.com/vector-im/element-android/issues/8042)) + - Improve the `CountUpTimer` implementation ([#8058](https://github.com/vector-im/element-android/issues/8058)) + + Changes in Element v1.5.22 (2023-01-25) ======================================= diff --git a/changelog.d/5918.bugfix b/changelog.d/5918.bugfix deleted file mode 100644 index 826e20aff6..0000000000 --- a/changelog.d/5918.bugfix +++ /dev/null @@ -1 +0,0 @@ -If media cache is large, Settings > General takes a long time to open diff --git a/changelog.d/6457.bugfix b/changelog.d/6457.bugfix deleted file mode 100644 index 89ba075378..0000000000 --- a/changelog.d/6457.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix that replies to @roomba would be highlighted as a room ping. Contributed by Nico. diff --git a/changelog.d/7801.bugfix b/changelog.d/7801.bugfix deleted file mode 100644 index 4ab8d7feda..0000000000 --- a/changelog.d/7801.bugfix +++ /dev/null @@ -1 +0,0 @@ -Cannot select text properly in plain text mode when using Rich Text Editor. diff --git a/changelog.d/7820.misc b/changelog.d/7820.misc deleted file mode 100644 index 1f59cb9afe..0000000000 --- a/changelog.d/7820.misc +++ /dev/null @@ -1 +0,0 @@ -Let the user know when we are not able to decrypt the voice broadcast chunks diff --git a/changelog.d/7864.sdk b/changelog.d/7864.sdk deleted file mode 100644 index b7c6a5b339..0000000000 --- a/changelog.d/7864.sdk +++ /dev/null @@ -1 +0,0 @@ -[Poll] Adding PollHistoryService diff --git a/changelog.d/7864.wip b/changelog.d/7864.wip deleted file mode 100644 index da04806b8b..0000000000 --- a/changelog.d/7864.wip +++ /dev/null @@ -1 +0,0 @@ -[Poll] History list: unmock data diff --git a/changelog.d/7928.bugfix b/changelog.d/7928.bugfix deleted file mode 100644 index 30fead9a7d..0000000000 --- a/changelog.d/7928.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix the next button disabled issue after going to change homeserver screen diff --git a/changelog.d/7975.bugfix b/changelog.d/7975.bugfix deleted file mode 100644 index b34c784b27..0000000000 --- a/changelog.d/7975.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix extra new lines added to inline code diff --git a/changelog.d/8005.sdk b/changelog.d/8005.sdk deleted file mode 100644 index 1849776d50..0000000000 --- a/changelog.d/8005.sdk +++ /dev/null @@ -1 +0,0 @@ -[Push rules] Call /actions api before /enabled api diff --git a/changelog.d/8011.feature b/changelog.d/8011.feature deleted file mode 100644 index 700a528fc1..0000000000 --- a/changelog.d/8011.feature +++ /dev/null @@ -1 +0,0 @@ -[Rich text editor] Add inline code to rich text editor \ No newline at end of file diff --git a/changelog.d/8012.bugfix b/changelog.d/8012.bugfix deleted file mode 100644 index bd2ee3dd08..0000000000 --- a/changelog.d/8012.bugfix +++ /dev/null @@ -1 +0,0 @@ -[Voice Broadcast] Use internal playback timer to compute the current playback position diff --git a/changelog.d/8031.bugfix b/changelog.d/8031.bugfix deleted file mode 100644 index 0e7ff28509..0000000000 --- a/changelog.d/8031.bugfix +++ /dev/null @@ -1 +0,0 @@ -Do not send any request to Posthog if no consent is provided. diff --git a/changelog.d/8042.misc b/changelog.d/8042.misc deleted file mode 100644 index dbfe98140c..0000000000 --- a/changelog.d/8042.misc +++ /dev/null @@ -1 +0,0 @@ -[Voice Broadcast] Show Live broadcast in the room list only if the feature flag is enabled in the lab diff --git a/changelog.d/8058.misc b/changelog.d/8058.misc deleted file mode 100644 index d864b3c7a8..0000000000 --- a/changelog.d/8058.misc +++ /dev/null @@ -1 +0,0 @@ -Improve the `CountUpTimer` implementation diff --git a/changelog.d/8062.bugfix b/changelog.d/8062.bugfix deleted file mode 100644 index af1a370350..0000000000 --- a/changelog.d/8062.bugfix +++ /dev/null @@ -1,2 +0,0 @@ - [Voice Broadcast] We should not be able to start broadcasting if there is already a live broadcast in the Room - \ No newline at end of file diff --git a/fastlane/metadata/android/en-US/changelogs/40105240.txt b/fastlane/metadata/android/en-US/changelogs/40105240.txt new file mode 100644 index 0000000000..aaceef9ce6 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/40105240.txt @@ -0,0 +1,2 @@ +Main changes in this version: Mainly bugfixing, in particular fix message not appearing on the timeline. +Full changelog: https://github.com/vector-im/element-android/releases