livedesk 0.1.612 → 0.1.613

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livedesk/client",
3
- "version": "0.1.262",
3
+ "version": "0.1.263",
4
4
  "description": "VuvoDesk local remote client",
5
5
  "type": "module",
6
6
  "bin": {
@@ -42,10 +42,10 @@
42
42
  "ws": "^8.18.3"
43
43
  },
44
44
  "optionalDependencies": {
45
- "@livedesk/fast-linux-x64": "0.1.458",
46
- "@livedesk/fast-osx-arm64": "0.1.458",
47
- "@livedesk/fast-osx-x64": "0.1.458",
48
- "@livedesk/fast-win-x64": "0.1.458"
45
+ "@livedesk/fast-linux-x64": "0.1.459",
46
+ "@livedesk/fast-osx-arm64": "0.1.459",
47
+ "@livedesk/fast-osx-x64": "0.1.459",
48
+ "@livedesk/fast-win-x64": "0.1.459"
49
49
  },
50
50
  "publishConfig": {
51
51
  "access": "public"
package/hub/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livedesk/hub",
3
- "version": "0.1.53",
3
+ "version": "0.1.54",
4
4
  "description": "VuvoDesk local Hub API and browser frame bridge",
5
5
  "type": "module",
6
6
  "main": "src/server.js",
@@ -1334,9 +1334,10 @@ function normalizeRemoteInputEvent(value = {}) {
1334
1334
  // input must prove the exact monitor owned by its capture generation.
1335
1335
  monitorIndex,
1336
1336
  normalizedX: Number.isFinite(normalizedX) ? Math.max(0, Math.min(1, normalizedX)) : undefined,
1337
- normalizedY: Number.isFinite(normalizedY) ? Math.max(0, Math.min(1, normalizedY)) : undefined,
1338
- button: safeString(input.button || input.Button, 24),
1339
- deltaX: Number.isFinite(deltaX) ? Math.max(-4096, Math.min(4096, deltaX)) : 0,
1337
+ normalizedY: Number.isFinite(normalizedY) ? Math.max(0, Math.min(1, normalizedY)) : undefined,
1338
+ button: safeString(input.button || input.Button, 24),
1339
+ inputSource: safeString(input.inputSource || input.InputSource, 48).toLowerCase(),
1340
+ deltaX: Number.isFinite(deltaX) ? Math.max(-4096, Math.min(4096, deltaX)) : 0,
1340
1341
  deltaY: Number.isFinite(deltaY) ? Math.max(-4096, Math.min(4096, deltaY)) : 0,
1341
1342
  key,
1342
1343
  code,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "livedesk",
3
- "version": "0.1.612",
4
- "livedeskClientVersion": "0.1.262",
3
+ "version": "0.1.613",
4
+ "livedeskClientVersion": "0.1.263",
5
5
  "buildFlavor": "production",
6
6
  "description": "VuvoDesk Hub and client launcher",
7
7
  "type": "module",
@@ -51,10 +51,10 @@
51
51
  "ws": "^8.18.3"
52
52
  },
53
53
  "optionalDependencies": {
54
- "@livedesk/fast-linux-x64": "0.1.458",
55
- "@livedesk/fast-osx-arm64": "0.1.458",
56
- "@livedesk/fast-osx-x64": "0.1.458",
57
- "@livedesk/fast-win-x64": "0.1.458"
54
+ "@livedesk/fast-linux-x64": "0.1.459",
55
+ "@livedesk/fast-osx-arm64": "0.1.459",
56
+ "@livedesk/fast-osx-x64": "0.1.459",
57
+ "@livedesk/fast-win-x64": "0.1.459"
58
58
  },
59
59
  "publishConfig": {
60
60
  "access": "public"
@@ -4,7 +4,7 @@
4
4
  "short_name": "VuvoDesk",
5
5
  "description": "Monitor and control your VuvoDesk computers from your phone.",
6
6
  "lang": "en",
7
- "start_url": "/app?pwa=0.1.612",
7
+ "start_url": "/app?pwa=0.1.613",
8
8
  "scope": "/",
9
9
  "display": "standalone",
10
10
  "orientation": "any",