Skip to content

Releases: team-telnyx/webrtc

webrtc@2.2.4

11 Dec 21:34
Compare
Choose a tag to compare

TypeScript documentation updates

react-client/v1.0.0

11 Dec 22:24
be05c0a
Compare
Choose a tag to compare

Telnyx React Client is out of beta! 🎉

Now, it's easier than ever to make audio and video calls from your React web apps. How easy? Try it out yourself and let us know:

import { TelnyxRTCProvider, useNotification, Audio } from '@telnyx/react-client';

function Phone() {
  const notification = useNotification();
  const activeCall = notification && notification.call;

  return (
    <div>
      {activeCall &&
        activeCall.state === 'ringing' &&
        'Hello world, indeed.'}

      <Audio stream={activeCall && activeCall.remoteStream} />
    </div>
  );
}

function App() {
  const credential = {
    login_token: 'mytoken',
  };

  return (
    <TelnyxRTCProvider credential={credential}>
      <Phone />
    </TelnyxRTCProvider>
  );
}

Hop into our Slack channel if you have any questions or feedback, and open an issue on GitHub if you find any 🐛z.

🔗

webrtc@2.2.3

04 Dec 02:22
Compare
Choose a tag to compare

TypeScript documentation updates

webrtc@2.5.3

17 Aug 17:14
Compare
Choose a tag to compare
  • Deploing the new version

webrtc@2.5.2

17 Aug 17:08
Compare
Choose a tag to compare
  • Add SDK VERSION on WS messages

webrtc@2.5.0

14 Jul 16:59
Compare
Choose a tag to compare

Adding dynamic bandwidth control

webrtc@2.4.0

07 Jun 13:48
Compare
Choose a tag to compare
  • Change SDP Semantics to use the new unified-plan

webrtc@2.3.0

09 Jan 01:30
Compare
Choose a tag to compare

Add getter retrieving Telnyx IDs from a call (#131) (0cc6a41)

react-client@1.0.0-beta.0

20 Nov 19:43
Compare
Choose a tag to compare
Pre-release
react-client/v1.0.0-beta.0

Release 1.0.0-beta.0

Release 2.2.2

19 Nov 22:38
Compare
Choose a tag to compare

2.2.2 (2020-11-19)

Bug Fixes

  • ENGDESK-7173: change the STUN_SERVER port from 3843 to 3478 (#60) (cc8f78f)