pi-studio 0.6.8 → 0.6.9
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 +5 -0
- package/client/studio-client.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to `pi-studio` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.6.9] — 2026-05-01
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Blank Studio launches now open the right pane on **Response (Preview)** by default, while file-backed launches still open on **Editor (Preview)**.
|
|
11
|
+
|
|
7
12
|
## [0.6.8] — 2026-05-01
|
|
8
13
|
|
|
9
14
|
### Changed
|
package/client/studio-client.js
CHANGED
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
let initialDocumentApplied = false;
|
|
177
177
|
function getInitialRightView(source) {
|
|
178
178
|
if (isEditorOnlyMode) return "editor-preview";
|
|
179
|
-
return String(source || "").trim() === "
|
|
179
|
+
return String(source || "").trim() === "file" ? "editor-preview" : "preview";
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
let editorView = "markdown";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-studio",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.9",
|
|
4
4
|
"description": "Two-pane browser workspace for pi with prompt/response editing, annotations, critiques, prompt/response history, and live Markdown/LaTeX/code preview",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|