summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-05-04 18:30:12 +0200
committerJoas Schilling <coding@schilljs.com>2023-05-04 18:40:13 +0200
commit6a1a4ac9acfedaff39f6bd280dcfd666a67f8d17 (patch)
tree31ff726ba78a3a5aa800614755cd3a639a3c09f0
parent741f7c5689908742fdd757e68d293b09d1b34a53 (diff)
chore(release): Add changelog for 17.0.0-beta.1
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--CHANGELOG.md20
-rw-r--r--lib/Chat/Changelog/Manager.php8
2 files changed, 28 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7dcb52ac7..d21f1f531 100644
--- a/CHANGELOG.md
+++ b/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
diff --git a/lib/Chat/Changelog/Manager.php b/lib/Chat/Changelog/Manager.php
index 7a0728cfb..cdb54dffc 100644
--- a/lib/Chat/Changelog/Manager.php
+++ b/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'),
];
}
}