@oh-my-pi/pi-coding-agent 12.14.0 → 12.14.1
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 +7 -1
- package/package.json +7 -7
- package/src/modes/interactive-mode.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [12.14.1] - 2026-02-19
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed `omp stats` failing on npm/bun installs by including required stats build files in published `@oh-my-pi/omp-stats` package ([#113](https://github.com/can1357/oh-my-pi/pull/113) by [@masonc15](https://github.com/masonc15))
|
|
10
|
+
|
|
5
11
|
## [12.14.0] - 2026-02-19
|
|
6
12
|
|
|
7
13
|
### Added
|
|
@@ -4848,4 +4854,4 @@ Initial public release.
|
|
|
4848
4854
|
- Git branch display in footer
|
|
4849
4855
|
- Message queueing during streaming responses
|
|
4850
4856
|
- OAuth integration for Gmail and Google Calendar access
|
|
4851
|
-
- HTML export with syntax highlighting and collapsible sections
|
|
4857
|
+
- HTML export with syntax highlighting and collapsible sections
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-pi/pi-coding-agent",
|
|
3
|
-
"version": "12.14.
|
|
3
|
+
"version": "12.14.1",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -85,12 +85,12 @@
|
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
87
|
"@mozilla/readability": "0.6.0",
|
|
88
|
-
"@oh-my-pi/omp-stats": "12.14.
|
|
89
|
-
"@oh-my-pi/pi-agent-core": "12.14.
|
|
90
|
-
"@oh-my-pi/pi-ai": "12.14.
|
|
91
|
-
"@oh-my-pi/pi-natives": "12.14.
|
|
92
|
-
"@oh-my-pi/pi-tui": "12.14.
|
|
93
|
-
"@oh-my-pi/pi-utils": "12.14.
|
|
88
|
+
"@oh-my-pi/omp-stats": "12.14.1",
|
|
89
|
+
"@oh-my-pi/pi-agent-core": "12.14.1",
|
|
90
|
+
"@oh-my-pi/pi-ai": "12.14.1",
|
|
91
|
+
"@oh-my-pi/pi-natives": "12.14.1",
|
|
92
|
+
"@oh-my-pi/pi-tui": "12.14.1",
|
|
93
|
+
"@oh-my-pi/pi-utils": "12.14.1",
|
|
94
94
|
"@sinclair/typebox": "^0.34.48",
|
|
95
95
|
"@xterm/headless": "^6.0.0",
|
|
96
96
|
"ajv": "^8.18.0",
|
|
@@ -200,7 +200,7 @@ export class InteractiveMode implements InteractiveModeContext {
|
|
|
200
200
|
this.ui.requestRender(true);
|
|
201
201
|
};
|
|
202
202
|
this.editor.onAutocompleteUpdate = () => {
|
|
203
|
-
this.ui.requestRender(
|
|
203
|
+
this.ui.requestRender();
|
|
204
204
|
};
|
|
205
205
|
this.#syncEditorMaxHeight();
|
|
206
206
|
this.#resizeHandler = () => {
|