Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-01-27 13:02:45 +0300
committerJoas Schilling <coding@schilljs.com>2021-01-27 13:03:26 +0300
commitda471b1231162383a46573f311e36a64d27680e9 (patch)
treef165c15b527a5a4b79446ed8a40d53c776d6f326 /lib
parentee10dad8f42e5340f4abd3ffacf0aa93c6d4a0ba (diff)
Add Changelog for 11
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Chat/Changelog/Manager.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/Chat/Changelog/Manager.php b/lib/Chat/Changelog/Manager.php
index 0f4b6cbcf..acd48b8a4 100644
--- a/lib/Chat/Changelog/Manager.php
+++ b/lib/Chat/Changelog/Manager.php
@@ -89,28 +89,32 @@ class Manager {
"Welcome to Nextcloud Talk!\n"
. 'In this conversation you will be informed about new features available in Nextcloud Talk.'
),
- $this->l->t('New in Talk 6'),
+ $this->l->t('New in Talk %s', ['6']),
$this->l->t('- Microsoft Edge and Safari can now be used to participate in audio and video calls'),
$this->l->t('- One-to-one conversations are now persistent and can not be turned into group conversations by accident anymore. Also when one of the participants leaves the conversation, the conversation is not automatically deleted anymore. Only if both participants leave, the conversation is deleted from the server'),
$this->l->t('- You can now notify all participants by posting "@all" into the chat'),
$this->l->t('- With the "arrow-up" key you can repost your last message'),
$this->l->t('- Talk can now have commands, send "/help" as a chat message to see if your administrator configured some'),
$this->l->t('- With projects you can create quick links between conversations, files and other items'),
- $this->l->t('New in Talk 7'),
+ $this->l->t('New in Talk %s', ['7']),
$this->l->t('- You can now mention guests in the chat'),
$this->l->t('- Conversations can now have a lobby. This will allow moderators to join the chat and call already to prepare the meeting, while users and guests have to wait'),
- $this->l->t('New in Talk 8'),
+ $this->l->t('New in Talk %s', ['8']),
$this->l->t('- You can now directly reply to messages giving the other users more context what your message is about'),
$this->l->t('- Searching for conversations and participants will now also filter your existing conversations, making it much easier to find previous conversations'),
$this->l->t('- You can now add custom user groups to conversations when the circles app is installed'),
- $this->l->t('New in Talk 9'),
+ $this->l->t('New in Talk %s', ['9']),
$this->l->t('- Check out the new grid and call view'),
$this->l->t('- You can now upload and drag\'n\'drop files directly from your device into the chat'),
$this->l->t('- Shared files are now opened directly inside the chat view with the viewer apps'),
- $this->l->t('New in Talk 10'),
+ $this->l->t('New in Talk %s', ['10']),
$this->l->t('- You can now search for chats and messages in the unified search in the top bar'),
$this->l->t('- Spice up your messages with emojis from the emoji picker'),
$this->l->t('- You can now change your camera and microphone while being in a call'),
+ $this->l->t('New in Talk %s', ['11']),
+ $this->l->t('- Give your conversations some context with a description and open it up so logged in users can find it and join themselves'),
+ $this->l->t('- See a read status and send failed messages again'),
+ $this->l->t('- Raise your hand in a call with the R key'),
];
}
}