Browse Source

Merge pull request #15695 from nextcloud/chore/release-22.0.0-beta.1

pull/15704/head v22.0.0-beta.1
Maksim Sukharev 3 months ago
committed by GitHub
parent
commit
7f415084d9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 15
      CHANGELOG.md
  2. 3
      Makefile
  3. 2
      appinfo/info.xml
  4. 4
      package-lock.json
  5. 2
      package.json

15
CHANGELOG.md

@ -5,6 +5,21 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 22.0.0-beta.1 – 2025-08-21
### Added
- Implement threads feature [#15313](https://github.com/nextcloud/spreed/issues/15313)
- Implement 'Busy' status in calls [#15465](https://github.com/nextcloud/spreed/issues/15465)
- Update call interface design [#15025](https://github.com/nextcloud/spreed/issues/15025)
### Fixed
- Improve chat history browsing performance [#6046](https://github.com/nextcloud/spreed/issues/6046)
### Changed
- Migrate app to Vue3 [#9448](https://github.com/nextcloud/spreed/issues/9448)
- Update dependencies
- Update translations
- Require Nextcloud 32 / Hub 25 Autumn
## 21.1.3 – 2025-08-06 ## 21.1.3 – 2025-08-06
### Changed ### Changed
- Update translations - Update translations

3
Makefile

@ -79,8 +79,7 @@ appstore:
--exclude=.drone.jsonnet \ --exclude=.drone.jsonnet \
--exclude=.drone.yml \ --exclude=.drone.yml \
--exclude=.editorconfig \ --exclude=.editorconfig \
--exclude=.eslintignore \
--exclude=.eslintrc.js \
--exclude=eslint.config.mjs \
--exclude=.git \ --exclude=.git \
--exclude=.git-blame-ignore-revs \ --exclude=.git-blame-ignore-revs \
--exclude=.gitattributes \ --exclude=.gitattributes \

2
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. * 🌉 **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> ]]></description>
<version>22.0.0-dev.10</version>
<version>22.0.0-beta.1</version>
<licence>agpl</licence> <licence>agpl</licence>
<author>Anna Larch</author> <author>Anna Larch</author>

4
package-lock.json

@ -1,12 +1,12 @@
{ {
"name": "talk", "name": "talk",
"version": "22.0.0-dev.0",
"version": "22.0.0-beta.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "talk", "name": "talk",
"version": "22.0.0-dev.0",
"version": "22.0.0-beta.1",
"license": "agpl", "license": "agpl",
"dependencies": { "dependencies": {
"@matrix-org/olm": "^3.2.15", "@matrix-org/olm": "^3.2.15",

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "talk", "name": "talk",
"version": "22.0.0-dev.0",
"version": "22.0.0-beta.1",
"private": true, "private": true,
"description": "", "description": "",
"license": "agpl", "license": "agpl",

Loading…
Cancel
Save