@brimveyn/aimux 1.15.0 → 1.15.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brimveyn/aimux",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
4
4
  "description": "A terminal multiplexer for AI CLIs. Run Claude, Codex, OpenCode side-by-side with tabbed navigation, split panes, and persistent sessions.",
5
5
  "keywords": [
6
6
  "ai",
@@ -57,7 +57,9 @@
57
57
  "format": "oxfmt --write .",
58
58
  "format:check": "oxfmt --check .",
59
59
  "knip": "knip-bun",
60
- "bump": "bun run scripts/bump.ts"
60
+ "bump": "bun run scripts/bump.ts",
61
+ "bump:ipc": "bun run scripts/bump-protocol.ts ipc",
62
+ "bump:terminal_manager": "bun run scripts/bump-protocol.ts terminal-manager"
61
63
  },
62
64
  "dependencies": {
63
65
  "@brimveyn/aimux-config": "0.6.11",
@@ -32,8 +32,8 @@ import {
32
32
  // either way (pre-v7 TM → new client never sees the indices; new TM →
33
33
  // pre-v7 client ignores them and falls back to the theme default), so Min
34
34
  // is raised in lockstep to force matching binaries.
35
- export const MANAGER_PROTOCOL_MIN_VERSION = 7
36
- export const MANAGER_PROTOCOL_VERSION = 7
35
+ export const MANAGER_PROTOCOL_MIN_VERSION = 8
36
+ export const MANAGER_PROTOCOL_VERSION = 8
37
37
  /**
38
38
  * Minimum version required to send `setBroadcastEnabled`. Older TMs (v3) will
39
39
  * not understand the message; the daemon must check the negotiated version
@@ -14,8 +14,8 @@ import { isWorkspaceSnapshotV1 } from '../state/validation'
14
14
  // `reapplyScrollIntent` message — the frontend no longer derives or sends it.
15
15
  // (v8 was the unfilled-viewport status-detector change; this is a further
16
16
  // breaking wire change, so the version steps again.)
17
- export const IPC_PROTOCOL_MIN_VERSION = 9
18
- export const IPC_PROTOCOL_VERSION = 9
17
+ export const IPC_PROTOCOL_MIN_VERSION = 10
18
+ export const IPC_PROTOCOL_VERSION = 10
19
19
 
20
20
  export interface ProtocolHelloRequest {
21
21
  minVersion: number