diff --git a/CHANGELOG.md b/CHANGELOG.md index e1b035c4171..413847640b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,21 @@ All notable changes to this project will be documented in this file. ## 13.0.0-rc.1 – 2021-11-11 +### Added +- Moderators can now set permissions for all or individual users to control if they can enable audio and video, do a screenshare, start a call and ignore the lobby +- When starting a call is limited to moderators, they can now also end the call for all participants +- A device checker makes sure users start with the desired microphone and camera and also allows them to disable the devices before joining a call +- Users can now blur their background (Not supported on Safari) +- Users can now opt-out of call notifications on a conversation basis + +### Changed +- The layout of the call view has been redesigned +- The size of the grid view is now limited to 20 videos by default to reduce the performance impact +- Version 0.4.0 of the signaling server of the High-performance backend is now required + ### Fixed -- A lot, more details coming soon +- Show more details instead of a loading spinner only in case of connection issues +- And a lot more things here and there ## 11.3.3 – 2021-10-22 ### Fixed diff --git a/lib/Chat/Changelog/Manager.php b/lib/Chat/Changelog/Manager.php index 5054a780ac5..8f15db9c126 100644 --- a/lib/Chat/Changelog/Manager.php +++ b/lib/Chat/Changelog/Manager.php @@ -119,6 +119,10 @@ public function getChangelogs(): array { $this->l->t('- Join the same conversation and call from multiple devices'), $this->l->t('- Send voice messages, share your location or contact details'), $this->l->t('- Add groups to a conversation and new group members will automatically be added as participants'), + $this->l->t('New in Talk %s', ['13']), + $this->l->t('- A preview of your audio and video is shown before joining a call'), + $this->l->t('- You can now blur your background in the newly designed call view'), + $this->l->t('- Moderators can now assign general and individual permissions to participants'), ]; } }