@stream-io/video-react-sdk 1.13.0 → 1.13.1
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
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.13.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.13.0...@stream-io/video-react-sdk-1.13.1) (2025-04-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* apply muted state from persisted device preferences ([#1741](https://github.com/GetStream/stream-video-js/issues/1741)) ([75e7b66](https://github.com/GetStream/stream-video-js/commit/75e7b66d9a2ae01a157b8969cab5c8ff8a43d84d)), closes [#1736](https://github.com/GetStream/stream-video-js/issues/1736)
|
|
11
|
+
|
|
5
12
|
## [1.13.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.12.11...@stream-io/video-react-sdk-1.13.0) (2025-04-01)
|
|
6
13
|
|
|
7
14
|
### Dependency Updates
|
package/dist/index.cjs.js
CHANGED
|
@@ -182,6 +182,7 @@ const selectDevice = async (manager, preference, devices) => {
|
|
|
182
182
|
devices.find((d) => d.label === p.selectedDeviceLabel);
|
|
183
183
|
if (device) {
|
|
184
184
|
await manager.select(device.deviceId);
|
|
185
|
+
await manager[p.muted ? 'disable' : 'enable']?.();
|
|
185
186
|
return;
|
|
186
187
|
}
|
|
187
188
|
}
|
|
@@ -2668,7 +2669,7 @@ const LivestreamPlayer = (props) => {
|
|
|
2668
2669
|
return (jsxRuntime.jsx(StreamCall, { call: call, children: jsxRuntime.jsx(LivestreamLayout, { ...layoutProps }) }));
|
|
2669
2670
|
};
|
|
2670
2671
|
|
|
2671
|
-
const [major, minor, patch] = ("1.13.
|
|
2672
|
+
const [major, minor, patch] = ("1.13.1").split('.');
|
|
2672
2673
|
videoClient.setSdkInfo({
|
|
2673
2674
|
type: videoClient.SfuModels.SdkType.REACT,
|
|
2674
2675
|
major,
|