diff --git a/CHANGELOG.md b/CHANGELOG.md index b58f02680dd..4a8c9786631 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,40 @@ # Changelog All notable changes to this project will be documented in this file. +## 20.1.0-rc.1 – 2024-11-14 +### Added +- feat(polls): Allow to draft, export and import polls + [#13439](https://github.com/nextcloud/spreed/issues/13439) +- feat(voice-messages): Auto play voice messages which are grouped together + [#13199](https://github.com/nextcloud/spreed/issues/13199) +- feat(calls): Allow moderators to download a call participants list + [#13453](https://github.com/nextcloud/spreed/issues/13453) +- feat(calls): Allow to enforce a maximum call length + [#13445](https://github.com/nextcloud/spreed/issues/13445) +- feat(chat): Add option to directly download attachments + [Desktop #824](https://github.com/nextcloud/talk-desktop/issues/824) +- feat(calls): Add an option to always disable devices by default + [#13446](https://github.com/nextcloud/spreed/issues/13446) +- feat(email-guests): Identify and recognize guests invited via email address + [#6098](https://github.com/nextcloud/spreed/issues/6098) +- feat(email-guests): Allow to invite email guests when creating a conversation + [#4937](https://github.com/nextcloud/spreed/issues/4937) +- feat(chat): Highlight file and object shares with an icon in conversations list + +### Changed +- Update translations +- Update dependencies + +### Fixed +- fix(chat): Disable interactiveness of reference by default, to avoid focus stealing + [#4937](https://github.com/nextcloud/spreed/issues/4937) +- fix(avatar): Use person icon for deleted accounts and guests without a name + [#13754](https://github.com/nextcloud/spreed/issues/13754) +- fix(call): Omit "with 0 guests" when a call is ended and only 1 logged-in participant joined + [#13545](https://github.com/nextcloud/spreed/issues/13545) +- fix(polls): rename "Private poll" to "Anonymous poll" +- perf: Fix a performance issue when the page is not reloaded over multiple days + ## 20.0.2 – 2024-11-07 ### Changed - Update translations diff --git a/appinfo/info.xml b/appinfo/info.xml index 9d592c8f61d..76a9d6dd430 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.0-dev.1 + 20.1.0-rc.1 agpl Anna Larch diff --git a/package-lock.json b/package-lock.json index 7ad5e872c11..f67ddccbe3a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "talk", - "version": "20.0.1", + "version": "20.1.0-rc.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "talk", - "version": "20.0.1", + "version": "20.1.0-rc.1", "license": "agpl", "dependencies": { "@linusborg/vue-simple-portal": "^0.1.5", diff --git a/package.json b/package.json index 690595e346e..758e622183a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "talk", - "version": "20.0.1", + "version": "20.1.0-rc.1", "private": true, "description": "", "author": "Joas Schilling ",