blun-king-cli 9.1.490 → 9.1.491
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 +5 -0
- package/LIESMICH.txt +2 -2
- package/README.md +2 -2
- package/blun.mjs +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 9.1.491 - 2026-08-30
|
|
4
|
+
|
|
5
|
+
- Restores real-time private Telegram priority: a user DM now auto-authorizes delivery into active work instead of waiting behind the manual queue-release gate.
|
|
6
|
+
- Keeps Ctrl+S batch release and one-message-per-Escape control for the remaining console and channel queue.
|
|
7
|
+
|
|
3
8
|
## 9.1.490 - 2026-08-30
|
|
4
9
|
|
|
5
10
|
- Corrects the packaged release history by recording the unpublished 9.1.487 build and replacing the incomplete 9.1.488 summary with the changes verified from the release commits.
|
package/LIESMICH.txt
CHANGED
|
@@ -9,7 +9,7 @@ Installation
|
|
|
9
9
|
------------
|
|
10
10
|
Die geprüfte Version exakt global installieren:
|
|
11
11
|
|
|
12
|
-
npm install -g blun-king-cli@9.1.
|
|
12
|
+
npm install -g blun-king-cli@9.1.491
|
|
13
13
|
|
|
14
14
|
Start
|
|
15
15
|
-----
|
|
@@ -63,7 +63,7 @@ ab, ohne den geschriebenen Entwurf zu löschen. Das gilt auch bei
|
|
|
63
63
|
Autovervollständigung, Geistervorschlägen, Bash-Eingabe und einer offenen
|
|
64
64
|
Mehrzeileneingabe.
|
|
65
65
|
|
|
66
|
-
Version 9.1.
|
|
66
|
+
Version 9.1.491 stellt außerdem die interne Todo-Liste wieder her. Deutsche
|
|
67
67
|
Aufgabenlisten-Befehle wählen wieder TodoList statt der getrennten TaskList für
|
|
68
68
|
Hintergrundprozesse. Lesen, Ersetzen, Aktualisieren und Leeren funktionieren in
|
|
69
69
|
derselben Sitzung; eine vollständig erledigte Liste wird aus der Anzeige
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Voraussetzung ist Node.js 24.15 oder neuer. Die geprüfte Version wird exakt
|
|
|
9
9
|
installiert:
|
|
10
10
|
|
|
11
11
|
```powershell
|
|
12
|
-
npm install -g blun-king-cli@9.1.
|
|
12
|
+
npm install -g blun-king-cli@9.1.491
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Reproduzierbares Staging und Packen
|
|
@@ -79,7 +79,7 @@ konkurrierenden Start zurückgewiesen und bleiben an der Spitze der
|
|
|
79
79
|
FIFO-Warteschlange. Für diesen normalen Wartestatus erscheint kein
|
|
80
80
|
`turn.agent_busy`-Fehler.
|
|
81
81
|
|
|
82
|
-
Version 9.1.
|
|
82
|
+
Version 9.1.491 stellt außerdem die interne Todo-Liste wieder her. Deutsche
|
|
83
83
|
Aufgabenlisten-Befehle wählen wieder TodoList statt der getrennten TaskList für
|
|
84
84
|
Hintergrundprozesse. Lesen, Ersetzen, Aktualisieren und Leeren funktionieren in
|
|
85
85
|
derselben Sitzung; eine vollständig erledigte Liste wird aus der Anzeige
|
package/blun.mjs
CHANGED
|
@@ -518441,6 +518441,8 @@ var BlunTUI = class {
|
|
|
518441
518441
|
else if (directEnvelope !== void 0) enqueueTelegramDirect(this.state.queuedMessages, item);
|
|
518442
518442
|
else if (addressed) enqueueTelegramAddressed(this.state.queuedMessages, item);
|
|
518443
518443
|
else this.state.queuedMessages.push(item);
|
|
518444
|
+
const activeTurn = this.streamingUI.hasActiveTurn() || this.state.appState.streamingPhase !== "idle" && this.state.appState.streamingPhase !== "shell";
|
|
518445
|
+
if (directEnvelope !== void 0 && activeTurn) this.releaseNextQueuedMessage();
|
|
518444
518446
|
this.channelQueueDeadline.requestDeliveryNow();
|
|
518445
518447
|
this.scheduleQueueDrain();
|
|
518446
518448
|
this.track("input_queue");
|