pi-studio 0.9.2 → 0.9.4
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 -1
- package/README.md +2 -2
- package/client/studio-client.js +714 -45
- package/client/studio.css +276 -1
- package/index.ts +448 -2
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,10 +4,21 @@ All notable changes to `pi-studio` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.9.4] — 2026-05-16
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Added first-cut Studio **Quiz me** support from the Review menu, with editor/selection scope, audience angle, quiz thinking controls, one-question-at-a-time answer checking, tutor discussion, Markdown/math-rendered cards, and minimize/resume behavior.
|
|
11
|
+
|
|
12
|
+
## [0.9.3] — 2026-05-16
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Simplified the global Zen button label to text-only (`Zen` / `Exit Zen`).
|
|
16
|
+
- Removed the visible Fresh/Classic UI toggle; Studio now keeps the refreshed UI by default, with the legacy layout still available only via `?uiRefresh=0` for now.
|
|
17
|
+
|
|
7
18
|
## [0.9.2] — 2026-05-16
|
|
8
19
|
|
|
9
20
|
### Added
|
|
10
|
-
- Added a global
|
|
21
|
+
- Added a global **Zen** / **Exit Zen** toggle that hides secondary Studio chrome while preserving the current pane layout and panel focus state.
|
|
11
22
|
- Added a Focus action for explicit `studio-pdf` preview cards, opening the embedded PDF in a larger Studio overlay with optional browser fullscreen.
|
|
12
23
|
|
|
13
24
|
### Fixed
|
package/README.md
CHANGED
|
@@ -20,8 +20,8 @@ Extension for [pi](https://pi.dev) that opens a local two-pane browser workspace
|
|
|
20
20
|
|
|
21
21
|
- Opens a two-pane browser workspace: **Editor** (left) + **Response/Working/Editor Preview** (right)
|
|
22
22
|
- Supports one canonical full Studio view per Pi session, plus additional editor-only companion views when you just want extra editing/preview surfaces; the editor toolbar can open a detached copy of the current editor text as a companion view
|
|
23
|
-
- Includes a global
|
|
24
|
-
- Runs editor text directly,
|
|
23
|
+
- Includes a global **Zen** mode for hiding secondary Studio chrome without changing the current left/right pane layout
|
|
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 or 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
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/new/stop/interrupt controls, a compact refresh-persistent **REPL Studio** 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
|