@velor/remote-mouse 6.4.8 → 6.4.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/README.md CHANGED
@@ -21,15 +21,15 @@ Regenerate these assets with `npm run screenshots:mobile`.
21
21
 
22
22
  | Remote control | Local preferences |
23
23
  | --- | --- |
24
- | <img src=".artifacts/screenshots/remote-mobile-home.png" alt="Mobile remote control screen" width="260"> | <img src=".artifacts/screenshots/remote-mobile-preferences.png" alt="Mobile local preferences screen" width="260"> |
24
+ | <img src="https://raw.githubusercontent.com/glennerichall/node-mouse/main/.artifacts/screenshots/remote-mobile-home.png" alt="Mobile remote control screen" width="260"> | <img src="https://raw.githubusercontent.com/glennerichall/node-mouse/main/.artifacts/screenshots/remote-mobile-preferences.png" alt="Mobile local preferences screen" width="260"> |
25
25
 
26
26
  | VLC remote | Admin configuration |
27
27
  | --- | --- |
28
- | <img src=".artifacts/screenshots/remote-mobile-vlc.png" alt="Mobile VLC remote screen" width="260"> | <img src=".artifacts/screenshots/remote-mobile-config.png" alt="Mobile admin configuration screen" width="260"> |
28
+ | <img src="https://raw.githubusercontent.com/glennerichall/node-mouse/main/.artifacts/screenshots/remote-mobile-vlc.png" alt="Mobile VLC remote screen" width="260"> | <img src="https://raw.githubusercontent.com/glennerichall/node-mouse/main/.artifacts/screenshots/remote-mobile-config.png" alt="Mobile admin configuration screen" width="260"> |
29
29
 
30
30
  | Server info |
31
31
  | --- |
32
- | <img src=".artifacts/screenshots/remote-mobile-server-info.png" alt="Mobile server info screen" width="260"> |
32
+ | <img src="https://raw.githubusercontent.com/glennerichall/node-mouse/main/.artifacts/screenshots/remote-mobile-server-info.png" alt="Mobile server info screen" width="260"> |
33
33
 
34
34
  ## Install
35
35
 
@@ -39,7 +39,8 @@ export function resolveEffectiveStateValue(key, {stateStore, persistStore, clien
39
39
  && getRecordFlag(remoteVisibility, 'vlc', true);
40
40
 
41
41
  case APP_STATE_EFFECTIVE_SAMSUNG_REMOTE_VISIBLE:
42
- return getRecordFlag(remoteVisibility, 'samsung', true);
42
+ return getConfigSection(config, 'samsungTv').enabled === true
43
+ && getRecordFlag(remoteVisibility, 'samsung', true);
43
44
 
44
45
  case APP_STATE_EFFECTIVE_PREVIEW_REMOTE_VISIBLE:
45
46
  return getConfigSection(config, 'preview').enabled !== false
@@ -19,4 +19,7 @@ export const DEFAULT_CLIENT_CONFIG = {
19
19
  enabled: true,
20
20
  hideDelayMs: 10000,
21
21
  },
22
+ samsungTv: {
23
+ enabled: false,
24
+ },
22
25
  };
package/package.json CHANGED
@@ -1,9 +1,17 @@
1
1
  {
2
2
  "name": "@velor/remote-mouse",
3
- "version": "6.4.8",
3
+ "version": "6.4.10",
4
4
  "type": "module",
5
5
  "description": "Remote mouse and keyboard with mobile client",
6
+ "homepage": "https://github.com/glennerichall/node-mouse#readme",
6
7
  "main": "index.js",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/glennerichall/node-mouse.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/glennerichall/node-mouse/issues"
14
+ },
7
15
  "bin": {
8
16
  "remote-mouse": "./bin/remote-mouse.js"
9
17
  },