Skip to content

1.0.0

Compare
Choose a tag to compare
@sb-junhyeong sb-junhyeong released this 24 Mar 07:07
· 98 commits to master since this release

1.0.0 (Mar 24, 2020)

  • README has been updated. Refer to readme to learn how to configure media devices.
  • Interfaces for media devices are added / changed.
    • Below methods are added in SendBirdCall
      • getCurrentVideoInputDevice(): MediaDeviceInfo
      • getAvailableVideoInputDevices(): MediaDeviceInfo[]
      • selectVideoInputDevice(mediaDeviceInfo: MediaDeviceInfo): void
      • updateMediaDevices(constraints: { audio: boolean; video: boolean }): void
      • useMedia(constraints: { audio: boolean; video: boolean }): MediaAccess
    • Below event listener is added in SendBirdCallListener
      • onVideoInputDeviceChanged: ((currentVideoInputDevice: MediaDeviceInfo, availableVideoInputDevices: MediaDeviceInfo[]) => void) | null
    • Below methods are changed in SendBirdCall
      • getCurrentVideoInputDevice(): MediaDeviceInfo
      • getAvailableAudioInputDevices() is now synchronous
      • selectAudioInputDevice(mediaDeviceInfo: MediaDeviceInfo) is now synchronous
      • getAvailableAudioOutputDevices() is now synchronous
      • selectAudioOutputDevice(mediaDeviceInfo: MediaDeviceInfo) is now synchronous