pi-powerline-footer 0.2.2 → 0.2.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 +10 -0
- package/index.ts +1 -1
- package/package.json +4 -4
- /package/{install.mjs → cli.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.4] - 2026-01-15
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- Compatible with pi-tui 0.47.0 breaking change: CustomEditor constructor now requires `tui` as first argument
|
|
7
|
+
|
|
8
|
+
## [0.2.3] - 2026-01-15
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- npm bin entry now works correctly with `npx pi-powerline-footer`
|
|
12
|
+
|
|
3
13
|
## [0.2.2] - 2026-01-15
|
|
4
14
|
|
|
5
15
|
### Changed
|
package/index.ts
CHANGED
|
@@ -244,7 +244,7 @@ export default function powerlineFooter(pi: ExtensionAPI) {
|
|
|
244
244
|
import("@mariozechner/pi-coding-agent").then(({ CustomEditor }) => {
|
|
245
245
|
ctx.ui.setEditorComponent((tui: any, theme: any, keybindings: any) => {
|
|
246
246
|
// Create custom editor that overrides render for status in top border
|
|
247
|
-
const editor = new CustomEditor(theme, keybindings);
|
|
247
|
+
const editor = new CustomEditor(tui, theme, keybindings);
|
|
248
248
|
|
|
249
249
|
// Store original render
|
|
250
250
|
const originalRender = editor.render.bind(editor);
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-powerline-footer",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Powerline-style status bar extension for pi coding agent",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"pi-powerline-footer": "./
|
|
7
|
+
"pi-powerline-footer": "./cli.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"*.ts",
|
|
11
11
|
"*.md",
|
|
12
|
-
"
|
|
12
|
+
"cli.js"
|
|
13
13
|
],
|
|
14
14
|
"keywords": [
|
|
15
15
|
"pi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "https://github.com/nicobailon/pi-powerline-footer"
|
|
25
|
+
"url": "git+https://github.com/nicobailon/pi-powerline-footer.git"
|
|
26
26
|
}
|
|
27
27
|
}
|
/package/{install.mjs → cli.js}
RENAMED
|
File without changes
|