blun-king-cli 9.1.493 → 9.1.494

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
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 9.1.494 - 2026-08-30
4
+
5
+ - Removes the conflicting Ctrl+S fallback that opened or collapsed the Todo panel when no queue item was visible.
6
+ - Keeps Todo expansion exclusively on Ctrl+T and queue-backlog release exclusively on Ctrl+S.
7
+
3
8
  ## 9.1.493 - 2026-08-30
4
9
 
5
10
  - Automatically authorizes every new Telegram user message for delivery at the next safe handoff, including messages from groups, instead of requiring Ctrl+S or Escape first.
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.493
12
+ npm install -g blun-king-cli@9.1.494
13
13
 
14
14
  Start
15
15
  -----
@@ -65,7 +65,9 @@ geschriebenen Entwurf zu löschen. Das gilt auch bei
65
65
  Autovervollständigung, Geistervorschlägen, Bash-Eingabe und einer offenen
66
66
  Mehrzeileneingabe.
67
67
 
68
- Version 9.1.493 stellt die automatische Zustellung von User-Nachrichten auch
68
+ Version 9.1.494 trennt die Tastenkürzel wieder eindeutig: Strg+S steuert nur
69
+ den Queue-Rückstand, Strg+T nur die Todo-Liste. Version 9.1.493 stellt die
70
+ automatische Zustellung von User-Nachrichten auch
69
71
  für Telegram-Gruppen wieder her. Version 9.1.492 schützt Veröffentlichungen
70
72
  zusätzlich mit einer verpflichtenden
71
73
  Metadatenprüfung. Packen und Veröffentlichen brechen ab, wenn Paketversion,
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.493
12
+ npm install -g blun-king-cli@9.1.494
13
13
  ```
14
14
 
15
15
  ## Reproduzierbares Staging und Packen
@@ -81,7 +81,9 @@ konkurrierenden Start zurückgewiesen und bleiben an der Spitze der
81
81
  FIFO-Warteschlange. Für diesen normalen Wartestatus erscheint kein
82
82
  `turn.agent_busy`-Fehler.
83
83
 
84
- Version 9.1.493 stellt die automatische Zustellung von User-Nachrichten auch
84
+ Version 9.1.494 trennt die Tastenkürzel wieder eindeutig: Strg+S steuert nur
85
+ den Queue-Rückstand, Strg+T nur die Todo-Liste. Version 9.1.493 stellt die
86
+ automatische Zustellung von User-Nachrichten auch
85
87
  für Telegram-Gruppen wieder her. Version 9.1.492 schützt Veröffentlichungen
86
88
  zusätzlich mit einer verpflichtenden
87
89
  Metadatenprüfung. Packen und Veröffentlichen brechen ab, wenn Paketversion,
package/blun.mjs CHANGED
@@ -504008,8 +504008,9 @@ const CHANNEL_QUEUE_RETRY_MS = 5e3;
504008
504008
  //#endregion
504009
504009
  //#region src/tui/controllers/channel-queue-deadline.ts
504010
504010
  /**
504011
- * Delivers channel work only after Ctrl+S or Escape releases it. A busy runtime
504012
- * is retried without cancelling the turn or crossing the FIFO barrier.
504011
+ * Delivers authorized channel work during the active turn. User messages
504012
+ * authorize themselves on arrival; Ctrl+S and Escape remain explicit controls.
504013
+ * A busy runtime is retried without cancelling the turn or crossing FIFO.
504013
504014
  */
504014
504015
  var ChannelQueueDeadlineController = class {
504015
504016
  host;
@@ -505593,12 +505594,6 @@ var EditorKeyboardController = class {
505593
505594
  return true;
505594
505595
  };
505595
505596
  editor.onCtrlS = () => {
505596
- if (editor.getText().trim().length === 0 && host.state.queuedMessages.length === 0 && host.state.todoPanel.hasOverflow()) {
505597
- this.clearPendingExit();
505598
- host.track("shortcut_todo_expand");
505599
- host.toggleTodoPanelExpansion();
505600
- return;
505601
- }
505602
505597
  if (!host.streamingUI.hasActiveTurn() && host.state.appState.streamingPhase === "idle") return;
505603
505598
  host.flushQueuedMessages(editor.getText().trim(), editor.inputMode);
505604
505599
  host.updateQueueDisplay();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blun-king-cli",
3
- "version": "9.1.493",
3
+ "version": "9.1.494",
4
4
  "description": "BLUN CLI - your own AI agent with a Telegram channel. Get it done. With BLUN.",
5
5
  "license": "MIT",
6
6
  "bin": {