This repository has been archived by the owner on May 13, 2024. It is now read-only.
Releases: fishjam-dev/membrane-webrtc-ios
Releases · fishjam-dev/membrane-webrtc-ios
Release 5.3.0
Release 5.2.0
- add simulcast to tracks
5.1.2
Release 5.1.1
Release 5.1.0
- Fix demo app build by @skyman503 in #46
- Update README.md by @skyman503 in #45
- [EX-18] Add sound detection by @incubo4u in #47
Release 5.0.0
This release adds compatibility with RTCEngine v0.14.
Because of that, there are breaking changes:
connect
has been renamed tocreate
and no longer connects to the server, just createsMembraneRTC
instance. Now the user is responsible for managing the socket connection. We provided a convenience wrapper for that. See the example on how to use it.- MembraneRTC no longer deals with Peers, but with Endpoints. That means the
join
method has been renamed toconnect
and all methods and callbacks names containingPeer
s were renamed to containEndpoint
s - Now you create tracks after receiving
onConnected
callback, just like in web client (see our example)