local-mcp 3.0.220 → 3.0.221
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/download.js +3 -0
- package/package.json +1 -1
package/download.js
CHANGED
|
@@ -393,6 +393,9 @@ async function ensureTray() {
|
|
|
393
393
|
try { execFileSync('xattr', ['-rd', 'com.apple.quarantine', trayApp], { stdio: 'pipe' }) } catch { /* no crítico */ }
|
|
394
394
|
|
|
395
395
|
fs.writeFileSync(verFile, version, 'utf8')
|
|
396
|
+
// Keep in sync with UpdateManager / Heartbeat (was .version only → fleet stuck on old tray)
|
|
397
|
+
const trayVerFile = path.join(TRAY_DIR, '.tray-version')
|
|
398
|
+
fs.writeFileSync(trayVerFile, version, 'utf8')
|
|
396
399
|
|
|
397
400
|
// LaunchAgent — auto-start en cada reboot de sesión
|
|
398
401
|
_writeTrayLaunchAgent(trayApp)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "local-mcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.221",
|
|
4
4
|
"description": "LMCP — connect Claude Desktop, Cursor, Windsurf to Mail, Calendar, Contacts, Teams, OneDrive on macOS. Privacy-first: all data stays on your Mac.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|