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.
Files changed (2) hide show
  1. package/CHANGELOG.md +48 -55
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,55 +1,48 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [Unreleased]
9
-
10
- ## [0.1.8] - 2026-04-22
11
-
12
- ### Changed
13
- - Clarified README installation and configuration paths to document the default global extension location and `PI_CODING_AGENT_DIR` override behavior
14
- - Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.68.1
15
-
16
- ## [0.1.7] - 2026-04-01
17
-
18
- ### Changed
19
- - Updated npm keywords and package metadata for improved discoverability
20
-
21
- ## [0.1.6] - 2026-04-01
22
-
23
- ### Changed
24
- - Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.64.0
25
-
26
- ## [0.1.5] - 2026-03-23
27
-
28
- ### Changed
29
- - Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.62.0
30
-
31
- ## [0.1.4] - 2026-03-12
32
-
33
- ### Changed
34
- - Updated AWS SDK and related dependencies
35
-
36
- ## [0.1.3] - 2026-03-04
37
-
38
- ### Fixed
39
- - Use absolute GitHub raw URL for README image to fix npm display
40
-
41
- ## [0.1.2] - 2026-03-04
42
-
43
- ### Changed
44
- - Rewrote README.md with professional documentation standards
45
- - Added comprehensive feature documentation, configuration reference, and usage examples
46
-
47
- ## [0.1.1] - 2026-03-02
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.8",
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.68.1",
62
- "@mariozechner/pi-tui": "^0.68.1"
61
+ "@mariozechner/pi-coding-agent": "^0.70.2",
62
+ "@mariozechner/pi-tui": "^0.70.2"
63
63
  }
64
64
  }