@livedesk/client 0.1.102 → 0.1.103
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/fast/linux-x64/livedesk-client-fast.dll +0 -0
- package/fast/linux-x64/livedesk-client-fast.pdb +0 -0
- package/fast/linux-x64/livedesk-raw-capture-helper.mjs +2 -2
- package/fast/osx-arm64/livedesk-client-fast.dll +0 -0
- package/fast/osx-arm64/livedesk-client-fast.pdb +0 -0
- package/fast/osx-arm64/livedesk-raw-capture-helper.mjs +2 -2
- package/fast/osx-x64/livedesk-client-fast.dll +0 -0
- package/fast/osx-x64/livedesk-client-fast.pdb +0 -0
- package/fast/osx-x64/livedesk-raw-capture-helper.mjs +2 -2
- package/fast/win-x64/livedesk-client-fast.dll +0 -0
- package/fast/win-x64/livedesk-client-fast.pdb +0 -0
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
@@ -68,8 +68,8 @@ for await (const line of input) {
|
|
|
68
68
|
try {
|
|
69
69
|
request = JSON.parse(line);
|
|
70
70
|
const id = Number.isSafeInteger(Number(request.id)) ? Number(request.id) : 0;
|
|
71
|
-
const maxWidth = clampInteger(request.maxWidth, 1,
|
|
72
|
-
const maxHeight = clampInteger(request.maxHeight, 1,
|
|
71
|
+
const maxWidth = clampInteger(request.maxWidth, 1, 480, 320);
|
|
72
|
+
const maxHeight = clampInteger(request.maxHeight, 1, 270, 180);
|
|
73
73
|
const { monitor, selectedIndex, monitorCount } = pickMonitor(request.monitorIndex);
|
|
74
74
|
const captureStartedAt = performance.now();
|
|
75
75
|
const image = await monitor.captureImage();
|
|
Binary file
|
|
Binary file
|
|
@@ -68,8 +68,8 @@ for await (const line of input) {
|
|
|
68
68
|
try {
|
|
69
69
|
request = JSON.parse(line);
|
|
70
70
|
const id = Number.isSafeInteger(Number(request.id)) ? Number(request.id) : 0;
|
|
71
|
-
const maxWidth = clampInteger(request.maxWidth, 1,
|
|
72
|
-
const maxHeight = clampInteger(request.maxHeight, 1,
|
|
71
|
+
const maxWidth = clampInteger(request.maxWidth, 1, 480, 320);
|
|
72
|
+
const maxHeight = clampInteger(request.maxHeight, 1, 270, 180);
|
|
73
73
|
const { monitor, selectedIndex, monitorCount } = pickMonitor(request.monitorIndex);
|
|
74
74
|
const captureStartedAt = performance.now();
|
|
75
75
|
const image = await monitor.captureImage();
|
|
Binary file
|
|
Binary file
|
|
@@ -68,8 +68,8 @@ for await (const line of input) {
|
|
|
68
68
|
try {
|
|
69
69
|
request = JSON.parse(line);
|
|
70
70
|
const id = Number.isSafeInteger(Number(request.id)) ? Number(request.id) : 0;
|
|
71
|
-
const maxWidth = clampInteger(request.maxWidth, 1,
|
|
72
|
-
const maxHeight = clampInteger(request.maxHeight, 1,
|
|
71
|
+
const maxWidth = clampInteger(request.maxWidth, 1, 480, 320);
|
|
72
|
+
const maxHeight = clampInteger(request.maxHeight, 1, 270, 180);
|
|
73
73
|
const { monitor, selectedIndex, monitorCount } = pickMonitor(request.monitorIndex);
|
|
74
74
|
const captureStartedAt = performance.now();
|
|
75
75
|
const image = await monitor.captureImage();
|
|
Binary file
|
|
Binary file
|