diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-09-13 08:48:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 08:48:08 +0200 |
commit | dcaf9a31031754c936ede314072a5af0fb2bb77e (patch) | |
tree | a1e9d7af997fd012307a0ead16e554d31be5ee60 | |
parent | 5bb83ce0905c881b753c5c73ebc64d24ea9c23b1 (diff) | |
parent | c5e2832e5debe213a91f849b97b9e01b5df6e062 (diff) |
Merge pull request #13288 from nextcloud/backport/13282/stable30v20.0.0
Releasing 20.0.0
-rw-r--r-- | CHANGELOG.md | 28 | ||||
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | appinfo/info.xml | 2 | ||||
-rw-r--r-- | package-lock.json | 4 | ||||
-rw-r--r-- | package.json | 2 |
5 files changed, 33 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d4015a0524..d33c486909 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,34 @@ # Changelog All notable changes to this project will be documented in this file. +## 20.0.0 – 2024-09-14 +### Added +- Federated calls +- Add a task counter for to-do lists in "Note to self" messages +- Allow editing "Note to self" messages forever +- Show blurhash while loading attachments +- Show upcoming event information in conversation +- Banning users and guests +- Allow to prevent "@all" mentions for non-moderators +- Add button to show smart picker +- Dispatch events when enabling or disabling bots +- Show user status messages of other local users in a federated conversation + +### Changed +- Requires Nextcloud 30 +- High-performance backend with `federation` support is required (Version 2.0.0 or later) +- API performance improvements +- Dynamic order of tiles in a call to prioritize participants with audio or video +- Automatically lower raised hand when participant speaks +- Show confirmation dialog when removing a participant +- Show description when listing open conversations +- Outline the participant count when trying to mention everyone +- Show out-of-office replacement in the out-of-office message + +### Known issues +- Federation requires the High-performance backend on both servers +- Federation requires Talk 20 on both servers + ## 20.0.0-rc.5 – 2024-09-12 ### Added - Add setup checks for server configuration pitfalls @@ -99,6 +99,7 @@ appstore: --exclude=README.md \ --exclude=.readthedocs.yaml \ --exclude=/recording \ + --exclude=/redocly.yaml \ --exclude=/site \ --exclude=/src \ --exclude=.stylelintignore \ diff --git a/appinfo/info.xml b/appinfo/info.xml index 30de91d5df..d4d843151f 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. ]]></description> - <version>20.0.0-rc.5</version> + <version>20.0.0</version> <licence>agpl</licence> <author>Daniel Calviño Sánchez</author> diff --git a/package-lock.json b/package-lock.json index a11f9de061..0337cc319d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "talk", - "version": "20.0.0-rc.5", + "version": "20.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "talk", - "version": "20.0.0-rc.5", + "version": "20.0.0", "license": "agpl", "dependencies": { "@linusborg/vue-simple-portal": "^0.1.5", diff --git a/package.json b/package.json index 306fb81057..34ef116eda 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "talk", - "version": "20.0.0-rc.5", + "version": "20.0.0", "private": true, "description": "", "author": "Joas Schilling <coding@schilljs.com>", |