pi-chrome 0.15.15 → 0.15.16

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.16 — 2026-05-14
6
+
7
+ - **Visible `/chrome` loading state.** Bare `/chrome` and `/chrome status` now immediately say “Checking Chrome connection…” before probing the companion extension, so a slow Chrome bridge no longer looks like the command did nothing.
8
+
5
9
  ## 0.15.15 — 2026-05-14
6
10
 
7
11
  - **Terminal authorization restored.** `/chrome authorize` is back to terminal-based confirmation. Removed the browser-side Chrome consent page and companion-extension consent polling.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "Pi Chrome Connector",
4
- "version": "0.15.15",
4
+ "version": "0.15.16",
5
5
  "description": "Lets Pi control tabs in Chrome via a local connector at 127.0.0.1.",
6
6
  "permissions": [
7
7
  "tabs",
@@ -684,6 +684,7 @@ Usage rules:
684
684
  };
685
685
 
686
686
  const statusHandler = async (ctx: ExtensionContext) => {
687
+ ctx.ui.notify("Checking Chrome connection…", "info");
687
688
  ctx.ui.notify(await statusSummary(), "info");
688
689
  };
689
690
 
@@ -723,6 +724,7 @@ Usage rules:
723
724
 
724
725
  const openCommandMenu = async (ctx: ExtensionContext): Promise<void> => {
725
726
  while (true) {
727
+ ctx.ui.notify("Checking Chrome connection…", "info");
726
728
  const choice = await ctx.ui.select(`pi-chrome\n${await statusSummary()}`, [
727
729
  "Authorize Chrome control…",
728
730
  "Lock Chrome control",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-chrome",
3
- "version": "0.15.15",
3
+ "version": "0.15.16",
4
4
  "scripts": {
5
5
  "version": "node scripts/sync-manifest-version.js",
6
6
  "prepublishOnly": "node scripts/sync-manifest-version.js"