pi-studio 0.9.11 → 0.9.12
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 +13 -0
- package/README.md +1 -1
- package/client/studio-client.js +554 -70
- package/client/studio.css +191 -32
- package/index.ts +322 -32
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to `pi-studio` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.9.12] — 2026-05-21
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Added a draggable splitter for resizing the editor and right panes without entering pane-focus mode, with double-click/keyboard reset, narrow snap-to-50/50 near the centre, restored visual separation between panes, a hover/focus-only divider line, and a minimum editor width to avoid toolbar collapse.
|
|
11
|
+
- Added an optional REPL start command field so Studio-owned REPL sessions can start through a selected environment command such as `.venv/bin/python`, `uv run python`, or `conda run --no-capture-output -n env python`.
|
|
12
|
+
- Added non-text-entry response-history shortcuts: Alt/Option+Left for previous, Alt/Option+Right for next, and Alt/Option+l for latest response.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Generic live tool labels such as “Running git command” are no longer promoted into the Studio status line, and shell command detection now looks at executable tokens rather than matching path text like `Git-Working`.
|
|
16
|
+
- Refreshed pane headers and editor toolbar controls now stack based on pane width, so resizing a pane no longer lets secondary controls overlap the primary pane title or run action.
|
|
17
|
+
- Sandboxed HTML previews now resolve local relative PNG/JPEG/GIF/WebP image references through Studio's resource context and embed them as data URLs, without allowing arbitrary network resources.
|
|
18
|
+
- The REPL view now keeps the selected session aligned with the selected runtime, so choosing Python no longer leaves Send to REPL targeting an existing Shell session; the start-command controls were simplified so Start creates or switches to a session for the selected runtime and command, and the **Studio REPL Record** header was tightened.
|
|
19
|
+
|
|
7
20
|
## [0.9.11] — 2026-05-19
|
|
8
21
|
|
|
9
22
|
### Added
|
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Extension for [pi](https://pi.dev) that opens a local two-pane browser workspace
|
|
|
23
23
|
- Includes a global **Zen** mode for hiding secondary Studio chrome without changing the current left/right pane layout
|
|
24
24
|
- Runs editor text directly, asks for structured critique (auto/writing/code focus), or opens **Quiz me** for a Studio-native active-recall loop over the current editor text, selection, current file, folder, or repo, with optional focus guidance for shaping question selection
|
|
25
25
|
- Includes a live **Working** view for following current model/tool activity, with `All` / `Thinking` / `Tools` filters, image previews for image-producing tool outputs, plus **Load visible into editor** and **Copy visible** actions; when cycling response history, Working follows saved working details for the selected response when available
|
|
26
|
-
- Includes an optional tmux-backed **REPL** view for Shell, Python, IPython, Julia, R, GHCi, and Clojure sessions, with Raw/Literate send modes, `Cmd/Ctrl+Shift+Enter` **Send to REPL**, session start/
|
|
26
|
+
- Includes an optional tmux-backed **REPL** view for Shell, Python, IPython, Julia, R, GHCi, and Clojure sessions, with Raw/Literate send modes, `Cmd/Ctrl+Shift+Enter` **Send to REPL**, session start/stop/interrupt controls, a compact refresh-persistent **Studio REPL Record** of user and Pi-sent code, a secondary raw tmux mirror, agent-facing `studio_repl_status` / `studio_repl_send` tools, and Markdown/PDF/HTML export
|
|
27
27
|
- Includes a local persistent scratchpad for quick notes you want to keep out of the main editor until you're ready to copy or insert them
|
|
28
28
|
- Includes a docked **Outline** rail for navigating document structure in the current editor text, with clickable entries that jump in the raw editor and reveal matching preview locations when available
|
|
29
29
|
- Includes local comments anchored to selections/lines, shown in a docked **Comments** rail, with transient **Comment** / **Jump** actions from raw-editor selections plus editor-preview selections for Markdown, LaTeX, and code/text/diff previews, alongside optional inline `[an: ...]` toggles when you want comments reflected in the document text
|