openmux 0.2.6 → 0.2.8

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.
Files changed (2) hide show
  1. package/README.md +7 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -3,7 +3,8 @@
3
3
  A terminal multiplexer with master-stack layout (Zellij-style), built with:
4
4
 
5
5
  - **Bun** - Fast JavaScript runtime
6
- - **OpenTUI** - Terminal UI library with React reconciler
6
+ - **OpenTUI** - Terminal UI library with SolidJS reconciler
7
+ - **SolidJS** - Reactive UI framework
7
8
  - **zig-pty** - PTY support for Bun (pure Zig implementation)
8
9
  - **ghostty-web** - Terminal emulation via WASM
9
10
 
@@ -148,7 +149,7 @@ src/
148
149
  │ ├── session-serializer.ts # Serialize/deserialize sessions
149
150
  │ └── session-storage.ts # Disk I/O for sessions
150
151
 
151
- ├── components/ # OpenTUI React components
152
+ ├── components/ # OpenTUI SolidJS components
152
153
  │ ├── index.ts # Component exports
153
154
  │ ├── Pane.tsx # Individual pane with border/focus
154
155
  │ ├── PaneContainer.tsx # Layout pane renderer
@@ -158,9 +159,9 @@ src/
158
159
  │ ├── SessionPicker.tsx # Session selection modal
159
160
  │ └── AggregateView.tsx # PTY browser overlay
160
161
 
161
- ├── contexts/ # React contexts for state
162
+ ├── contexts/ # SolidJS contexts for state
162
163
  │ ├── index.ts # Context exports
163
- │ ├── LayoutContext.tsx # Workspace/pane layout state reducer
164
+ │ ├── LayoutContext.tsx # Workspace/pane layout state (store + actions)
164
165
  │ ├── TerminalContext.tsx # PTY management and lifecycle
165
166
  │ ├── KeyboardContext.tsx # Prefix mode and key state
166
167
  │ ├── SessionContext.tsx # Session management and persistence
@@ -180,8 +181,8 @@ src/
180
181
  │ ├── index.ts # Utils exports
181
182
  │ └── clipboard.ts # Clipboard read/write
182
183
 
183
- ├── App.tsx # Main app component with context hierarchy
184
- └── index.tsx # Entry point (Bun serve + OpenTUI renderer)
184
+ ├── App.tsx # Main app component with provider hierarchy
185
+ └── index.tsx # Entry point (Bun + OpenTUI renderer)
185
186
  ```
186
187
 
187
188
  ## Development Status
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openmux",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "Terminal multiplexer with master-stack tiling layout",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",