Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-05-19 11:42:02 +0300
committerGitHub <noreply@github.com>2020-05-19 11:42:02 +0300
commit6cc834a81caf4084e60dce9ebce883bab9d3ee24 (patch)
tree1817eb3f140416606176882bd7a8d25a351530ca
parent18ebbb1546c7cb7105b6f4f1f3ff3672d50cc3be (diff)
parent5e58aecdd9dd76e10d861b7252dcbf628c32b246 (diff)
Merge pull request #3616 from nextcloud/backport/3615/stable19v9.0.0-rc.1
[stable19] Changelog update
-rw-r--r--CHANGELOG.md32
-rw-r--r--README.md2
-rw-r--r--appinfo/info.xml3
-rw-r--r--docs/call-in-action.pngbin1494800 -> 1016791 bytes
-rw-r--r--docs/file-darg-and-drop.pngbin0 -> 141838 bytes
-rw-r--r--lib/Chat/Changelog/Manager.php4
6 files changed, 33 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fafe07067..cacb0ad64 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,13 +1,37 @@
# Changelog
All notable changes to this project will be documented in this file.
-## 9.0.0-beta1 – 2020-05-13
+## 9.0.0-rc.1 – 2020-05-19
+### Changed
+- Prevent configuring multiple High-performance Back-ends unless Clustering is enabled
+ [#3605](https://github.com/nextcloud/spreed/pull/3605)
+- Improve the video call layout in one-to-one calls
+ [#3569](https://github.com/nextcloud/spreed/pull/3569)
+
+### Fixed
+- Fix call view in the sidebars for Files and public shares
+ [#3571](https://github.com/nextcloud/spreed/pull/3571)
+- Fix browser and version detection
+ [#3607](https://github.com/nextcloud/spreed/pull/3607)
+ [#3613](https://github.com/nextcloud/spreed/pull/3613)
+- Fix flow message not being posted
+ [#3585](https://github.com/nextcloud/spreed/pull/3585)
+- Make icons and buttons better visible in the call view
+ [#3612](https://github.com/nextcloud/spreed/pull/3612)
+
+### Known issues
+- The grid view still has some glitches on specific window sizes
+- The promoted view cuts off screenshares when the aspect ratio does not fit in the call view
+- The promoted view cuts off videos weirdly when very few users are in the call
+- The video selection feature has been temporarily disabled
+
+## 9.0.0-beta.1 – 2020-05-13
### Added
- Added a grid view for calls and made the promoted view more usable in huge calls
[#1056](https://github.com/nextcloud/spreed/pull/1056)
- Allow to use multiple High-performance backends in parallel for different conversations
[#3292](https://github.com/nextcloud/spreed/pull/3292)
-- Allow which video is shown big in the promoted view
+- Allow selecting which video is shown big in the promoted view
[#3497](https://github.com/nextcloud/spreed/pull/3497)
- Open files with the viewer apps registered in Nextcloud
[#2778](https://github.com/nextcloud/spreed/pull/2778)
@@ -49,10 +73,6 @@ All notable changes to this project will be documented in this file.
[#3456](https://github.com/nextcloud/spreed/pull/3456)
[#3402](https://github.com/nextcloud/spreed/pull/3402)
-### Known issues
-- The grid view still has some glitches on specific window sizes
-- The call view in the sidebar on the files app and public shares is completely overlapped by your own video
-
## 8.0.9 – 2020-05-13
### Changed
- Reduce CPU usage when doing a video call
diff --git a/README.md b/README.md
index 00bd9115c..a360a9036 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ A single video stream currently uses about 1 Mbit/sec and the total required ban
1 Mbit/s * (participants - 1)
```
-![](https://github.com/nextcloud/spreed/raw/e419b79819963a631ce811ffed432853ec4723c2/docs/HPB-P2P.svg.png)
+![](https://github.com/nextcloud/spreed/raw/e419b79819963a631ce811ffed432853ec4723c2/docs/HPB-P2P.png)
This means that in a call with 5 participants, each has to send and receive about 4 Mbit/sec. Given the asymetric nature of most typical broadband connections, it's sending video that quickly becomes the bottleneck. Moreover, decoding all those video streams puts a big strain on the system of each participant.
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 37a33a945..bbd70cfab 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -16,7 +16,7 @@ And in the works for the [coming versions](https://github.com/nextcloud/spreed/m
]]></description>
- <version>9.0.0-beta.1.1</version>
+ <version>9.0.0-rc.1</version>
<licence>agpl</licence>
<author>Daniel Calviño Sánchez</author>
@@ -42,6 +42,7 @@ And in the works for the [coming versions](https://github.com/nextcloud/spreed/m
<screenshot>https://raw.githubusercontent.com/nextcloud/spreed/master/docs/call-in-action.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/spreed/master/docs/chat.png</screenshot>
+ <screenshot>https://raw.githubusercontent.com/nextcloud/spreed/master/docs/file-darg-and-drop.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/spreed/master/docs/screensharing.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/spreed/master/docs/video-verfication.png</screenshot>
diff --git a/docs/call-in-action.png b/docs/call-in-action.png
index edad49288..0ae15f3a7 100644
--- a/docs/call-in-action.png
+++ b/docs/call-in-action.png
Binary files differ
diff --git a/docs/file-darg-and-drop.png b/docs/file-darg-and-drop.png
new file mode 100644
index 000000000..9d1762568
--- /dev/null
+++ b/docs/file-darg-and-drop.png
Binary files differ
diff --git a/lib/Chat/Changelog/Manager.php b/lib/Chat/Changelog/Manager.php
index 04b45fbcf..0d8661b41 100644
--- a/lib/Chat/Changelog/Manager.php
+++ b/lib/Chat/Changelog/Manager.php
@@ -98,6 +98,10 @@ class Manager {
$this->l->t('- You can now directly reply to messages giving the other users more context what your message is about'),
$this->l->t('- Searching for conversations and participants will now also filter your existing conversations, making it much easier to find previous conversations'),
$this->l->t('- You can now add custom user groups to conversations when the circles app is installed'),
+ $this->l->t('New in Talk 9'),
+ $this->l->t('- Check out the new grid and call view'),
+ $this->l->t('- You can now upload and drag\'n\'drop files directly from your device into the chat'),
+ $this->l->t('- Shared files are now opened directly inside the chat view with the viewer apps'),
];
}
}