Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable27] Changelog conversation update for 17.1 #10173

Merged
merged 2 commits into from
Aug 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions lib/Chat/Changelog/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,64 +81,68 @@ public function updateChangelog(string $userId): void {
public function getChangelogs(): array {
return [
$this->l->t(
"Welcome to Nextcloud Talk!\n"
"## 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 %s', ['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 cannot 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 %s', ['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 %s', ['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 %s', ['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 %s', ['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('## 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'),
$this->l->t('New in Talk %s', ['12']),
$this->l->t('## New in Talk %s', ['12']),
$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('## 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'),
$this->l->t('New in Talk %s', ['14']),
$this->l->t('## New in Talk %s', ['14']),
$this->l->t('- You can now react to chat message'),
$this->l->t('- In the sidebar you can now find an overview of the latest shared items'),
$this->l->t('New in Talk %s', ['15']),
$this->l->t('## New in Talk %s', ['15']),
$this->l->t('- Use a poll to collect the opinions of others or settle on a date'),
$this->l->t('- Configure an expiration time for chat messages'),
$this->l->t('- Start calls without notifying others in big conversations. You can send individual call notifications once the call has started.'),
$this->l->t('- Send chat messages without notifying the recipients in case it is not urgent'),
$this->l->t('New in Talk %s', ['16']),
$this->l->t('## New in Talk %s', ['16']),
$this->l->t('- Emojis can now be autocompleted by typing a ":"'),
$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('## 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 transcribed if a transcription provider app is registered') . "\n"
. $this->l->t('- Chat messages can be translated if a translation provider app is registered'),
$this->l->t('## New in Talk %s', ['17.1']) . "\n"
. $this->l->t('- **Markdown** can now be used in _chat_ messages') . "\n"
. $this->l->t('- Webhooks are now available to implement bots. See the documentation for more information https://nextcloud-talk.readthedocs.io/en/latest/bot-list/') . "\n"
. $this->l->t('- Set a reminder on a chat message to be notified later again'),
];
}
}