Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 1.04 KB

CHANGELOG.md

File metadata and controls

28 lines (18 loc) · 1.04 KB

Change Log

6.0.0 -> 6.0.1

5.x.x -> 6.0.0

  • Breaking Changes
    • Removed client.call()

      See the jingle-interop-demos for how to recreate the behaviour by working directly with the jingle.js and localmedia libraries.

      var localMedia = require('localmedia');
      
      localMedia.start();
      
      //...
      
      var sess = client.jingle.createMediaSession(peerJID);
      sess.addStream(localMedia.localStream);
      sess.start();
    • client.jingle was updated to a jingle.js v1.0 instance.

      The method client.jingle.startLocalMedia() has been removed, in favor of using the localmedia module instead (which is not bundled in stanza.io).