1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- ## THE CHANGELOG
-
- #### 2.4.1-alpha.2
- - deprecated `sendMessage` & `createDataStream` & `removeAllListeners`
- - refactor event system
- - fix `android` enum convert failed.
-
- #### 2.4.1-alpha
- - support 2.4.1-alpha.1 agora video sdk android-2.4.1 / iOS-2.4.1
- 1. Deprecate iOS manual link operator, instead using cocoapods resolve compile dependencies.
- 2. Add methods getAudioMixingPlayoutVolume, getAudioMixingPublishVolume for audio mixing troubleshooting.
- 3. Add `txPacketLossRate`, `rxPacketLossRate` on `rtcStats` interface. usage: `RtcEngine.on('rtcStats', (data) => console.log(data))`.
- 4. Rename `receivedFrameRate` to `rendererOutputFrameRate` this property related on `localVideoStats` and `remoteVideoStats`.
- 5. Add event 'localVideoChanged' and Deprecate events `cameraReady` and `videoStopped`. You can listen `localVideoChanged` event instead `cameraReady` & `videoStopped`.
- 6. Add event `rtmpStreamingStateChanged` for rtmp streaming troubleshooting
- 7. Add event `audioCodecProfile` on `liveTranscoding` interface.
- 8. Add event `networkTypeChanged` for network troubleshooting.
- 9. Add method `registerMediaMetadataObserver` method, this method enables you to add synchronized metadata in the video stream for more diversified live broadcast interactions, such as sending shopping links, digital coupons, and online quizzes. note: Call this method before the joinChannel method. and applies to `channelProfile` with 1.
- 10. Add method `sendMediaData`, this method enables you send media data under the live broadcast mode (`channelProfile` = 1) note: call this method after the `registerMediaMetadataObserver` method.
- 11. Add event `audioMixingStateChanged` and Deprecate event 'localAudioMixingFinish`.
- 11. Add `firstRemoteAudioDecoded` event you can get more detail [here](https://docs.agora.io/en/Interactive%20Broadcast/release_android_video?platform=Android#v241)
-
- #### 2.4.0-alpha
- - support 2.4.0-alpha.1 agora video sdk android-2.4.0 / iOS-2.4.0.1 and add sendMessage support in the same channel. Deprecate: startEchoTest and setVideoQualityParameters
- - support 2.4.0-alpha.2 using 0.55.1 as peerDependency and support typescript
- - support 2.4.0-alpha.3 bugfix iOS receiveStreamMessage data is null
- - support 2.4.0-alpha.4 bugfix iOS videoSizeChanged field rotation typo
- - support 2.4.0-alpha.5 bugfix Android & iOS side not support fit mode and hidden mode.
- 1. Deprecate & Remove: setupLocalVideo & setupRemoteVideo
- 2. rename iOS side constants
- ```javascript
- "AgoraVideoMirrorModeAuto" to "VideoMirrorModeAuto"
- "AgoraVideoMirrorModeEnabled" to "VideoMirrorModeEnabled"
- "AgoraVideoMirrorModeDisabled" to "VideoMirrorModeDisabled"
- "AgoraChannelProfileCommunication" to "ChannelProfileCommunication"
- "AgoraChannelProfileLiveBroadcasting" to "ChannelProfileLiveBroadcasting"
- "AgoraChannelProfileGame" to "ChannelProfileGame"
- "AgoraVideoMode" to "VideoMode"
- "AgoraAudioMode" to "AudioMode"
- ```
-
- #### 2.3.3-alpha
- - support agora video sdk 2.3.3
- - release 2.3.3-alpha.3
- - release 2.3.3-alpha.4 (remove deprecated native api)
- - release 2.3.3-alpha.5 (refactor event react api & refactor native wrapper)
- - release 2.3.3-alpha.6 (refactor with typescript & fix. iOS platform binding bug)
- - release 2.3.3-alpha.7 (refactor RtcEngine#init method support audio / video mode and switch dualStream)
-
-
- #### 1.1.2
- - add onVideoMute
- - add onAudioMute
-
- #### 1.1.1
-
- - add createDataStream
- - add sendStreamMessage
- - add onStreamMessage
-
- #### 1.0.9
-
- - update to agora sdk version 2.0.2
-
- - add setCameraAutoFocusFaceModeEnabled
-
- - add setDefaultAudioRouteToSpeakerphone
-
- - add setCameraTorchOn
-
- - fix bug: Android speaker's volume indication
-
- #### 1.0.8
-
- - update to agora sdk version 1.12
-
- - init wouldn't start video preview. Should manually use startPreview.
-
- - init options add new boolean parameter `swapWidthAndHeight` to support swap width and height.
-
- - add configPublisher
-
- - add setLocalRenderMode
-
- - add setRemoteRenderMode
-
- - add enableAudioVolumeIndication
-
- - add onAudioVolumeIndication
-
- - add zOrderMediaOverlay for android platform, support media overlay
|