@llblab/pi-telegram 0.45.4 â 0.45.5
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 +4 -0
- package/docs/ui-style.md +1 -1
- package/lib/menu-queue.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 0.45.5: Queue Refresh Icon Hotfix
|
|
8
|
+
|
|
9
|
+
- `Queue Refresh Icon`: The queue menu's Refresh row now uses `đ`, the canonical refresh glyph, reserving `đ` for the State Flow Telegram identity. The button label is the only change; queue refresh behavior, callbacks, and the rotating empty-queue notices are unchanged.
|
|
10
|
+
|
|
7
11
|
## 0.45.4: Draft Cadence Hotfix
|
|
8
12
|
|
|
9
13
|
- `Draft Cadence`: Each preview segment now holds its first frame for one full two-second interval from its first visible text, so the opening draft is an accumulated passage instead of a single streamed word. Later frames keep the trailing cadence, message/turn rollover preserves the remaining interval and reopens the window, and sealing or final publication still cancels the pending timer; first frames no longer ship immediately.
|
package/docs/ui-style.md
CHANGED
|
@@ -48,7 +48,7 @@ Use emoji as stable semantic markers, not decoration. Emoji carry transportable
|
|
|
48
48
|
| `âšī¸` | Abort current Pi work | `/abort` command description and active `/stop` result | Stops active work; accompanying copy states separately when queued work is cleared. |
|
|
49
49
|
| `đĨ` | Destructive stop command | `/stop` command description | Strong warning at the command/action entrypoint; standalone results use the more precise idle or abort state icon. |
|
|
50
50
|
| `đ` | New session / fresh start | Reserved visible extension command example for `/new`-like flows | Same-thread Telegram `/new` is currently blocked by Pi core API; keep this meaning reserved. |
|
|
51
|
-
|
|
|
51
|
+
| `đ` | Refresh | Queue refresh row and future refresh buttons | Re-fetch/re-render current surface, not transport reconnect. |
|
|
52
52
|
| `âĒī¸` | Reroute to an existing target | Thread chooser buttons that send a captured command/message from one thread to another live thread | Curved arrow means the message arrived here but bends to another target. |
|
|
53
53
|
| `đ` | Replace/restore mode | Thread replace/restore chooser entrypoints | Opens a second step for moving a Pi instance binding to the current source thread. |
|
|
54
54
|
| `âĄī¸` | Choose replacement target | Thread replace/restore target buttons that select which Pi instance should move to the current thread | Use inside the second replace/restore chooser, not for ordinary reroutes. |
|
package/lib/menu-queue.ts
CHANGED
|
@@ -88,7 +88,7 @@ function buildTelegramQueueMenuReplyMarkup(
|
|
|
88
88
|
items.length === 0
|
|
89
89
|
? `queue:refresh:${nextEmptyRefreshIndex}`
|
|
90
90
|
: "queue:refresh";
|
|
91
|
-
const refreshRow = [{ text: "
|
|
91
|
+
const refreshRow = [{ text: "đ Refresh", callback_data: refreshData }];
|
|
92
92
|
if (items.length === 0) return { inline_keyboard: [backRow, refreshRow] };
|
|
93
93
|
const rows = items.map((item) => {
|
|
94
94
|
const prefix = item.reactionSuppressionEmoji
|