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.
Files changed (236) hide show
  1. package/CHANGELOG.md +160 -160
  2. package/LICENSE +21 -21
  3. package/README.md +143 -143
  4. package/gulpfile.js +43 -43
  5. package/js/AgoraSdk.js +62 -62
  6. package/js/Private/AgoraBase.js +4573 -4573
  7. package/js/Private/AgoraMediaBase.js +968 -968
  8. package/js/Private/AgoraMediaPlayerTypes.js +422 -422
  9. package/js/Private/IAgoraLog.js +86 -86
  10. package/js/Private/IAgoraMediaEngine.js +32 -32
  11. package/js/Private/IAgoraMediaPlayer.js +16 -16
  12. package/js/Private/IAgoraMediaPlayerSource.js +3 -3
  13. package/js/Private/IAgoraMediaRecorder.js +10 -10
  14. package/js/Private/IAgoraMediaStreamingSource.js +84 -84
  15. package/js/Private/IAgoraMusicContentCenter.js +239 -239
  16. package/js/Private/IAgoraRhythmPlayer.js +70 -70
  17. package/js/Private/IAgoraRtcEngine.js +1805 -1805
  18. package/js/Private/IAgoraRtcEngineEx.js +26 -26
  19. package/js/Private/IAgoraSpatialAudio.js +74 -74
  20. package/js/Private/IAudioDeviceManager.js +20 -20
  21. package/js/Private/extension/AgoraBaseExtension.js +2 -2
  22. package/js/Private/extension/AgoraMediaBaseExtension.js +2 -2
  23. package/js/Private/extension/AgoraMediaPlayerTypesExtension.js +2 -2
  24. package/js/Private/extension/IAgoraLogExtension.js +2 -2
  25. package/js/Private/extension/IAgoraMediaEngineExtension.js +2 -2
  26. package/js/Private/extension/IAgoraMediaPlayerExtension.js +2 -2
  27. package/js/Private/extension/IAgoraMediaPlayerSourceExtension.js +2 -2
  28. package/js/Private/extension/IAgoraMediaRecorderExtension.js +2 -2
  29. package/js/Private/extension/IAgoraMusicContentCenterExtension.js +2 -2
  30. package/js/Private/extension/IAgoraRhythmPlayerExtension.js +2 -2
  31. package/js/Private/extension/IAgoraRtcEngineExExtension.js +2 -2
  32. package/js/Private/extension/IAgoraRtcEngineExtension.js +2 -2
  33. package/js/Private/extension/IAgoraSpatialAudioExtension.js +2 -2
  34. package/js/Private/extension/IAudioDeviceManagerExtension.js +2 -2
  35. package/js/Private/impl/AgoraBaseImpl.js +23 -23
  36. package/js/Private/impl/AgoraMediaBaseImpl.js +118 -118
  37. package/js/Private/impl/IAgoraMediaEngineImpl.js +287 -287
  38. package/js/Private/impl/IAgoraMediaPlayerImpl.js +932 -932
  39. package/js/Private/impl/IAgoraMediaPlayerSourceImpl.js +63 -63
  40. package/js/Private/impl/IAgoraMediaRecorderImpl.js +47 -47
  41. package/js/Private/impl/IAgoraMusicContentCenterImpl.js +353 -353
  42. package/js/Private/impl/IAgoraRtcEngineExImpl.js +945 -945
  43. package/js/Private/impl/IAgoraRtcEngineImpl.js +4742 -4742
  44. package/js/Private/impl/IAgoraSpatialAudioImpl.js +362 -362
  45. package/js/Private/impl/IAudioDeviceManagerImpl.js +375 -375
  46. package/js/Private/internal/AudioDeviceManagerInternal.js +44 -44
  47. package/js/Private/internal/IrisApiEngine.js +376 -376
  48. package/js/Private/internal/LocalSpatialAudioEngineInternal.js +46 -46
  49. package/js/Private/internal/MediaEngineInternal.js +103 -103
  50. package/js/Private/internal/MediaPlayerInternal.js +198 -198
  51. package/js/Private/internal/MediaRecorderInternal.js +71 -71
  52. package/js/Private/internal/MusicContentCenterInternal.js +146 -146
  53. package/js/Private/internal/RtcEngineExInternal.js +407 -407
  54. package/js/Private/ti/AgoraBase-ti.js +40 -40
  55. package/js/Private/ti/AgoraMediaBase-ti.js +71 -71
  56. package/js/Private/ti/AgoraMediaPlayerTypes-ti.js +5 -5
  57. package/js/Private/ti/IAgoraLog-ti.js +5 -5
  58. package/js/Private/ti/IAgoraMediaEngine-ti.js +5 -5
  59. package/js/Private/ti/IAgoraMediaPlayer-ti.js +38 -38
  60. package/js/Private/ti/IAgoraMediaPlayerSource-ti.js +48 -48
  61. package/js/Private/ti/IAgoraMediaRecorder-ti.js +5 -5
  62. package/js/Private/ti/IAgoraMediaStreamingSource-ti.js +5 -5
  63. package/js/Private/ti/IAgoraMusicContentCenter-ti.js +41 -41
  64. package/js/Private/ti/IAgoraRhythmPlayer-ti.js +5 -5
  65. package/js/Private/ti/IAgoraRtcEngine-ti.js +139 -139
  66. package/js/Private/ti/IAgoraRtcEngineEx-ti.js +5 -5
  67. package/js/Private/ti/IAgoraSpatialAudio-ti.js +5 -5
  68. package/js/Private/ti/IAudioDeviceManager-ti.js +5 -5
  69. package/js/Renderer/AgoraView.js +128 -128
  70. package/js/Renderer/IRenderer.js +40 -40
  71. package/js/Renderer/IRendererManager.js +9 -9
  72. package/js/Renderer/RendererManager.js +479 -479
  73. package/js/Renderer/WebGLRenderer/index.js +469 -469
  74. package/js/Renderer/WebGLRenderer/webgl-utils.js +1337 -1337
  75. package/js/Renderer/YUVCanvasRenderer/index.js +192 -192
  76. package/js/Renderer/index.js +18 -18
  77. package/js/Types.js +17 -17
  78. package/js/Utils.js +168 -168
  79. package/package.json +140 -140
  80. package/scripts/bootstrap.js +29 -29
  81. package/scripts/build.js +37 -37
  82. package/scripts/buildJS.js +14 -14
  83. package/scripts/clean.js +33 -33
  84. package/scripts/downloadPrebuild.js +99 -99
  85. package/scripts/getConfig.js +73 -73
  86. package/scripts/logger.js +32 -32
  87. package/scripts/synclib.js +43 -43
  88. package/scripts/util.js +18 -18
  89. package/scripts/zipBuild.js +17 -17
  90. package/ts/AgoraSdk.ts +52 -52
  91. package/ts/Private/AgoraBase.ts +4626 -4626
  92. package/ts/Private/AgoraMediaBase.ts +1203 -1203
  93. package/ts/Private/AgoraMediaPlayerTypes.ts +418 -418
  94. package/ts/Private/IAgoraLog.ts +82 -82
  95. package/ts/Private/IAgoraMediaEngine.ts +256 -256
  96. package/ts/Private/IAgoraMediaPlayer.ts +625 -625
  97. package/ts/Private/IAgoraMediaPlayerSource.ts +107 -107
  98. package/ts/Private/IAgoraMediaRecorder.ts +25 -25
  99. package/ts/Private/IAgoraMediaStreamingSource.ts +80 -80
  100. package/ts/Private/IAgoraMusicContentCenter.ts +398 -398
  101. package/ts/Private/IAgoraRhythmPlayer.ts +66 -66
  102. package/ts/Private/IAgoraRtcEngine.ts +6095 -6095
  103. package/ts/Private/IAgoraRtcEngineEx.ts +775 -775
  104. package/ts/Private/IAgoraSpatialAudio.ts +303 -303
  105. package/ts/Private/IAudioDeviceManager.ts +267 -267
  106. package/ts/Private/extension/AgoraBaseExtension.ts +1 -1
  107. package/ts/Private/extension/AgoraMediaBaseExtension.ts +1 -1
  108. package/ts/Private/extension/AgoraMediaPlayerTypesExtension.ts +1 -1
  109. package/ts/Private/extension/IAgoraLogExtension.ts +1 -1
  110. package/ts/Private/extension/IAgoraMediaEngineExtension.ts +60 -60
  111. package/ts/Private/extension/IAgoraMediaPlayerExtension.ts +64 -64
  112. package/ts/Private/extension/IAgoraMediaPlayerSourceExtension.ts +1 -1
  113. package/ts/Private/extension/IAgoraMediaRecorderExtension.ts +59 -59
  114. package/ts/Private/extension/IAgoraMusicContentCenterExtension.ts +34 -34
  115. package/ts/Private/extension/IAgoraRhythmPlayerExtension.ts +1 -1
  116. package/ts/Private/extension/IAgoraRtcEngineExExtension.ts +1 -1
  117. package/ts/Private/extension/IAgoraRtcEngineExtension.ts +64 -64
  118. package/ts/Private/extension/IAgoraSpatialAudioExtension.ts +1 -1
  119. package/ts/Private/extension/IAudioDeviceManagerExtension.ts +1 -1
  120. package/ts/Private/impl/AgoraBaseImpl.ts +39 -39
  121. package/ts/Private/impl/AgoraMediaBaseImpl.ts +198 -198
  122. package/ts/Private/impl/IAgoraMediaEngineImpl.ts +430 -430
  123. package/ts/Private/impl/IAgoraMediaPlayerImpl.ts +1140 -1140
  124. package/ts/Private/impl/IAgoraMediaPlayerSourceImpl.ts +79 -79
  125. package/ts/Private/impl/IAgoraMediaRecorderImpl.ts +59 -59
  126. package/ts/Private/impl/IAgoraMusicContentCenterImpl.ts +474 -474
  127. package/ts/Private/impl/IAgoraRtcEngineExImpl.ts +1518 -1518
  128. package/ts/Private/impl/IAgoraRtcEngineImpl.ts +6770 -6770
  129. package/ts/Private/impl/IAgoraSpatialAudioImpl.ts +502 -502
  130. package/ts/Private/impl/IAudioDeviceManagerImpl.ts +443 -443
  131. package/ts/Private/internal/AudioDeviceManagerInternal.ts +46 -46
  132. package/ts/Private/internal/IrisApiEngine.ts +532 -532
  133. package/ts/Private/internal/LocalSpatialAudioEngineInternal.ts +88 -88
  134. package/ts/Private/internal/MediaEngineInternal.ts +160 -160
  135. package/ts/Private/internal/MediaPlayerInternal.ts +334 -334
  136. package/ts/Private/internal/MediaRecorderInternal.ts +100 -100
  137. package/ts/Private/internal/MusicContentCenterInternal.ts +209 -209
  138. package/ts/Private/internal/RtcEngineExInternal.ts +711 -711
  139. package/ts/Private/ti/AgoraBase-ti.ts +16 -16
  140. package/ts/Private/ti/AgoraMediaBase-ti.ts +53 -53
  141. package/ts/Private/ti/AgoraMediaPlayerTypes-ti.ts +11 -11
  142. package/ts/Private/ti/IAgoraLog-ti.ts +11 -11
  143. package/ts/Private/ti/IAgoraMediaEngine-ti.ts +11 -11
  144. package/ts/Private/ti/IAgoraMediaPlayer-ti.ts +14 -14
  145. package/ts/Private/ti/IAgoraMediaPlayerSource-ti.ts +24 -24
  146. package/ts/Private/ti/IAgoraMediaRecorder-ti.ts +11 -11
  147. package/ts/Private/ti/IAgoraMediaStreamingSource-ti.ts +11 -11
  148. package/ts/Private/ti/IAgoraMusicContentCenter-ti.ts +17 -17
  149. package/ts/Private/ti/IAgoraRhythmPlayer-ti.ts +11 -11
  150. package/ts/Private/ti/IAgoraRtcEngine-ti.ts +117 -117
  151. package/ts/Private/ti/IAgoraRtcEngineEx-ti.ts +11 -11
  152. package/ts/Private/ti/IAgoraSpatialAudio-ti.ts +11 -11
  153. package/ts/Private/ti/IAudioDeviceManager-ti.ts +11 -11
  154. package/ts/Renderer/AgoraView.ts +196 -196
  155. package/ts/Renderer/IRenderer.ts +55 -55
  156. package/ts/Renderer/IRendererManager.ts +35 -35
  157. package/ts/Renderer/RendererManager.ts +628 -628
  158. package/ts/Renderer/WebGLRenderer/index.ts +597 -597
  159. package/ts/Renderer/WebGLRenderer/webgl-utils.js +1510 -1510
  160. package/ts/Renderer/YUVCanvasRenderer/index.ts +243 -243
  161. package/ts/Renderer/index.ts +2 -2
  162. package/ts/Types.ts +303 -303
  163. package/ts/Utils.ts +200 -200
  164. package/types/AgoraSdk.d.ts +37 -37
  165. package/types/Private/AgoraBase.d.ts +4454 -4454
  166. package/types/Private/AgoraMediaBase.d.ts +1116 -1116
  167. package/types/Private/AgoraMediaPlayerTypes.d.ts +408 -408
  168. package/types/Private/IAgoraLog.d.ts +80 -80
  169. package/types/Private/IAgoraMediaEngine.d.ts +193 -193
  170. package/types/Private/IAgoraMediaPlayer.d.ts +532 -532
  171. package/types/Private/IAgoraMediaPlayerSource.d.ts +82 -82
  172. package/types/Private/IAgoraMediaRecorder.d.ts +19 -19
  173. package/types/Private/IAgoraMediaStreamingSource.d.ts +41 -41
  174. package/types/Private/IAgoraMusicContentCenter.d.ts +335 -335
  175. package/types/Private/IAgoraRhythmPlayer.d.ts +64 -64
  176. package/types/Private/IAgoraRtcEngine.d.ts +4969 -4969
  177. package/types/Private/IAgoraRtcEngineEx.d.ts +549 -549
  178. package/types/Private/IAgoraSpatialAudio.d.ts +248 -248
  179. package/types/Private/IAudioDeviceManager.d.ts +236 -236
  180. package/types/Private/extension/AgoraBaseExtension.d.ts +1 -1
  181. package/types/Private/extension/AgoraMediaBaseExtension.d.ts +1 -1
  182. package/types/Private/extension/AgoraMediaPlayerTypesExtension.d.ts +1 -1
  183. package/types/Private/extension/IAgoraLogExtension.d.ts +1 -1
  184. package/types/Private/extension/IAgoraMediaEngineExtension.d.ts +39 -39
  185. package/types/Private/extension/IAgoraMediaPlayerExtension.d.ts +45 -45
  186. package/types/Private/extension/IAgoraMediaPlayerSourceExtension.d.ts +1 -1
  187. package/types/Private/extension/IAgoraMediaRecorderExtension.d.ts +43 -43
  188. package/types/Private/extension/IAgoraMusicContentCenterExtension.d.ts +19 -19
  189. package/types/Private/extension/IAgoraRhythmPlayerExtension.d.ts +1 -1
  190. package/types/Private/extension/IAgoraRtcEngineExExtension.d.ts +1 -1
  191. package/types/Private/extension/IAgoraRtcEngineExtension.d.ts +41 -41
  192. package/types/Private/extension/IAgoraSpatialAudioExtension.d.ts +1 -1
  193. package/types/Private/extension/IAudioDeviceManagerExtension.d.ts +1 -1
  194. package/types/Private/impl/AgoraBaseImpl.d.ts +2 -2
  195. package/types/Private/impl/AgoraMediaBaseImpl.d.ts +8 -8
  196. package/types/Private/impl/IAgoraMediaEngineImpl.d.ts +39 -39
  197. package/types/Private/impl/IAgoraMediaPlayerImpl.d.ts +140 -140
  198. package/types/Private/impl/IAgoraMediaPlayerSourceImpl.d.ts +2 -2
  199. package/types/Private/impl/IAgoraMediaRecorderImpl.d.ts +10 -10
  200. package/types/Private/impl/IAgoraMusicContentCenterImpl.d.ts +58 -58
  201. package/types/Private/impl/IAgoraRtcEngineExImpl.d.ts +105 -105
  202. package/types/Private/impl/IAgoraRtcEngineImpl.d.ts +569 -569
  203. package/types/Private/impl/IAgoraSpatialAudioImpl.d.ts +48 -48
  204. package/types/Private/impl/IAudioDeviceManagerImpl.d.ts +64 -64
  205. package/types/Private/internal/AudioDeviceManagerInternal.d.ts +8 -8
  206. package/types/Private/internal/IrisApiEngine.d.ts +62 -62
  207. package/types/Private/internal/LocalSpatialAudioEngineInternal.d.ts +18 -18
  208. package/types/Private/internal/MediaEngineInternal.d.ts +19 -19
  209. package/types/Private/internal/MediaPlayerInternal.d.ts +31 -31
  210. package/types/Private/internal/MediaRecorderInternal.d.ts +15 -15
  211. package/types/Private/internal/MusicContentCenterInternal.d.ts +29 -29
  212. package/types/Private/internal/RtcEngineExInternal.d.ts +77 -77
  213. package/types/Private/ti/AgoraBase-ti.d.ts +7 -7
  214. package/types/Private/ti/AgoraMediaBase-ti.d.ts +13 -13
  215. package/types/Private/ti/AgoraMediaPlayerTypes-ti.d.ts +6 -6
  216. package/types/Private/ti/IAgoraLog-ti.d.ts +6 -6
  217. package/types/Private/ti/IAgoraMediaEngine-ti.d.ts +6 -6
  218. package/types/Private/ti/IAgoraMediaPlayer-ti.d.ts +7 -7
  219. package/types/Private/ti/IAgoraMediaPlayerSource-ti.d.ts +7 -7
  220. package/types/Private/ti/IAgoraMediaRecorder-ti.d.ts +6 -6
  221. package/types/Private/ti/IAgoraMediaStreamingSource-ti.d.ts +6 -6
  222. package/types/Private/ti/IAgoraMusicContentCenter-ti.d.ts +7 -7
  223. package/types/Private/ti/IAgoraRhythmPlayer-ti.d.ts +6 -6
  224. package/types/Private/ti/IAgoraRtcEngine-ti.d.ts +9 -9
  225. package/types/Private/ti/IAgoraRtcEngineEx-ti.d.ts +6 -6
  226. package/types/Private/ti/IAgoraSpatialAudio-ti.d.ts +6 -6
  227. package/types/Private/ti/IAudioDeviceManager-ti.d.ts +6 -6
  228. package/types/Renderer/AgoraView.d.ts +69 -69
  229. package/types/Renderer/IRenderer.d.ts +21 -21
  230. package/types/Renderer/IRendererManager.d.ts +17 -17
  231. package/types/Renderer/RendererManager.d.ts +153 -153
  232. package/types/Renderer/WebGLRenderer/index.d.ts +48 -48
  233. package/types/Renderer/YUVCanvasRenderer/index.d.ts +15 -15
  234. package/types/Renderer/index.d.ts +2 -2
  235. package/types/Types.d.ts +261 -261
  236. package/types/Utils.d.ts +58 -58
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
-
2
-
3
- # [4.2.0-beta.1](https://github.com/AgoraIO-Extensions/Electron-SDK/compare/v4.1.1-rc.1...v4.2.0-beta.1) (2023-05-24)
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.