pi-studio 0.9.5 → 0.9.7
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 +24 -0
- package/client/studio-client.js +495 -77
- package/client/studio.css +141 -14
- package/index.ts +242 -61
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,30 @@ All notable changes to `pi-studio` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.9.7] — 2026-05-19
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Added Focus support for interactive HTML previews, using the existing sandboxed preview iframe in-place so form input and script state survive focus/unfocus.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- `/studio` launched over SSH now skips opening the remote host browser by default, prints a local tunnel hint instead, and keeps local/non-SSH browser auto-open behavior unchanged. Use `/studio --open-remote` to request the previous remote-browser behavior.
|
|
14
|
+
- Moved the HTML preview Focus control next to the preview title to match PDF Focus placement.
|
|
15
|
+
|
|
16
|
+
## [0.9.6] — 2026-05-19
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Cleaned up Studio REPL output handling: the raw tmux mirror now remains raw while REPL Studio and `studio_repl_send` results hide Studio's temp-file submission wrappers.
|
|
20
|
+
- Made REPL Studio session-scoped, so switching between Python, R, Julia, and other tmux sessions no longer mixes their clean records, and reloads can recover Studio-sent entries while the Studio server is still running.
|
|
21
|
+
- Refined Literate send so **Send selection/chunks** runs the selection, current fenced chunk, or all compatible chunks when the cursor is outside a chunk.
|
|
22
|
+
- Reworked REPL-mode editor controls so REPL send actions sit on their own row, show their shortcut, and **Run editor text** is visually secondary because it sends to Pi rather than the REPL.
|
|
23
|
+
- Normalised dropdown/menu styling in the refreshed UI so selects and custom menu triggers use neutral hover/open states instead of inconsistent accent borders or fills.
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- Added **More → Copy attach command** in the REPL pane to copy a `tmux attach -t <session>` command for the active REPL session.
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- R REPL parse errors no longer expose Studio's internal `.__pi_studio_code` parse wrapper.
|
|
30
|
+
|
|
7
31
|
## [0.9.5] — 2026-05-17
|
|
8
32
|
|
|
9
33
|
### Added
|