@stream-io/video-client 0.5.9 → 0.5.10
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/README.md +1 -1
- package/dist/index.browser.es.js +3 -3
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/rtc/Publisher.ts +2 -2
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.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.5.9...@stream-io/video-client-0.5.10) (2024-02-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **client:** do not set h264 as preference for iphone ([a014ab0](https://github.com/GetStream/stream-video-js/commit/a014ab0e5e2907d39fac45079d64d12997e2a63e))
|
|
11
|
+
|
|
5
12
|
### [0.5.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.5.8...@stream-io/video-client-0.5.9) (2024-02-12)
|
|
6
13
|
|
|
7
14
|
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Official JavaScript SDK and Low-Level Client for [Stream Video](https://getstream.io/video/
|
|
1
|
+
# Official JavaScript SDK and Low-Level Client for [Stream Video](https://getstream.io/video/sdk/javascript/)
|
|
2
2
|
|
|
3
3
|
<img src="../../.readme-assets/Github-Graphic-JS.jpg" alt="Stream Video for JavaScript Header image" style="box-shadow: 0 3px 10px rgb(0 0 0 / 0.2); border-radius: 1rem" />
|
|
4
4
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -7662,10 +7662,10 @@ class Publisher {
|
|
|
7662
7662
|
if (!preferredCodec && trackType === TrackType.VIDEO) {
|
|
7663
7663
|
if (isReactNative()) {
|
|
7664
7664
|
const osName = getOSInfo()?.name.toLowerCase();
|
|
7665
|
-
if (osName === '
|
|
7665
|
+
if (osName === 'ipados') {
|
|
7666
7666
|
// in ipads it was noticed that if vp8 codec is used
|
|
7667
7667
|
// then the bytes sent is 0 in the outbound-rtp
|
|
7668
|
-
// so we are forcing h264 codec for ipads
|
|
7668
|
+
// so we are forcing h264 codec for ipads
|
|
7669
7669
|
preferredCodec = 'H264';
|
|
7670
7670
|
}
|
|
7671
7671
|
else if (osName === 'android') {
|
|
@@ -14257,7 +14257,7 @@ class StreamClient {
|
|
|
14257
14257
|
});
|
|
14258
14258
|
};
|
|
14259
14259
|
this.getUserAgent = () => {
|
|
14260
|
-
const version = "0.5.
|
|
14260
|
+
const version = "0.5.10" ;
|
|
14261
14261
|
return (this.userAgent ||
|
|
14262
14262
|
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
|
|
14263
14263
|
};
|