From d4870305d73ee6e6a3525e2e7442262d8c8c8ce1 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 22 Sep 2022 09:04:35 +0200 Subject: [PATCH 1/3] Add Talk Changelog chat messages Signed-off-by: Joas Schilling --- lib/Chat/Changelog/Manager.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/Chat/Changelog/Manager.php b/lib/Chat/Changelog/Manager.php index 833879b3912..198069ed723 100644 --- a/lib/Chat/Changelog/Manager.php +++ b/lib/Chat/Changelog/Manager.php @@ -119,6 +119,11 @@ public function getChangelogs(): array { $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('- 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('- You can start calls without notifying others to not alert everyone in big conversations and send the call notifications afterwards to the required people instead'), + $this->l->t('- You can sent chat messages without notifying the recipients in case it is not urgent'), ]; } } From c61677525e235d1c9fef3c882964faedc896a7ad Mon Sep 17 00:00:00 2001 From: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Date: Thu, 22 Sep 2022 09:24:47 +0200 Subject: [PATCH 2/3] Update lib/Chat/Changelog/Manager.php Co-authored-by: Marco Signed-off-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com> --- lib/Chat/Changelog/Manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Chat/Changelog/Manager.php b/lib/Chat/Changelog/Manager.php index 198069ed723..ad29ec5b625 100644 --- a/lib/Chat/Changelog/Manager.php +++ b/lib/Chat/Changelog/Manager.php @@ -122,7 +122,7 @@ public function getChangelogs(): array { $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('- You can start calls without notifying others to not alert everyone in big conversations and send the call notifications afterwards to the required people instead'), + $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('- You can sent chat messages without notifying the recipients in case it is not urgent'), ]; } From f7c43f14e53485a60007964100cadfc7c016fa69 Mon Sep 17 00:00:00 2001 From: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Date: Thu, 22 Sep 2022 09:24:54 +0200 Subject: [PATCH 3/3] Update lib/Chat/Changelog/Manager.php Co-authored-by: Marco Signed-off-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com> --- lib/Chat/Changelog/Manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Chat/Changelog/Manager.php b/lib/Chat/Changelog/Manager.php index ad29ec5b625..823d501442e 100644 --- a/lib/Chat/Changelog/Manager.php +++ b/lib/Chat/Changelog/Manager.php @@ -123,7 +123,7 @@ public function getChangelogs(): array { $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('- You can sent chat messages without notifying the recipients in case it is not urgent'), + $this->l->t('- Send chat messages without notifying the recipients in case it is not urgent'), ]; } }