@llblab/pi-telegram 0.26.4 → 0.26.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.
package/BACKLOG.md CHANGED
@@ -2,7 +2,30 @@
2
2
 
3
3
  _This backlog tracks only open release-relevant work: hotfixes, bounded maintenance, live runtime verification, evidence-gated Telegram client follow-ups, and upstream Pi API blockers. Completed outcomes and validation evidence belong in `CHANGELOG.md`, not in this queue._
4
4
 
5
- ## P0 — Update Omission Label Hotfix
5
+ ## P0 — Windows Poll-Wait Boundary Hotfix
6
+
7
+ Context: a Windows process-lock regression reached its expected `parent:getUpdates` marker at the polling deadline, but the shared wait helper failed immediately after its final read without applying the predicate to that last value. This produces a false timeout despite successful behavior.
8
+
9
+ Open work:
10
+
11
+ - [x] Reapply the predicate after the final file read before reporting a timeout.
12
+ - [ ] Validate the process-lock regression across hosted platforms and publish `0.26.6`.
13
+
14
+ Done when: deadline-edge marker arrival succeeds, genuine missing markers still fail with evidence, and CI passes on Linux, macOS, and Windows.
15
+
16
+ ## P1 — Scoped Model Thinking Label Release
17
+
18
+ Context: scoped model buttons still separate their optional thinking level with a middle dot. Parentheses match the quieter subordinate-metadata convention now used by Activity update omission labels.
19
+
20
+ Open work:
21
+
22
+ - [x] Render scoped model buttons as `provider/model (level)` when a thinking level is attached.
23
+ - [x] Update focused regression, changelog, and package metadata.
24
+ - [x] Publish and verify GitHub/npm release evidence for `0.26.5`.
25
+
26
+ Done when: optional thinking metadata uses parentheses consistently, validation passes, and the hotfix is published.
27
+
28
+ ## P1 — Update Omission Label Release
6
29
 
7
30
  Context: the retained-update summary currently separates its dropped-count suffix with a middle dot. Parentheses communicate subordinate metadata more quietly and avoid an unnecessary visual separator.
8
31
 
@@ -10,7 +33,7 @@ Open work:
10
33
 
11
34
  - [x] Render the first retained update as `Update N (K earlier omitted)` when earlier updates were dropped.
12
35
  - [x] Update focused regression, changelog, and package metadata.
13
- - [ ] Publish and verify GitHub/npm release evidence for `0.26.4`.
36
+ - [x] Publish and verify GitHub/npm release evidence for `0.26.4`.
14
37
 
15
38
  Done when: omission metadata uses ordinary parentheses, validation passes, and the hotfix is published.
16
39
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.26.6: Windows Poll-Wait Boundary Fix
4
+
5
+ - `Windows CI`: Reapplied the wait predicate to the final marker-file read before reporting a timeout. Impact: process-lock regressions no longer fail when Windows exposes the expected marker exactly at the polling deadline, while genuinely missing evidence still produces the same diagnostic failure.
6
+
7
+ ## 0.26.5: Quieter Scoped Model Labels
8
+
9
+ - `Model Microcopy`: Replaced the middle-dot separator in scoped model buttons with parentheses, rendering optional thinking metadata as `provider/model (level)`. Impact: model identity stays primary while its attached thinking level reads as subordinate metadata consistently with Activity omission labels.
10
+
3
11
  ## 0.26.4: Quieter Update Omission Labels
4
12
 
5
13
  - `Tool Microcopy`: Replaced the middle-dot suffix in retained update summaries with ordinary parentheses: `Update N (K earlier omitted)`. Impact: dropped-update evidence remains explicit while reading as subordinate metadata instead of another visual segment.
package/lib/menu-model.ts CHANGED
@@ -355,7 +355,7 @@ export function formatScopedModelButtonText<
355
355
  ): string {
356
356
  let label = `${modelsMatch(entry.model, currentModel) ? "🟢 " : ""}${entry.model.provider}/${entry.model.id}`;
357
357
  if (entry.thinkingLevel) {
358
- label += ` · ${entry.thinkingLevel}`;
358
+ label += ` (${entry.thinkingLevel})`;
359
359
  }
360
360
  return truncateTelegramButtonLabel(label);
361
361
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@llblab/pi-telegram",
3
- "version": "0.26.4",
3
+ "version": "0.26.6",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"