@walldock/agent 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. package/dist/sync.js +1 -0
  2. package/package.json +1 -1
package/dist/sync.js CHANGED
@@ -102,6 +102,7 @@ class SyncService {
102
102
  const fp = (0, index_1.fingerprintScreens)(screens);
103
103
  if (fp === this.lastScreensFingerprint)
104
104
  return;
105
+ this.callbacks.onLog(`[screens] detected ${screens.length}: ${screens.map(s => `${s.label}(${s.width}x${s.height})`).join(', ')}`);
105
106
  try {
106
107
  await this.api.reportDeviceScreens(ctx.token, ctx.deviceId, screens);
107
108
  this.lastScreensFingerprint = fp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@walldock/agent",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Walldock desktop agent — sync wallpapers across all your screens",
5
5
  "license": "MIT",
6
6
  "main": "dist/main.js",