@signalapp/ringrtc 2.62.0 → 2.63.0
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/dist/acknowledgments.md +2 -2
- package/dist/ringrtc/Service.js +9 -10
- package/package.json +2 -2
package/dist/acknowledgments.md
CHANGED
|
@@ -669,7 +669,7 @@ For more information on this, and how to apply and follow the GNU AGPL, see
|
|
|
669
669
|
|
|
670
670
|
```
|
|
671
671
|
|
|
672
|
-
## libsignal-account-keys 0.1.0, libsignal-core 0.1.0, mrp 2.
|
|
672
|
+
## libsignal-account-keys 0.1.0, libsignal-core 0.1.0, mrp 2.63.0, protobuf 2.63.0, ringrtc 2.63.0, regex-aot 0.1.0, partial-default-derive 0.1.0, partial-default 0.1.0
|
|
673
673
|
|
|
674
674
|
```
|
|
675
675
|
GNU AFFERO GENERAL PUBLIC LICENSE
|
|
@@ -1764,7 +1764,7 @@ THIS SOFTWARE.
|
|
|
1764
1764
|
|
|
1765
1765
|
```
|
|
1766
1766
|
|
|
1767
|
-
## cubeb-core 0.
|
|
1767
|
+
## cubeb-core 0.34.0, cubeb-sys 0.34.0, cubeb 0.34.0
|
|
1768
1768
|
|
|
1769
1769
|
```
|
|
1770
1770
|
Copyright © 2017 Mozilla Foundation
|
package/dist/ringrtc/Service.js
CHANGED
|
@@ -1295,16 +1295,15 @@ class Call {
|
|
|
1295
1295
|
}
|
|
1296
1296
|
}
|
|
1297
1297
|
else if (state === CallState.Ended) {
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
}
|
|
1298
|
+
sillyDeadlockProtection(() => {
|
|
1299
|
+
this._callManager.setOutgoingAudioEnabled(false);
|
|
1300
|
+
this._callManager.setOutgoingVideoEnabled(false);
|
|
1301
|
+
this._callManager.setMicrophoneWarmupEnabled(false);
|
|
1302
|
+
});
|
|
1303
|
+
this._outgoingAudioEnabled = false;
|
|
1304
|
+
this._outgoingVideoEnabled = false;
|
|
1305
|
+
this._outgoingVideoIsScreenShare = false;
|
|
1306
|
+
this._mediaSessionStarted = false;
|
|
1308
1307
|
}
|
|
1309
1308
|
if (this.handleStateChanged) {
|
|
1310
1309
|
this.handleStateChanged();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signalapp/ringrtc",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.63.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/signalapp/ringrtc.git",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"config": {
|
|
35
35
|
"prebuildUrl": "https://build-artifacts.signal.org/libraries/ringrtc-desktop-build-v${npm_package_version}.tar.gz",
|
|
36
|
-
"prebuildChecksum": "
|
|
36
|
+
"prebuildChecksum": "24400f4c49a2456e4a12b03b7790d7b898a1921761c0eeec64e986896a65b219"
|
|
37
37
|
},
|
|
38
38
|
"author": "",
|
|
39
39
|
"license": "AGPL-3.0-only",
|