Browse Source

chore(release): Add changelog for 17.0.0-beta.1

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/9453/head
Joas Schilling 3 years ago
parent
commit
6a1a4ac9ac
No known key found for this signature in database GPG Key ID: C400AAF20C1BB6FC
  1. 20
      CHANGELOG.md
  2. 8
      lib/Chat/Changelog/Manager.php

20
CHANGELOG.md

@ -1,6 +1,26 @@
# Changelog
All notable changes to this project will be documented in this file.
## 17.0.0-beta.1 – 2023-05-04
### Added
- Conversations can now have an avatar or emoji as icon
[#927](https://github.com/nextcloud/spreed/issues/927)
- Virtual backgrounds are now available in addition to the blurred background in video calls
[#9251](https://github.com/nextcloud/spreed/issues/9251)
- Reactions are now available during calls
[#9249](https://github.com/nextcloud/spreed/issues/9249)
- Typing indicators show which users are currently typing a message
[#9248](https://github.com/nextcloud/spreed/issues/9248)
- Groups can now be mentioned in chats
[#6339](https://github.com/nextcloud/spreed/issues/6339)
- Call recordings are automatically transcript if a transcription provider app is registered
[#9274](https://github.com/nextcloud/spreed/issues/9274)
- Chat message can be translated if a translation provider app is registered
[#9273](https://github.com/nextcloud/spreed/issues/9273)
### Changed
- Update several dependencies
## 16.0.3 – 2023-04-20
### Added
- feat: Add missing "New in Talk 16" section

8
lib/Chat/Changelog/Manager.php

@ -131,6 +131,14 @@ class Manager {
$this->l->t('- Link various items using the new smart-picker by typing a "/"'),
$this->l->t('- Moderators can now create breakout rooms (requires the external signaling server)'),
$this->l->t('- Calls can now be recorded (requires the external signaling server)'),
$this->l->t('New in Talk %s', ['17']) . "\n"
. $this->l->t('- Conversations can now have an avatar or emoji as icon') . "\n"
. $this->l->t('- Virtual backgrounds are now available in addition to the blurred background in video calls') . "\n"
. $this->l->t('- Reactions are now available during calls') . "\n"
. $this->l->t('- Typing indicators show which users are currently typing a message') . "\n"
. $this->l->t('- Groups can now be mentioned in chats') . "\n"
. $this->l->t('- Call recordings are automatically transcript if a transcription provider app is registered') . "\n"
. $this->l->t('- Chat message can be translated if a translation provider app is registered'),
];
}
}
Loading…
Cancel
Save