0.9.998
kompfner
released this
08 Feb 16:16
·
469 commits
to main
since this release
Features
- You can now update all participants at once using the
*
key in theupdateParticipants()
method. Example:callObject.updateParticipants({'*': {setSubscribedTracks: true}});
. - The
room()
method returns a more complete set ofconfig
properties describing the room you're currently in, as well asdomainConfig
properties describing the room's domain. This new set of properties includes explicitly-set properties as well as default ones. To see only default properties, pass in a new{includeRoomConfigDefaults: false}
argument.
Bugfixes
- Improved track subscription performance and fixed race conditions when updating multiple tracks. When changing subscriptions for multiple participants, it is highly recommended to use the
updateParticipants()
(plural) call over multiple calls toupdateParticipant()
in order to batch updates and expedite subscription changes. Also—as described in "Features", above—you can now update all participants at once using the*
key in theupdateParticipants()
method*.*