@oh-my-pi/pi-coding-agent 16.4.6 → 16.4.8
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/dist/cli.js +2754 -2754
- package/dist/types/modes/components/model-browser.d.ts +11 -1
- package/dist/types/modes/components/plan-review-overlay.d.ts +2 -0
- package/dist/types/modes/components/welcome.d.ts +4 -0
- package/package.json +12 -12
- package/src/eval/js/shared/rewrite-imports.ts +31 -13
- package/src/modes/components/model-browser.ts +42 -29
- package/src/modes/components/model-hub.ts +32 -26
- package/src/modes/components/plan-review-overlay.ts +7 -0
- package/src/modes/components/tips.txt +2 -1
- package/src/modes/components/welcome.ts +13 -14
- package/src/modes/interactive-mode.ts +13 -0
- package/src/web/search/providers/perplexity.ts +18 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [16.4.8] - 2026-07-12
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Improved search reliability for Perplexity provider by forcing retrieval for all queries
|
|
10
|
+
- Fixed JS eval cells losing top-level `function` and `var` declarations across cells when the defining cell contained top-level `await` — the async wrapper scoped them to the cell's IIFE instead of publishing them to the worker global
|
|
11
|
+
|
|
12
|
+
## [16.4.7] - 2026-07-12
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- Enabled Home and End keyboard navigation in the model browser
|
|
17
|
+
- Added a `c` hotkey in the plan-review overlay that copies the current reviewed plan markdown to the system clipboard, including in-overlay edits.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Streamlined list view styling by removing inline model role chips from row entries
|
|
22
|
+
- Reworked /models hub selection visuals: the background highlight band is reserved for mouse hover, the keyboard position is a cursor glyph drawn only in the pane that owns the arrow keys, and the sidebar's active scope renders as a bold accent label
|
|
23
|
+
- Removed the redundant "login" label from inactive (locked) provider entries in the Model Hub sidebar
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Fixed PageUp/PageDown in the model browser wrapping past the list edges instead of clamping
|
|
28
|
+
- Fixed the hover highlight sticking to the last hovered model row when the pointer moved into the provider sidebar
|
|
29
|
+
|
|
5
30
|
## [16.4.6] - 2026-07-12
|
|
6
31
|
|
|
7
32
|
### Added
|