diff --git a/CHANGELOG.md b/CHANGELOG.md index c2aeb7d391e..9a012f2123a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ # Changelog All notable changes to this project will be documented in this file. -## 20.1.2 – 2025-01-16 +## 20.1.3 – 2025-01-17 ### Changed - Update translations - Update dependencies diff --git a/appinfo/info.xml b/appinfo/info.xml index 29f894ef7cc..fc91d0c8aa2 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -18,7 +18,7 @@ * 🌉 **Sync with other chat solutions** With [Matterbridge](https://github.com/42wim/matterbridge/) being integrated in Talk, you can easily sync a lot of other chat solutions to Nextcloud Talk and vice-versa. ]]> - 20.1.2 + 20.1.3 agpl Anna Larch diff --git a/lib/SetupCheck/HighPerformanceBackend.php b/lib/SetupCheck/HighPerformanceBackend.php index e5e5020e5c4..e39a75642fd 100644 --- a/lib/SetupCheck/HighPerformanceBackend.php +++ b/lib/SetupCheck/HighPerformanceBackend.php @@ -34,14 +34,7 @@ public function getName(): string { public function run(): SetupResult { if ($this->talkConfig->getSignalingMode() === Config::SIGNALING_INTERNAL) { - $setupResult = SetupResult::error(...); - if ($this->talkConfig->getHideSignalingWarning()) { - $setupResult = SetupResult::warning(...); - } - return $setupResult( - $this->l->t('No High-performance backend configured - Running Nextcloud Talk without the High-performance backend only scales for very small calls (max. 2-3 participants). Please set up the High-performance backend to ensure calls with multiple participants work seamlessly.'), - 'https://portal.nextcloud.com/article/Nextcloud-Talk/High-Performance-Backend/Installation-of-Nextcloud-Talk-High-Performance-Backend', - ); + return SetupResult::success(); } if ($this->talkConfig->getSignalingMode() === Config::SIGNALING_CLUSTER_CONVERSATION) { diff --git a/lib/SetupCheck/RecordingBackend.php b/lib/SetupCheck/RecordingBackend.php index 3a4262cfa1a..1ae04c31d5b 100644 --- a/lib/SetupCheck/RecordingBackend.php +++ b/lib/SetupCheck/RecordingBackend.php @@ -33,7 +33,7 @@ public function run(): SetupResult { return SetupResult::success(); } if (empty($this->talkConfig->getRecordingServers())) { - return SetupResult::info($this->l->t('No recording backend configured')); + return SetupResult::success(); } return SetupResult::error($this->l->t('Using the recording backend requires a High-performance backend.')); } diff --git a/lib/SetupCheck/SIPConfiguration.php b/lib/SetupCheck/SIPConfiguration.php index a3dbe3f2cac..a8eba865a4d 100644 --- a/lib/SetupCheck/SIPConfiguration.php +++ b/lib/SetupCheck/SIPConfiguration.php @@ -33,7 +33,7 @@ public function run(): SetupResult { return SetupResult::success(); } if ($this->talkConfig->getSIPSharedSecret() === '' && $this->talkConfig->getDialInInfo() === '') { - return SetupResult::info($this->l->t('No SIP backend configured')); + return SetupResult::success(); } return SetupResult::error($this->l->t('Using the SIP functionality requires a High-performance backend.')); } diff --git a/package-lock.json b/package-lock.json index 17a06f9460c..fbb35f16d00 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "talk", - "version": "20.1.2", + "version": "20.1.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "talk", - "version": "20.1.2", + "version": "20.1.3", "license": "agpl", "dependencies": { "@linusborg/vue-simple-portal": "^0.1.5", diff --git a/package.json b/package.json index 1f5272d0977..4fffa0f1baf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "talk", - "version": "20.1.2", + "version": "20.1.3", "private": true, "description": "", "author": "Joas Schilling ", diff --git a/src/components/AdminSettings/SignalingServers.vue b/src/components/AdminSettings/SignalingServers.vue index 10b4a587371..c139cbf0096 100644 --- a/src/components/AdminSettings/SignalingServers.vue +++ b/src/components/AdminSettings/SignalingServers.vue @@ -5,11 +5,6 @@