@stream-io/video-client 0.5.3 → 0.5.4
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 +7 -0
- package/dist/index.browser.es.js +2 -2
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/Call.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
### [0.5.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.5.3...@stream-io/video-client-0.5.4) (2024-01-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **ring calls:** cancel auto-drop after rejecting a call ([#1241](https://github.com/GetStream/stream-video-js/issues/1241)) ([67a2aae](https://github.com/GetStream/stream-video-js/commit/67a2aaee658cbe759fbda4d3c924f33e872cd00e))
|
|
11
|
+
|
|
5
12
|
### [0.5.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.5.2...@stream-io/video-client-0.5.3) (2023-12-22)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -11330,10 +11330,10 @@ class Call {
|
|
|
11330
11330
|
this.sfuClient?.close();
|
|
11331
11331
|
this.sfuClient = undefined;
|
|
11332
11332
|
this.dispatcher.offAll();
|
|
11333
|
+
this.state.setCallingState(CallingState.LEFT);
|
|
11333
11334
|
// Call all leave call hooks, e.g. to clean up global event handlers
|
|
11334
11335
|
this.leaveCallHooks.forEach((hook) => hook());
|
|
11335
11336
|
this.clientStore.unregisterCall(this);
|
|
11336
|
-
this.state.setCallingState(CallingState.LEFT);
|
|
11337
11337
|
this.camera.removeSubscriptions();
|
|
11338
11338
|
this.microphone.removeSubscriptions();
|
|
11339
11339
|
this.screenShare.removeSubscriptions();
|
|
@@ -14232,7 +14232,7 @@ class StreamClient {
|
|
|
14232
14232
|
});
|
|
14233
14233
|
};
|
|
14234
14234
|
this.getUserAgent = () => {
|
|
14235
|
-
const version = "0.5.
|
|
14235
|
+
const version = "0.5.4" ;
|
|
14236
14236
|
return (this.userAgent ||
|
|
14237
14237
|
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
|
|
14238
14238
|
};
|