-
-
Notifications
You must be signed in to change notification settings - Fork 589
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for call upgrades #1827
Support for call upgrades #1827
Conversation
cf07991
to
21236ef
Compare
e292e6f
to
9f9524e
Compare
4c9f2e5
to
03f8137
Compare
Signed-off-by: Šimon Brandner <[email protected]>
…t track combinations Signed-off-by: Šimon Brandner <[email protected]>
03f8137
to
695248d
Compare
Signed-off-by: Šimon Brandner <[email protected]>
Signed-off-by: Šimon Brandner <[email protected]>
695248d
to
a4cacbc
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
otherwise looks good! Not sure if we want to squeeze this into the RC or if we should delay it. Very keen not to stick it into the release just because we have another breaking change: version numbers are relatively free, and we can afford back-to-back breaking releases.
Co-authored-by: Travis Ralston <[email protected]>
Signed-off-by: Šimon Brandner <[email protected]>
…ner/matrix-js-sdk into feature/call-upgrades
Yeah, makes sense, let's wait a bit 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
otherwise looks good.
and yes, we'll be waiting until after the RC on this.
Signed-off-by: Šimon Brandner <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks :)
* Support for call upgrades. `setLocalVideoMuted()` and `setMicrophoneMuted()` are now `async` and return the new mute state ([\matrix-org#1827](matrix-org#1827)). Contributed by [SimonBrandner](https://github.com/SimonBrandner). * Implement file versioning for tree spaces ([\matrix-org#1952](matrix-org#1952)). * Allow answering calls without audio/video ([\matrix-org#1950](matrix-org#1950)). Contributed by [SimonBrandner](https://github.com/SimonBrandner). * Add `bound` to `IThreepid` ([\matrix-org#1941](matrix-org#1941)). Contributed by [SimonBrandner](https://github.com/SimonBrandner). * Add `trusted_locally` to `TrustInfo` ([\matrix-org#1942](matrix-org#1942)). Contributed by [SimonBrandner](https://github.com/SimonBrandner). * Fix incorrect return value type in getJoinedRooms() ([\matrix-org#1959](matrix-org#1959)). Contributed by [psrpinto](https://github.com/psrpinto). * Make sure to set `callLengthInterval` only once ([\matrix-org#1958](matrix-org#1958)). Fixes element-hq/element-web#19221 and element-hq/element-web#19221. Contributed by [SimonBrandner](https://github.com/SimonBrandner). * Fix event partitioning from non threading ready clients ([\matrix-org#1948](matrix-org#1948)). * Ensure unencrypted fields get exposed by getEffectiveEvent() ([\matrix-org#1938](matrix-org#1938)). Fixes element-hq/element-web#19062 and element-hq/element-web#19062.
Type: enhancement
Requires matrix-org/matrix-react-sdk#6547
Notes: Support for call upgrades.
setLocalVideoMuted()
andsetMicrophoneMuted()
are nowasync
and return the new mute stateHere's what your changelog entry will look like:
🚨 BREAKING CHANGES
setLocalVideoMuted()
andsetMicrophoneMuted()
are nowasync
and return the new mute state (#1827). Contributed by SimonBrandner.