pi-chrome 0.15.8 → 0.15.9

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable user-facing changes to `pi-chrome`.
4
4
 
5
+ ## 0.15.9 — 2026-05-14
6
+
7
+ - **Tighter `/chrome` menu.** Removed the redundant “Connection status” item from the interactive `/chrome` menu because connection/auth/background are already shown in the menu header. `/chrome status` remains available as a slash command.
8
+
5
9
  ## 0.15.8 — 2026-05-14
6
10
 
7
11
  - **Simpler `/chrome` submenus.** Authorize menu now offers 15 minutes, 30 minutes, indefinite, and custom minutes only. Background menu now offers only foreground/background. Esc from a submenu returns to the main `/chrome` menu.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "Pi Chrome Connector",
4
- "version": "0.15.8",
4
+ "version": "0.15.9",
5
5
  "description": "Lets Pi control tabs in Chrome via a local connector at 127.0.0.1.",
6
6
  "permissions": [
7
7
  "tabs",
@@ -726,7 +726,6 @@ Usage rules:
726
726
  const choice = await ctx.ui.select(`pi-chrome\n${await statusSummary()}`, [
727
727
  "Authorize Chrome control…",
728
728
  "Lock Chrome control",
729
- "Connection status",
730
729
  "Doctor / troubleshoot",
731
730
  "Background / watch mode…",
732
731
  "Install / onboard extension",
@@ -735,7 +734,6 @@ Usage rules:
735
734
  switch (choice) {
736
735
  case "Authorize Chrome control…": await openAuthorizeMenu(ctx); continue;
737
736
  case "Lock Chrome control": return revokeHandler(ctx);
738
- case "Connection status": return statusHandler(ctx);
739
737
  case "Doctor / troubleshoot": return doctorHandler(ctx);
740
738
  case "Background / watch mode…": await openBackgroundMenu(ctx); continue;
741
739
  case "Install / onboard extension": return onboardHandler(ctx);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-chrome",
3
- "version": "0.15.8",
3
+ "version": "0.15.9",
4
4
  "scripts": {
5
5
  "version": "node scripts/sync-manifest-version.js",
6
6
  "prepublishOnly": "node scripts/sync-manifest-version.js"