pi-startup-redraw-fix 0.1.8 → 0.1.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 +48 -55
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,55 +1,48 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
and
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
- Added `asset/` to the npm `files` whitelist so README image assets are included in package tarballs.
|
|
50
|
-
- Bumped patch version for republish.
|
|
51
|
-
|
|
52
|
-
## [0.1.0] - 2026-03-02
|
|
53
|
-
|
|
54
|
-
- Standardized repository structure with `src/` layout and root shim entrypoint.
|
|
55
|
-
- Kept terminal clear-sequence patch behavior unchanged.
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.1.9] - 2026-04-25
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Clarified the global extension path and `PI_CODING_AGENT_DIR` override behavior in README installation and configuration guidance
|
|
7
|
+
- Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.70.2
|
|
8
|
+
|
|
9
|
+
## [0.1.7] - 2026-04-01
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Updated npm keywords and package metadata for improved discoverability
|
|
13
|
+
|
|
14
|
+
## [0.1.6] - 2026-04-01
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.64.0
|
|
18
|
+
|
|
19
|
+
## [0.1.5] - 2026-03-23
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
- Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.62.0
|
|
23
|
+
|
|
24
|
+
## [0.1.4] - 2026-03-12
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- Updated AWS SDK and related dependencies
|
|
28
|
+
|
|
29
|
+
## [0.1.3] - 2026-03-04
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
- Use absolute GitHub raw URL for README image to fix npm display
|
|
33
|
+
|
|
34
|
+
## [0.1.2] - 2026-03-04
|
|
35
|
+
|
|
36
|
+
### Changed
|
|
37
|
+
- Rewrote README.md with professional documentation standards
|
|
38
|
+
- Added comprehensive feature documentation, configuration reference, and usage examples
|
|
39
|
+
|
|
40
|
+
## 0.1.1
|
|
41
|
+
|
|
42
|
+
- Added `asset/` to the npm `files` whitelist so README image assets are included in package tarballs.
|
|
43
|
+
- Bumped patch version for republish.
|
|
44
|
+
|
|
45
|
+
## 0.1.0
|
|
46
|
+
|
|
47
|
+
- Standardized repository structure with `src/` layout and root shim entrypoint.
|
|
48
|
+
- Kept terminal clear-sequence patch behavior unchanged.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-startup-redraw-fix",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Pi extension that patches terminal full-clear ordering to avoid startup redraw glitches.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.ts",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
]
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
62
|
-
"@mariozechner/pi-tui": "^0.
|
|
61
|
+
"@mariozechner/pi-coding-agent": "^0.70.2",
|
|
62
|
+
"@mariozechner/pi-tui": "^0.70.2"
|
|
63
63
|
}
|
|
64
64
|
}
|