@velor/remote-mouse 6.4.9 → 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.
@@ -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,6 +1,6 @@
1
1
  {
2
2
  "name": "@velor/remote-mouse",
3
- "version": "6.4.9",
3
+ "version": "6.4.10",
4
4
  "type": "module",
5
5
  "description": "Remote mouse and keyboard with mobile client",
6
6
  "homepage": "https://github.com/glennerichall/node-mouse#readme",