paneful 0.7.0 → 0.7.2

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 CHANGED
@@ -1,6 +1,8 @@
1
1
  # Paneful
2
2
 
3
- A browser-based terminal multiplexer. Tmux-style pane management, project workspaces, and a CLI that spawns into a running instance.
3
+ A terminal multiplexer that runs in your browser. Split panes, organize by project, drag and drop from Finder, sync with your editor — all from a single `npm install`.
4
+
5
+ ![Paneful](screenshot.png)
4
6
 
5
7
  ## Install
6
8
 
@@ -8,33 +10,14 @@ A browser-based terminal multiplexer. Tmux-style pane management, project worksp
8
10
  npm i -g paneful
9
11
  ```
10
12
 
11
- Or run without installing:
12
-
13
- ```bash
14
- npx paneful
15
- ```
16
-
17
13
  ## Usage
18
14
 
19
- ### Start the server
20
-
21
- ```bash
22
- paneful # Start server and open browser
23
- paneful --port 8080 # Use a specific port
24
- ```
25
-
26
- ### Spawn projects from anywhere
27
-
28
- ```bash
29
- cd ~/my-project
30
- paneful --spawn # Adds project to running instance
31
- ```
32
-
33
- ### Manage projects
34
-
35
15
  ```bash
36
- paneful --list # List all projects
37
- paneful --kill my-project # Kill a project by name
16
+ paneful # Start server and open browser
17
+ paneful --port 8080 # Use a specific port
18
+ paneful --spawn # Add current directory as a project
19
+ paneful --list # List all projects
20
+ paneful --kill my-project # Kill a project by name
38
21
  ```
39
22
 
40
23
  ## Features
@@ -225,7 +225,7 @@ async function startServer(devMode, port) {
225
225
  }
226
226
  });
227
227
  // Active editor detection — single AppleScript gets frontmost app + window title
228
- const editorPatterns = ['cursor', 'code', 'vscode', 'visual studio code', 'zed', 'windsurf'];
228
+ const editorPatterns = ['cursor', 'code', 'vscode', 'visual studio code', 'zed', 'windsurf', 'electron'];
229
229
  let editorCache = { projectName: null };
230
230
  const editorScript = `
231
231
  tell application "System Events"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "paneful",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "Browser-based terminal multiplexer with tmux-style pane management",
5
5
  "type": "module",
6
6
  "bin": {