@1presence/bridge 0.70.0 → 0.71.0

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/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -621,7 +621,8 @@ function connect(auth, retryDelay = 1000) {
621
621
  // A clean connection means whatever token we hold is accepted — clear the
622
622
  // 4001 refresh-retry budget so a future expiry gets the full allowance.
623
623
  authRejections = 0;
624
- console.log('✓ Bridge connected. Local Mode active on all your devices.\n');
624
+ const who = auth.email ? ` as ${auth.email}` : '';
625
+ console.log(`✓ Bridge connected${who}. Local Mode active on all your devices.\n`);
625
626
  startPing();
626
627
  // Drain any save records left behind by an earlier crashed/dropped session.
627
628
  // Fire-and-forget — the network is up, the gateway is reachable, and we
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1presence/bridge",
3
- "version": "0.70.0",
3
+ "version": "0.71.0",
4
4
  "description": "Run 1Presence on your Mac and use your Claude.ai Pro subscription from any device",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",