Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Release 5.0.0

Compare
Choose a tag to compare
@graszka22 graszka22 released this 22 Jun 12:48
· 12 commits to master since this release
4c95c3a

This release adds compatibility with RTCEngine v0.14.
Because of that, there are breaking changes:

  • connect has been renamed to create and no longer connects to the server, just creates MembraneRTC 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 to connect and all methods and callbacks names containing Peers were renamed to contain Endpoints
  • Now you create tracks after receiving onConnected callback, just like in web client (see our example)