pi-studio 0.5.50 → 0.5.52
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 +25 -0
- package/README.md +2 -1
- package/client/studio-client.js +811 -92
- package/client/studio.css +98 -29
- package/index.ts +26 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,31 @@ All notable changes to `pi-studio` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.5.52] — 2026-04-09
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Studio now includes a docked **Outline** rail for the current editor text, with clickable structure entries that jump in the raw editor and, when possible, reveal the matching preview location.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Outline scanning now provides initial structure support for Markdown headings, LaTeX sectioning commands and references, Python classes/functions, JavaScript/TypeScript classes and functions, Julia modules/structs/functions/macros, Bash functions, and diff file/hunk structure.
|
|
14
|
+
- Standalone preview-to-editor jumps now keep the raw-editor selection focused more reliably, so the left-side highlight persists more like comment-card jumps.
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- The **Outline** button now only shows its active styling while the outline rail is actually open.
|
|
18
|
+
|
|
19
|
+
## [0.5.51] — 2026-04-09
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- Raw-editor selection actions now also include a transient **Jump** control beside **Comment** when the right pane is showing **Editor (Preview)**, so editor selections can reveal the corresponding preview location without creating a local comment first.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- Selection-time **Comment** / **Jump** affordances are now more consistent across raw editor and preview: preview-side actions use a fixed top-right action area while remaining transient and selection-only.
|
|
26
|
+
- Standalone selection **Jump** actions now use the same preview highlight/reveal treatment as comment-card jumps, making it easier to stay oriented after jumping in either direction.
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- Preview-side selection actions are once again hidden unless an appropriate preview text selection is active.
|
|
30
|
+
- Code/text/diff preview selection mapping now preserves literal underscores in identifiers such as `add_subplot`, avoiding comment/jump failures caused by markdown-style underscore stripping.
|
|
31
|
+
|
|
7
32
|
## [0.5.50] — 2026-04-09
|
|
8
33
|
|
|
9
34
|
### Added
|
package/README.md
CHANGED
|
@@ -18,7 +18,8 @@ Extension for [pi](https://pi.dev) that opens a local two-pane browser workspace
|
|
|
18
18
|
- Supports one canonical full Studio view per Pi session, plus additional editor-only companion views when you just want extra editing/preview surfaces
|
|
19
19
|
- Runs editor text directly, or asks for structured critique (auto/writing/code focus)
|
|
20
20
|
- 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
|
|
21
|
-
- Includes
|
|
21
|
+
- 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
|
|
22
|
+
- 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
|
|
22
23
|
- Browses response history (`Prev/Next/Last`) and loads either:
|
|
23
24
|
- response text
|
|
24
25
|
- critique notes/full critique
|