pi-studio 0.9.12 → 0.9.13
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 +12 -0
- package/README.md +2 -0
- package/client/studio-client.js +788 -49
- package/client/studio.css +47 -3
- package/index.ts +356 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ All notable changes to `pi-studio` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.9.13] — 2026-05-22
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Added browser-refresh restoration for the Studio editor workspace, plus an explicit **Clear editor** action for discarding the restored browser draft without touching saved files or response history.
|
|
11
|
+
- Added local preview-link handling for rendered document previews and sandboxed HTML previews: local PDF links open in Studio's embedded PDF focus viewer, local image links open in a local image preview, text/code/document links can open in a new editor tab, and right-clicking local links offers **Open here**, **Reveal in file manager**, and **Copy path** where applicable.
|
|
12
|
+
- Brought editor-only Studio closer to full Studio for document-local controls: pane resizing/focus shortcuts now work, and the annotation-header toggle remains available.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Fixed local resource context propagation when following links into subdocuments, so nested document/image/PDF links and **Reveal in file manager** resolve relative to the active document while staying inside the original Studio resource directory.
|
|
16
|
+
- Fixed malformed working-directory/resource paths that accidentally duplicated absolute path prefixes such as `/Users/.../Users/...`.
|
|
17
|
+
- Fixed refreshed toolbar menu overflow so annotation/view menus remain clickable instead of being clipped or covered by toolbar chips.
|
|
18
|
+
|
|
7
19
|
## [0.9.12] — 2026-05-21
|
|
8
20
|
|
|
9
21
|
### Added
|
package/README.md
CHANGED
|
@@ -26,6 +26,8 @@ Extension for [pi](https://pi.dev) that opens a local two-pane browser workspace
|
|
|
26
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
|
+
- Restores the current browser-tab editor workspace after refresh and provides an explicit **Clear editor** action when you want to discard the restored draft without changing responses or saved files
|
|
30
|
+
- Turns local preview links, including links inside sandboxed HTML previews, into Studio actions: PDFs open in the embedded viewer, text/code/document links can open in a new editor tab, and right-click menus provide **Open here**, **Reveal in file manager**, and **Copy path** for local resources
|
|
29
31
|
- 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
|
|
30
32
|
- Browses response history (`Prev/Next/Last`) and loads either:
|
|
31
33
|
- response text
|