agora-electron-sdk 4.2.0-beta.1 → 4.2.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +160 -160
- package/LICENSE +21 -21
- package/README.md +143 -143
- package/gulpfile.js +43 -43
- package/js/AgoraSdk.js +62 -62
- package/js/Private/AgoraBase.js +4573 -4573
- package/js/Private/AgoraMediaBase.js +968 -968
- package/js/Private/AgoraMediaPlayerTypes.js +422 -422
- package/js/Private/IAgoraLog.js +86 -86
- package/js/Private/IAgoraMediaEngine.js +32 -32
- package/js/Private/IAgoraMediaPlayer.js +16 -16
- package/js/Private/IAgoraMediaPlayerSource.js +3 -3
- package/js/Private/IAgoraMediaRecorder.js +10 -10
- package/js/Private/IAgoraMediaStreamingSource.js +84 -84
- package/js/Private/IAgoraMusicContentCenter.js +239 -239
- package/js/Private/IAgoraRhythmPlayer.js +70 -70
- package/js/Private/IAgoraRtcEngine.js +1805 -1805
- package/js/Private/IAgoraRtcEngineEx.js +26 -26
- package/js/Private/IAgoraSpatialAudio.js +74 -74
- package/js/Private/IAudioDeviceManager.js +20 -20
- package/js/Private/extension/AgoraBaseExtension.js +2 -2
- package/js/Private/extension/AgoraMediaBaseExtension.js +2 -2
- package/js/Private/extension/AgoraMediaPlayerTypesExtension.js +2 -2
- package/js/Private/extension/IAgoraLogExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaEngineExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaPlayerExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaPlayerSourceExtension.js +2 -2
- package/js/Private/extension/IAgoraMediaRecorderExtension.js +2 -2
- package/js/Private/extension/IAgoraMusicContentCenterExtension.js +2 -2
- package/js/Private/extension/IAgoraRhythmPlayerExtension.js +2 -2
- package/js/Private/extension/IAgoraRtcEngineExExtension.js +2 -2
- package/js/Private/extension/IAgoraRtcEngineExtension.js +2 -2
- package/js/Private/extension/IAgoraSpatialAudioExtension.js +2 -2
- package/js/Private/extension/IAudioDeviceManagerExtension.js +2 -2
- package/js/Private/impl/AgoraBaseImpl.js +23 -23
- package/js/Private/impl/AgoraMediaBaseImpl.js +118 -118
- package/js/Private/impl/IAgoraMediaEngineImpl.js +287 -287
- package/js/Private/impl/IAgoraMediaPlayerImpl.js +932 -932
- package/js/Private/impl/IAgoraMediaPlayerSourceImpl.js +63 -63
- package/js/Private/impl/IAgoraMediaRecorderImpl.js +47 -47
- package/js/Private/impl/IAgoraMusicContentCenterImpl.js +353 -353
- package/js/Private/impl/IAgoraRtcEngineExImpl.js +945 -945
- package/js/Private/impl/IAgoraRtcEngineImpl.js +4742 -4742
- package/js/Private/impl/IAgoraSpatialAudioImpl.js +362 -362
- package/js/Private/impl/IAudioDeviceManagerImpl.js +375 -375
- package/js/Private/internal/AudioDeviceManagerInternal.js +44 -44
- package/js/Private/internal/IrisApiEngine.js +376 -376
- package/js/Private/internal/LocalSpatialAudioEngineInternal.js +46 -46
- package/js/Private/internal/MediaEngineInternal.js +103 -103
- package/js/Private/internal/MediaPlayerInternal.js +198 -198
- package/js/Private/internal/MediaRecorderInternal.js +71 -71
- package/js/Private/internal/MusicContentCenterInternal.js +146 -146
- package/js/Private/internal/RtcEngineExInternal.js +407 -407
- package/js/Private/ti/AgoraBase-ti.js +40 -40
- package/js/Private/ti/AgoraMediaBase-ti.js +71 -71
- package/js/Private/ti/AgoraMediaPlayerTypes-ti.js +5 -5
- package/js/Private/ti/IAgoraLog-ti.js +5 -5
- package/js/Private/ti/IAgoraMediaEngine-ti.js +5 -5
- package/js/Private/ti/IAgoraMediaPlayer-ti.js +38 -38
- package/js/Private/ti/IAgoraMediaPlayerSource-ti.js +48 -48
- package/js/Private/ti/IAgoraMediaRecorder-ti.js +5 -5
- package/js/Private/ti/IAgoraMediaStreamingSource-ti.js +5 -5
- package/js/Private/ti/IAgoraMusicContentCenter-ti.js +41 -41
- package/js/Private/ti/IAgoraRhythmPlayer-ti.js +5 -5
- package/js/Private/ti/IAgoraRtcEngine-ti.js +139 -139
- package/js/Private/ti/IAgoraRtcEngineEx-ti.js +5 -5
- package/js/Private/ti/IAgoraSpatialAudio-ti.js +5 -5
- package/js/Private/ti/IAudioDeviceManager-ti.js +5 -5
- package/js/Renderer/AgoraView.js +128 -128
- package/js/Renderer/IRenderer.js +40 -40
- package/js/Renderer/IRendererManager.js +9 -9
- package/js/Renderer/RendererManager.js +479 -479
- package/js/Renderer/WebGLRenderer/index.js +469 -469
- package/js/Renderer/WebGLRenderer/webgl-utils.js +1337 -1337
- package/js/Renderer/YUVCanvasRenderer/index.js +192 -192
- package/js/Renderer/index.js +18 -18
- package/js/Types.js +17 -17
- package/js/Utils.js +168 -168
- package/package.json +140 -140
- package/scripts/bootstrap.js +29 -29
- package/scripts/build.js +37 -37
- package/scripts/buildJS.js +14 -14
- package/scripts/clean.js +33 -33
- package/scripts/downloadPrebuild.js +99 -99
- package/scripts/getConfig.js +73 -73
- package/scripts/logger.js +32 -32
- package/scripts/synclib.js +43 -43
- package/scripts/util.js +18 -18
- package/scripts/zipBuild.js +17 -17
- package/ts/AgoraSdk.ts +52 -52
- package/ts/Private/AgoraBase.ts +4626 -4626
- package/ts/Private/AgoraMediaBase.ts +1203 -1203
- package/ts/Private/AgoraMediaPlayerTypes.ts +418 -418
- package/ts/Private/IAgoraLog.ts +82 -82
- package/ts/Private/IAgoraMediaEngine.ts +256 -256
- package/ts/Private/IAgoraMediaPlayer.ts +625 -625
- package/ts/Private/IAgoraMediaPlayerSource.ts +107 -107
- package/ts/Private/IAgoraMediaRecorder.ts +25 -25
- package/ts/Private/IAgoraMediaStreamingSource.ts +80 -80
- package/ts/Private/IAgoraMusicContentCenter.ts +398 -398
- package/ts/Private/IAgoraRhythmPlayer.ts +66 -66
- package/ts/Private/IAgoraRtcEngine.ts +6095 -6095
- package/ts/Private/IAgoraRtcEngineEx.ts +775 -775
- package/ts/Private/IAgoraSpatialAudio.ts +303 -303
- package/ts/Private/IAudioDeviceManager.ts +267 -267
- package/ts/Private/extension/AgoraBaseExtension.ts +1 -1
- package/ts/Private/extension/AgoraMediaBaseExtension.ts +1 -1
- package/ts/Private/extension/AgoraMediaPlayerTypesExtension.ts +1 -1
- package/ts/Private/extension/IAgoraLogExtension.ts +1 -1
- package/ts/Private/extension/IAgoraMediaEngineExtension.ts +60 -60
- package/ts/Private/extension/IAgoraMediaPlayerExtension.ts +64 -64
- package/ts/Private/extension/IAgoraMediaPlayerSourceExtension.ts +1 -1
- package/ts/Private/extension/IAgoraMediaRecorderExtension.ts +59 -59
- package/ts/Private/extension/IAgoraMusicContentCenterExtension.ts +34 -34
- package/ts/Private/extension/IAgoraRhythmPlayerExtension.ts +1 -1
- package/ts/Private/extension/IAgoraRtcEngineExExtension.ts +1 -1
- package/ts/Private/extension/IAgoraRtcEngineExtension.ts +64 -64
- package/ts/Private/extension/IAgoraSpatialAudioExtension.ts +1 -1
- package/ts/Private/extension/IAudioDeviceManagerExtension.ts +1 -1
- package/ts/Private/impl/AgoraBaseImpl.ts +39 -39
- package/ts/Private/impl/AgoraMediaBaseImpl.ts +198 -198
- package/ts/Private/impl/IAgoraMediaEngineImpl.ts +430 -430
- package/ts/Private/impl/IAgoraMediaPlayerImpl.ts +1140 -1140
- package/ts/Private/impl/IAgoraMediaPlayerSourceImpl.ts +79 -79
- package/ts/Private/impl/IAgoraMediaRecorderImpl.ts +59 -59
- package/ts/Private/impl/IAgoraMusicContentCenterImpl.ts +474 -474
- package/ts/Private/impl/IAgoraRtcEngineExImpl.ts +1518 -1518
- package/ts/Private/impl/IAgoraRtcEngineImpl.ts +6770 -6770
- package/ts/Private/impl/IAgoraSpatialAudioImpl.ts +502 -502
- package/ts/Private/impl/IAudioDeviceManagerImpl.ts +443 -443
- package/ts/Private/internal/AudioDeviceManagerInternal.ts +46 -46
- package/ts/Private/internal/IrisApiEngine.ts +532 -532
- package/ts/Private/internal/LocalSpatialAudioEngineInternal.ts +88 -88
- package/ts/Private/internal/MediaEngineInternal.ts +160 -160
- package/ts/Private/internal/MediaPlayerInternal.ts +334 -334
- package/ts/Private/internal/MediaRecorderInternal.ts +100 -100
- package/ts/Private/internal/MusicContentCenterInternal.ts +209 -209
- package/ts/Private/internal/RtcEngineExInternal.ts +711 -711
- package/ts/Private/ti/AgoraBase-ti.ts +16 -16
- package/ts/Private/ti/AgoraMediaBase-ti.ts +53 -53
- package/ts/Private/ti/AgoraMediaPlayerTypes-ti.ts +11 -11
- package/ts/Private/ti/IAgoraLog-ti.ts +11 -11
- package/ts/Private/ti/IAgoraMediaEngine-ti.ts +11 -11
- package/ts/Private/ti/IAgoraMediaPlayer-ti.ts +14 -14
- package/ts/Private/ti/IAgoraMediaPlayerSource-ti.ts +24 -24
- package/ts/Private/ti/IAgoraMediaRecorder-ti.ts +11 -11
- package/ts/Private/ti/IAgoraMediaStreamingSource-ti.ts +11 -11
- package/ts/Private/ti/IAgoraMusicContentCenter-ti.ts +17 -17
- package/ts/Private/ti/IAgoraRhythmPlayer-ti.ts +11 -11
- package/ts/Private/ti/IAgoraRtcEngine-ti.ts +117 -117
- package/ts/Private/ti/IAgoraRtcEngineEx-ti.ts +11 -11
- package/ts/Private/ti/IAgoraSpatialAudio-ti.ts +11 -11
- package/ts/Private/ti/IAudioDeviceManager-ti.ts +11 -11
- package/ts/Renderer/AgoraView.ts +196 -196
- package/ts/Renderer/IRenderer.ts +55 -55
- package/ts/Renderer/IRendererManager.ts +35 -35
- package/ts/Renderer/RendererManager.ts +628 -628
- package/ts/Renderer/WebGLRenderer/index.ts +597 -597
- package/ts/Renderer/WebGLRenderer/webgl-utils.js +1510 -1510
- package/ts/Renderer/YUVCanvasRenderer/index.ts +243 -243
- package/ts/Renderer/index.ts +2 -2
- package/ts/Types.ts +303 -303
- package/ts/Utils.ts +200 -200
- package/types/AgoraSdk.d.ts +37 -37
- package/types/Private/AgoraBase.d.ts +4454 -4454
- package/types/Private/AgoraMediaBase.d.ts +1116 -1116
- package/types/Private/AgoraMediaPlayerTypes.d.ts +408 -408
- package/types/Private/IAgoraLog.d.ts +80 -80
- package/types/Private/IAgoraMediaEngine.d.ts +193 -193
- package/types/Private/IAgoraMediaPlayer.d.ts +532 -532
- package/types/Private/IAgoraMediaPlayerSource.d.ts +82 -82
- package/types/Private/IAgoraMediaRecorder.d.ts +19 -19
- package/types/Private/IAgoraMediaStreamingSource.d.ts +41 -41
- package/types/Private/IAgoraMusicContentCenter.d.ts +335 -335
- package/types/Private/IAgoraRhythmPlayer.d.ts +64 -64
- package/types/Private/IAgoraRtcEngine.d.ts +4969 -4969
- package/types/Private/IAgoraRtcEngineEx.d.ts +549 -549
- package/types/Private/IAgoraSpatialAudio.d.ts +248 -248
- package/types/Private/IAudioDeviceManager.d.ts +236 -236
- package/types/Private/extension/AgoraBaseExtension.d.ts +1 -1
- package/types/Private/extension/AgoraMediaBaseExtension.d.ts +1 -1
- package/types/Private/extension/AgoraMediaPlayerTypesExtension.d.ts +1 -1
- package/types/Private/extension/IAgoraLogExtension.d.ts +1 -1
- package/types/Private/extension/IAgoraMediaEngineExtension.d.ts +39 -39
- package/types/Private/extension/IAgoraMediaPlayerExtension.d.ts +45 -45
- package/types/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts +1 -1
- package/types/Private/extension/IAgoraMediaRecorderExtension.d.ts +43 -43
- package/types/Private/extension/IAgoraMusicContentCenterExtension.d.ts +19 -19
- package/types/Private/extension/IAgoraRhythmPlayerExtension.d.ts +1 -1
- package/types/Private/extension/IAgoraRtcEngineExExtension.d.ts +1 -1
- package/types/Private/extension/IAgoraRtcEngineExtension.d.ts +41 -41
- package/types/Private/extension/IAgoraSpatialAudioExtension.d.ts +1 -1
- package/types/Private/extension/IAudioDeviceManagerExtension.d.ts +1 -1
- package/types/Private/impl/AgoraBaseImpl.d.ts +2 -2
- package/types/Private/impl/AgoraMediaBaseImpl.d.ts +8 -8
- package/types/Private/impl/IAgoraMediaEngineImpl.d.ts +39 -39
- package/types/Private/impl/IAgoraMediaPlayerImpl.d.ts +140 -140
- package/types/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts +2 -2
- package/types/Private/impl/IAgoraMediaRecorderImpl.d.ts +10 -10
- package/types/Private/impl/IAgoraMusicContentCenterImpl.d.ts +58 -58
- package/types/Private/impl/IAgoraRtcEngineExImpl.d.ts +105 -105
- package/types/Private/impl/IAgoraRtcEngineImpl.d.ts +569 -569
- package/types/Private/impl/IAgoraSpatialAudioImpl.d.ts +48 -48
- package/types/Private/impl/IAudioDeviceManagerImpl.d.ts +64 -64
- package/types/Private/internal/AudioDeviceManagerInternal.d.ts +8 -8
- package/types/Private/internal/IrisApiEngine.d.ts +62 -62
- package/types/Private/internal/LocalSpatialAudioEngineInternal.d.ts +18 -18
- package/types/Private/internal/MediaEngineInternal.d.ts +19 -19
- package/types/Private/internal/MediaPlayerInternal.d.ts +31 -31
- package/types/Private/internal/MediaRecorderInternal.d.ts +15 -15
- package/types/Private/internal/MusicContentCenterInternal.d.ts +29 -29
- package/types/Private/internal/RtcEngineExInternal.d.ts +77 -77
- package/types/Private/ti/AgoraBase-ti.d.ts +7 -7
- package/types/Private/ti/AgoraMediaBase-ti.d.ts +13 -13
- package/types/Private/ti/AgoraMediaPlayerTypes-ti.d.ts +6 -6
- package/types/Private/ti/IAgoraLog-ti.d.ts +6 -6
- package/types/Private/ti/IAgoraMediaEngine-ti.d.ts +6 -6
- package/types/Private/ti/IAgoraMediaPlayer-ti.d.ts +7 -7
- package/types/Private/ti/IAgoraMediaPlayerSource-ti.d.ts +7 -7
- package/types/Private/ti/IAgoraMediaRecorder-ti.d.ts +6 -6
- package/types/Private/ti/IAgoraMediaStreamingSource-ti.d.ts +6 -6
- package/types/Private/ti/IAgoraMusicContentCenter-ti.d.ts +7 -7
- package/types/Private/ti/IAgoraRhythmPlayer-ti.d.ts +6 -6
- package/types/Private/ti/IAgoraRtcEngine-ti.d.ts +9 -9
- package/types/Private/ti/IAgoraRtcEngineEx-ti.d.ts +6 -6
- package/types/Private/ti/IAgoraSpatialAudio-ti.d.ts +6 -6
- package/types/Private/ti/IAudioDeviceManager-ti.d.ts +6 -6
- package/types/Renderer/AgoraView.d.ts +69 -69
- package/types/Renderer/IRenderer.d.ts +21 -21
- package/types/Renderer/IRendererManager.d.ts +17 -17
- package/types/Renderer/RendererManager.d.ts +153 -153
- package/types/Renderer/WebGLRenderer/index.d.ts +48 -48
- package/types/Renderer/YUVCanvasRenderer/index.d.ts +15 -15
- package/types/Renderer/index.d.ts +2 -2
- package/types/Types.d.ts +261 -261
- package/types/Utils.d.ts +58 -58
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
# [4.2.0-beta.
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
# [4.2.0-beta.2](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.1.1-rc.1...v4.2.0-beta.2) (2023-05-24)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
@@ -17,161 +17,161 @@
|
|
|
17
17
|
|
|
18
18
|
### Features
|
|
19
19
|
|
|
20
|
-
* support main process ([89c2651](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/89c26512cc693103e2f79fdb5eebeb38eac8f2b1))
|
|
21
|
-
|
|
22
|
-
## [4.1.1-rc.1](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.1.0...v4.1.1-rc.1) (2023-02-16)
|
|
23
|
-
|
|
24
|
-
# [4.1.0](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.1-rc.2...v4.1.0) (2022-12-20)
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### Features
|
|
28
|
-
|
|
29
|
-
* support 4.1.0 ([47003ec](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/47003ec9e67064fa0df864d92bb7b68de690c9f3)), closes [#885](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/885) [#893](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/893) [#897](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/897) [#903](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/903) [#904](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/904) [#907](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/907) [#912](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/912) [#926](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/926) [#931](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/931) [#934](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/934)
|
|
30
|
-
|
|
31
|
-
# [4.1.0](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.1-rc.2...v4.1.0) (2022-12-20)
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
### Features
|
|
35
|
-
|
|
36
|
-
* support 4.1.0 ([47003ec](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/47003ec9e67064fa0df864d92bb7b68de690c9f3)), closes [#885](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/885) [#893](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/893) [#897](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/897) [#903](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/903) [#904](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/904) [#907](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/907) [#912](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/912) [#926](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/926) [#931](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/931) [#934](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/934)
|
|
37
|
-
|
|
38
|
-
# [4.1.0-rc.4](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.1.0-rc.3...v4.1.0-rc.4) (2022-12-20)
|
|
39
|
-
|
|
40
|
-
# [4.1.0-rc.3](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.1.0-rc.2...v4.1.0-rc.3) (2022-12-20)
|
|
41
|
-
|
|
42
|
-
# [4.1.0-rc.2](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.1.0-rc.1...v4.1.0-rc.2) (2022-12-20)
|
|
43
|
-
|
|
44
|
-
# [4.1.0-rc.1](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.0...v4.1.0-rc.1) (2022-12-20)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
### Bug Fixes
|
|
48
|
-
|
|
49
|
-
* `deviceCapabilityNumber` issue ([58a38ae](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/58a38ae9046750f35a90a55fe72f4f4dbacbb1b4))
|
|
50
|
-
* `getPlaybackDeviceInfo` and `getRecordingDeviceInfo` issue ([6517c6c](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/6517c6cd96539e4556ca01f3b10376c3ccdab50a))
|
|
51
|
-
* `LocalTranscoderConfiguration` json parse issue #EP-172 ([45cbfe3](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/45cbfe3c04a493a3e888afde6f4bdff898e4ea5d)), closes [#EP-172](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/EP-172)
|
|
52
|
-
* add `setDualStreamMode` method ([9f18cfc](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/9f18cfcdefbea4cb7a3c1948d0e6a0c911a5016a))
|
|
53
|
-
* c++ compile error ([598d04a](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/598d04a2c770fb56f76ecb6e3599fd1407c47f3d))
|
|
54
|
-
* js exception in callback will cause c++ crash #jira/CSD-50832 ([#931](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/931)) ([0e1aaca](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/0e1aacad103f024d4ea1a5d768a88fbbebd1911c))
|
|
55
|
-
* the event which named contains `Ex` not triggered issue (such as `onTokenPrivilegeWillExpire`) ([#892](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/892)) ([abe8b55](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/abe8b55f09c8af23cb9f578c0643d176852cbe11))
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
### Features
|
|
59
|
-
|
|
60
|
-
* add `getPlaybackDefaultDevice` and `getRecordingDefaultDevice` ([a6d5501](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/a6d5501860d1ebde57b1dc4463dfd86bbf306463))
|
|
61
|
-
* MusicContentEventHandler ([#907](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/907)) ([cd14d67](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/cd14d6726819343495cc671fad688258ab317e14))
|
|
62
|
-
* support 4.1.0 iris ([#885](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/885)) ([741f024](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/741f0242d7d23c9f92ab10dd1d37acee6a49b400))
|
|
63
|
-
|
|
64
|
-
# [4.0.0](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.0-rc.3...v4.0.0) (2022-09-28)
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
### Bug Fixes
|
|
68
|
-
|
|
69
|
-
* set windows msvc link as MT ([341c9ee](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/341c9ee600d5230ac40dd8c6b0226dfaaf96354e))
|
|
70
|
-
* some AudioFrameObserver & VideoFrameObserver issue ([58063be](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/58063be50f8156e24118b707dfe14fd28f03f405))
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
### Features
|
|
74
|
-
|
|
75
|
-
* complete,hook ([#881](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/881)) ([a9f679b](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/a9f679b73bb6896e84106a3284e49c86b8ba4927))
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
### Reverts
|
|
79
|
-
|
|
80
|
-
* iris url ([60492eb](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/60492ebccb79929a0ff206f013ffd24ba2b2e106))
|
|
81
|
-
|
|
82
|
-
# [4.0.0-rc.3](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.0-rc.2...v4.0.0-rc.3) (2022-09-14)
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
### Bug Fixes
|
|
86
|
-
|
|
87
|
-
* npm install failed ([8b04ff4](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/8b04ff49a6d7b2b5d54188bb7628bb095f629736))
|
|
88
|
-
|
|
89
|
-
# [4.0.0-rc.2](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.0-rc.1...v4.0.0-rc.2) (2022-09-13)
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
### Bug Fixes
|
|
93
|
-
|
|
94
|
-
* cross-env-shell error ([cfdf132](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/cfdf132fe983f897919c32d4513c89249d2f2826))
|
|
95
|
-
|
|
96
|
-
# 4.0.0-rc.1 (2022-09-13)
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
### Bug Fixes
|
|
100
|
-
|
|
101
|
-
* build error on windows x64 ([9331172](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/9331172b2ba2db5bf72323a23b7a2ac5b7ebeeb5))
|
|
102
|
-
* download addon version issue ([19d542c](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/19d542c7d9ceba9226ac25ad4f6a4c361d47f31b))
|
|
103
|
-
* setPlayerOptionInInt setPlayerOptionInString this issue ([268ad3b](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/268ad3ba051b15309248151e7be49a35962d8b2b))
|
|
104
|
-
* some issue about AgoraRendererManager ([3415871](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/3415871b0d5a2e93086e8e88ce50d296ab994fff))
|
|
105
|
-
* **fix localaccesspointconfiguration:** fix LocalAccessPointConfiguration ([bf9814f](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/bf9814f0316bde140a7338ecd553da50e9738208))
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
### Features
|
|
109
|
-
|
|
110
|
-
* support native 4.0.0-rc.1 ([352a5bb](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/352a5bb654fdd1ce317ebb5d1c0e5e23ecc9f330))
|
|
111
|
-
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
|
112
|
-
|
|
113
|
-
# [4.0.0-beta.3](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/compare/v4.0.0-beta.2...v4.0.0-beta.3) (2022-07-19)
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
### Bug Fixes
|
|
117
|
-
|
|
118
|
-
* build error on windows x64 ([9331172](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/9331172b2ba2db5bf72323a23b7a2ac5b7ebeeb5))
|
|
119
|
-
* some issue about AgoraRendererManager ([3415871](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/3415871b0d5a2e93086e8e88ce50d296ab994fff))
|
|
120
|
-
|
|
121
|
-
# [4.0.0-beta.2](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/compare/v4.0.0-beta.1...v4.0.0-beta.2) (2022-07-13)
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
### Bug Fixes
|
|
125
|
-
|
|
126
|
-
* download addon version issue ([19d542c](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/19d542c7d9ceba9226ac25ad4f6a4c361d47f31b))
|
|
127
|
-
|
|
128
|
-
# 4.0.0-beta.1 (2022-07-11)
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
### Bug Fixes
|
|
132
|
-
|
|
133
|
-
* **fix localaccesspointconfiguration:** fix LocalAccessPointConfiguration ([bf9814f](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/bf9814f0316bde140a7338ecd553da50e9738208))
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
### Features
|
|
137
|
-
|
|
138
|
-
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
|
139
|
-
|
|
140
|
-
## 3.8.201-alpha.706 (2022-07-05)
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
### Bug Fixes
|
|
144
|
-
|
|
145
|
-
* **fix localaccesspointconfiguration:** fix LocalAccessPointConfiguration ([bf9814f](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/bf9814f0316bde140a7338ecd553da50e9738208))
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
### Features
|
|
149
|
-
|
|
150
|
-
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
## 3.8.201-alpha.705 (2022-07-05)
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
### Features
|
|
158
|
-
|
|
159
|
-
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
## 3.8.201-alpha.629 (2022-06-30)
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
### Features
|
|
167
|
-
|
|
168
|
-
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
## 3.8.201-alpha.629 (2022-06-30)
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
### Features
|
|
176
|
-
|
|
20
|
+
* support main process ([89c2651](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/89c26512cc693103e2f79fdb5eebeb38eac8f2b1))
|
|
21
|
+
|
|
22
|
+
## [4.1.1-rc.1](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.1.0...v4.1.1-rc.1) (2023-02-16)
|
|
23
|
+
|
|
24
|
+
# [4.1.0](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.1-rc.2...v4.1.0) (2022-12-20)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* support 4.1.0 ([47003ec](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/47003ec9e67064fa0df864d92bb7b68de690c9f3)), closes [#885](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/885) [#893](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/893) [#897](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/897) [#903](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/903) [#904](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/904) [#907](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/907) [#912](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/912) [#926](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/926) [#931](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/931) [#934](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/934)
|
|
30
|
+
|
|
31
|
+
# [4.1.0](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.1-rc.2...v4.1.0) (2022-12-20)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
* support 4.1.0 ([47003ec](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/47003ec9e67064fa0df864d92bb7b68de690c9f3)), closes [#885](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/885) [#893](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/893) [#897](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/897) [#903](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/903) [#904](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/904) [#907](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/907) [#912](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/912) [#926](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/926) [#931](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/931) [#934](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/934)
|
|
37
|
+
|
|
38
|
+
# [4.1.0-rc.4](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.1.0-rc.3...v4.1.0-rc.4) (2022-12-20)
|
|
39
|
+
|
|
40
|
+
# [4.1.0-rc.3](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.1.0-rc.2...v4.1.0-rc.3) (2022-12-20)
|
|
41
|
+
|
|
42
|
+
# [4.1.0-rc.2](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.1.0-rc.1...v4.1.0-rc.2) (2022-12-20)
|
|
43
|
+
|
|
44
|
+
# [4.1.0-rc.1](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.0...v4.1.0-rc.1) (2022-12-20)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Bug Fixes
|
|
48
|
+
|
|
49
|
+
* `deviceCapabilityNumber` issue ([58a38ae](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/58a38ae9046750f35a90a55fe72f4f4dbacbb1b4))
|
|
50
|
+
* `getPlaybackDeviceInfo` and `getRecordingDeviceInfo` issue ([6517c6c](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/6517c6cd96539e4556ca01f3b10376c3ccdab50a))
|
|
51
|
+
* `LocalTranscoderConfiguration` json parse issue #EP-172 ([45cbfe3](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/45cbfe3c04a493a3e888afde6f4bdff898e4ea5d)), closes [#EP-172](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/EP-172)
|
|
52
|
+
* add `setDualStreamMode` method ([9f18cfc](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/9f18cfcdefbea4cb7a3c1948d0e6a0c911a5016a))
|
|
53
|
+
* c++ compile error ([598d04a](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/598d04a2c770fb56f76ecb6e3599fd1407c47f3d))
|
|
54
|
+
* js exception in callback will cause c++ crash #jira/CSD-50832 ([#931](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/931)) ([0e1aaca](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/0e1aacad103f024d4ea1a5d768a88fbbebd1911c))
|
|
55
|
+
* the event which named contains `Ex` not triggered issue (such as `onTokenPrivilegeWillExpire`) ([#892](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/892)) ([abe8b55](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/abe8b55f09c8af23cb9f578c0643d176852cbe11))
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Features
|
|
59
|
+
|
|
60
|
+
* add `getPlaybackDefaultDevice` and `getRecordingDefaultDevice` ([a6d5501](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/a6d5501860d1ebde57b1dc4463dfd86bbf306463))
|
|
61
|
+
* MusicContentEventHandler ([#907](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/907)) ([cd14d67](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/cd14d6726819343495cc671fad688258ab317e14))
|
|
62
|
+
* support 4.1.0 iris ([#885](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/885)) ([741f024](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/741f0242d7d23c9f92ab10dd1d37acee6a49b400))
|
|
63
|
+
|
|
64
|
+
# [4.0.0](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.0-rc.3...v4.0.0) (2022-09-28)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Bug Fixes
|
|
68
|
+
|
|
69
|
+
* set windows msvc link as MT ([341c9ee](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/341c9ee600d5230ac40dd8c6b0226dfaaf96354e))
|
|
70
|
+
* some AudioFrameObserver & VideoFrameObserver issue ([58063be](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/58063be50f8156e24118b707dfe14fd28f03f405))
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
### Features
|
|
74
|
+
|
|
75
|
+
* complete,hook ([#881](https://github.com/AgoraIO-Extensions/Electron-SDK/issues/881)) ([a9f679b](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/a9f679b73bb6896e84106a3284e49c86b8ba4927))
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
### Reverts
|
|
79
|
+
|
|
80
|
+
* iris url ([60492eb](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/60492ebccb79929a0ff206f013ffd24ba2b2e106))
|
|
81
|
+
|
|
82
|
+
# [4.0.0-rc.3](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.0-rc.2...v4.0.0-rc.3) (2022-09-14)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Bug Fixes
|
|
86
|
+
|
|
87
|
+
* npm install failed ([8b04ff4](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/8b04ff49a6d7b2b5d54188bb7628bb095f629736))
|
|
88
|
+
|
|
89
|
+
# [4.0.0-rc.2](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.0.0-rc.1...v4.0.0-rc.2) (2022-09-13)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
### Bug Fixes
|
|
93
|
+
|
|
94
|
+
* cross-env-shell error ([cfdf132](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/cfdf132fe983f897919c32d4513c89249d2f2826))
|
|
95
|
+
|
|
96
|
+
# 4.0.0-rc.1 (2022-09-13)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Bug Fixes
|
|
100
|
+
|
|
101
|
+
* build error on windows x64 ([9331172](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/9331172b2ba2db5bf72323a23b7a2ac5b7ebeeb5))
|
|
102
|
+
* download addon version issue ([19d542c](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/19d542c7d9ceba9226ac25ad4f6a4c361d47f31b))
|
|
103
|
+
* setPlayerOptionInInt setPlayerOptionInString this issue ([268ad3b](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/268ad3ba051b15309248151e7be49a35962d8b2b))
|
|
104
|
+
* some issue about AgoraRendererManager ([3415871](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/3415871b0d5a2e93086e8e88ce50d296ab994fff))
|
|
105
|
+
* **fix localaccesspointconfiguration:** fix LocalAccessPointConfiguration ([bf9814f](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/bf9814f0316bde140a7338ecd553da50e9738208))
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
### Features
|
|
109
|
+
|
|
110
|
+
* support native 4.0.0-rc.1 ([352a5bb](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/352a5bb654fdd1ce317ebb5d1c0e5e23ecc9f330))
|
|
111
|
+
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Extensions/Electron-SDK/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
|
112
|
+
|
|
113
|
+
# [4.0.0-beta.3](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/compare/v4.0.0-beta.2...v4.0.0-beta.3) (2022-07-19)
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
### Bug Fixes
|
|
117
|
+
|
|
118
|
+
* build error on windows x64 ([9331172](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/9331172b2ba2db5bf72323a23b7a2ac5b7ebeeb5))
|
|
119
|
+
* some issue about AgoraRendererManager ([3415871](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/3415871b0d5a2e93086e8e88ce50d296ab994fff))
|
|
120
|
+
|
|
121
|
+
# [4.0.0-beta.2](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/compare/v4.0.0-beta.1...v4.0.0-beta.2) (2022-07-13)
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
### Bug Fixes
|
|
125
|
+
|
|
126
|
+
* download addon version issue ([19d542c](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/19d542c7d9ceba9226ac25ad4f6a4c361d47f31b))
|
|
127
|
+
|
|
128
|
+
# 4.0.0-beta.1 (2022-07-11)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
### Bug Fixes
|
|
132
|
+
|
|
133
|
+
* **fix localaccesspointconfiguration:** fix LocalAccessPointConfiguration ([bf9814f](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/bf9814f0316bde140a7338ecd553da50e9738208))
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
### Features
|
|
137
|
+
|
|
138
|
+
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
|
139
|
+
|
|
140
|
+
## 3.8.201-alpha.706 (2022-07-05)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
### Bug Fixes
|
|
144
|
+
|
|
145
|
+
* **fix localaccesspointconfiguration:** fix LocalAccessPointConfiguration ([bf9814f](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/bf9814f0316bde140a7338ecd553da50e9738208))
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
### Features
|
|
149
|
+
|
|
150
|
+
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
## 3.8.201-alpha.705 (2022-07-05)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
### Features
|
|
158
|
+
|
|
159
|
+
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
## 3.8.201-alpha.629 (2022-06-30)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
### Features
|
|
167
|
+
|
|
168
|
+
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
## 3.8.201-alpha.629 (2022-06-30)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Features
|
|
176
|
+
|
|
177
177
|
* **add ci for changelog:** use husky conventional-changelog-cli @commitlint/config-conventional ([e1facd9](https://github.com/AgoraIO-Community/electron-agora-rtc-ng/commit/e1facd9244b6eb18e503493f9cc14af99f09938b))
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2022 Agora.io Community
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 Agora.io Community
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|