openmux 0.2.34 → 0.2.37
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/README.md +5 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ A terminal multiplexer with master-stack layout (Zellij-style), built with:
|
|
|
9
9
|
- **OpenTUI** - Terminal UI library with SolidJS reconciler
|
|
10
10
|
- **SolidJS** - Reactive UI framework
|
|
11
11
|
- **zig-pty** - PTY support for Bun (pure Zig implementation)
|
|
12
|
-
- **
|
|
12
|
+
- **libghostty-vt** - Native terminal emulation (VT parser/state)
|
|
13
13
|
|
|
14
14
|

|
|
15
15
|
|
|
@@ -94,7 +94,7 @@ bun dev # Run with watch mode
|
|
|
94
94
|
│ PTY I/O + emulation
|
|
95
95
|
v
|
|
96
96
|
┌─────────────────────────┐
|
|
97
|
-
│ zig-pty +
|
|
97
|
+
│ zig-pty + libghostty-vt │
|
|
98
98
|
└─────────────────────────┘
|
|
99
99
|
```
|
|
100
100
|
|
|
@@ -223,7 +223,8 @@ src/
|
|
|
223
223
|
├── terminal/ # PTY and terminal emulation
|
|
224
224
|
│ ├── index.ts # Terminal exports
|
|
225
225
|
│ ├── pty-manager.ts # PTY session lifecycle (zig-pty)
|
|
226
|
-
│ ├── ghostty-
|
|
226
|
+
│ ├── ghostty-vt/ # Native libghostty-vt bindings + emulator
|
|
227
|
+
│ ├── ghostty-emulator/ # Cell conversion utilities
|
|
227
228
|
│ ├── input-handler.ts # Key/mouse to escape sequence encoder
|
|
228
229
|
│ ├── graphics-passthrough.ts # Kitty Graphics/Sixel protocol
|
|
229
230
|
│ ├── capabilities.ts # Terminal capability detection
|
|
@@ -245,7 +246,7 @@ Current status:
|
|
|
245
246
|
- [x] OpenTUI component layer
|
|
246
247
|
- [x] Keyboard navigation system
|
|
247
248
|
- [x] PTY integration
|
|
248
|
-
- [x]
|
|
249
|
+
- [x] libghostty-vt native terminal emulation
|
|
249
250
|
- [x] Workspaces (1-9)
|
|
250
251
|
- [x] Layout modes (vertical/horizontal/stacked)
|
|
251
252
|
- [x] Session persistence
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openmux",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.37",
|
|
4
4
|
"description": "Terminal multiplexer with master-stack tiling layout",
|
|
5
5
|
"module": "src/index.tsx",
|
|
6
6
|
"type": "module",
|
|
@@ -20,9 +20,10 @@
|
|
|
20
20
|
"build:release": "./scripts/build.sh --release",
|
|
21
21
|
"install:local": "./scripts/build.sh --install",
|
|
22
22
|
"prepare": "effect-language-service patch",
|
|
23
|
-
"test": "vitest run && cd zig-pty && zig build test --summary all",
|
|
23
|
+
"test": "vitest run && (cd zig-pty && zig build test --summary all) && ./scripts/test-ghostty-vt.sh",
|
|
24
24
|
"test:ts": "vitest run",
|
|
25
25
|
"test:zig": "cd zig-pty && zig build test --summary all",
|
|
26
|
+
"test:ghostty-vt": "./scripts/test-ghostty-vt.sh",
|
|
26
27
|
"test:watch": "vitest",
|
|
27
28
|
"check:circular": "bunx madge --circular --extensions ts,tsx src/",
|
|
28
29
|
"lint:effect": "effect-language-service diagnostics --format pretty --project ./tsconfig.json",
|
|
@@ -77,7 +78,6 @@
|
|
|
77
78
|
"@opentui/core": "^0.1.62",
|
|
78
79
|
"@opentui/solid": "^0.1.62",
|
|
79
80
|
"effect": "^3.19.13",
|
|
80
|
-
"ghostty-web": "^0.3.0",
|
|
81
81
|
"solid-js": "^1.9.10"
|
|
82
82
|
}
|
|
83
83
|
}
|