livedesk 0.1.366 → 0.1.367
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/hub/src/server.js +7 -4
- package/package.json +5 -5
package/hub/src/server.js
CHANGED
|
@@ -1756,10 +1756,13 @@ function buildRemoteFrameBinaryPacket(frameEvent, diagnostics = {}) {
|
|
|
1756
1756
|
kind: frameEvent.kind || 'live',
|
|
1757
1757
|
deviceId: frameEvent.deviceId || frame.deviceId || '',
|
|
1758
1758
|
frameSeq: Number(frame.frameSeq || 0) || 0,
|
|
1759
|
-
streamFrameSeq: Number(frame.streamFrameSeq || 0) || 0,
|
|
1760
|
-
streamId: frame.streamId || '',
|
|
1761
|
-
commandId: frame.commandId || '',
|
|
1762
|
-
|
|
1759
|
+
streamFrameSeq: Number(frame.streamFrameSeq || 0) || 0,
|
|
1760
|
+
streamId: frame.streamId || '',
|
|
1761
|
+
commandId: frame.commandId || '',
|
|
1762
|
+
sessionId: frame.sessionId || '',
|
|
1763
|
+
captureGeneration: Number(frame.captureGeneration || 0) || 0,
|
|
1764
|
+
streamPurpose: frame.streamPurpose || '',
|
|
1765
|
+
width: Number(frame.width || 0) || 0,
|
|
1763
1766
|
height: Number(frame.height || 0) || 0,
|
|
1764
1767
|
sourceWidth: Number(frame.sourceWidth || 0) || 0,
|
|
1765
1768
|
sourceHeight: Number(frame.sourceHeight || 0) || 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "livedesk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.367",
|
|
4
4
|
"buildFlavor": "production",
|
|
5
5
|
"description": "LiveDesk Hub and client launcher",
|
|
6
6
|
"type": "module",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"ws": "^8.18.3"
|
|
49
49
|
},
|
|
50
50
|
"optionalDependencies": {
|
|
51
|
-
"@livedesk/fast-linux-x64": "0.1.
|
|
52
|
-
"@livedesk/fast-osx-arm64": "0.1.
|
|
53
|
-
"@livedesk/fast-osx-x64": "0.1.
|
|
54
|
-
"@livedesk/fast-win-x64": "0.1.
|
|
51
|
+
"@livedesk/fast-linux-x64": "0.1.367",
|
|
52
|
+
"@livedesk/fast-osx-arm64": "0.1.367",
|
|
53
|
+
"@livedesk/fast-osx-x64": "0.1.367",
|
|
54
|
+
"@livedesk/fast-win-x64": "0.1.367"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|