pi-startup-redraw-fix 0.1.7 → 0.1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +15 -2
  2. package/README.md +4 -3
  3. package/package.json +64 -64
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
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
+
3
16
  ## [0.1.7] - 2026-04-01
4
17
 
5
18
  ### Changed
@@ -31,12 +44,12 @@
31
44
  - Rewrote README.md with professional documentation standards
32
45
  - Added comprehensive feature documentation, configuration reference, and usage examples
33
46
 
34
- ## 0.1.1
47
+ ## [0.1.1] - 2026-03-02
35
48
 
36
49
  - Added `asset/` to the npm `files` whitelist so README image assets are included in package tarballs.
37
50
  - Bumped patch version for republish.
38
51
 
39
- ## 0.1.0
52
+ ## [0.1.0] - 2026-03-02
40
53
 
41
54
  - Standardized repository structure with `src/` layout and root shim entrypoint.
42
55
  - Kept terminal clear-sequence patch behavior unchanged.
package/README.md CHANGED
@@ -30,7 +30,7 @@ Place the extension folder in one of Pi's auto-discovered extension locations:
30
30
 
31
31
  | Location | Path |
32
32
  |----------|------|
33
- | Global | `~/.pi/agent/extensions/pi-startup-redraw-fix` |
33
+ | Global default | `~/.pi/agent/extensions/pi-startup-redraw-fix` (respects `PI_CODING_AGENT_DIR`) |
34
34
  | Project | `.pi/extensions/pi-startup-redraw-fix` |
35
35
 
36
36
  Alternatively, add the path to your Pi settings `extensions` array.
@@ -57,8 +57,9 @@ When loaded, the extension immediately patches `ProcessTerminal.prototype.write`
57
57
 
58
58
  Configuration is stored at `config.json` alongside the extension:
59
59
 
60
- ```
61
- ~/.pi/agent/extensions/pi-startup-redraw-fix/config.json
60
+ ```text
61
+ Default global path: ~/.pi/agent/extensions/pi-startup-redraw-fix/config.json
62
+ Actual global path: $PI_CODING_AGENT_DIR/extensions/pi-startup-redraw-fix/config.json when PI_CODING_AGENT_DIR is set
62
63
  ```
63
64
 
64
65
  A template is provided at `config/config.example.json`.
package/package.json CHANGED
@@ -1,64 +1,64 @@
1
- {
2
- "name": "pi-startup-redraw-fix",
3
- "version": "0.1.7",
4
- "description": "Pi extension that patches terminal full-clear ordering to avoid startup redraw glitches.",
5
- "type": "module",
6
- "main": "./index.ts",
7
- "exports": {
8
- ".": "./index.ts"
9
- },
10
- "files": [
11
- "index.ts",
12
- "src",
13
- "asset",
14
- "config/config.example.json",
15
- "README.md",
16
- "CHANGELOG.md",
17
- "LICENSE"
18
- ],
19
- "scripts": {
20
- "build": "npx --yes -p typescript@5.7.3 tsc -p tsconfig.json --noCheck",
21
- "lint": "npm run build",
22
- "test": "node --test",
23
- "check": "npm run lint && npm run test"
24
- },
25
- "keywords": [
26
- "pi-package",
27
- "pi",
28
- "pi-extension",
29
- "pi-coding-agent",
30
- "pi-tui",
31
- "coding-agent",
32
- "terminal",
33
- "terminal-emulator",
34
- "startup",
35
- "startup-fix",
36
- "redraw",
37
- "bugfix"
38
- ],
39
- "author": "MasuRii",
40
- "license": "MIT",
41
- "repository": {
42
- "type": "git",
43
- "url": "git+https://github.com/MasuRii/pi-startup-redraw-fix.git"
44
- },
45
- "bugs": {
46
- "url": "https://github.com/MasuRii/pi-startup-redraw-fix/issues"
47
- },
48
- "homepage": "https://github.com/MasuRii/pi-startup-redraw-fix#readme",
49
- "engines": {
50
- "node": ">=20"
51
- },
52
- "publishConfig": {
53
- "access": "public"
54
- },
55
- "pi": {
56
- "extensions": [
57
- "./index.ts"
58
- ]
59
- },
60
- "peerDependencies": {
61
- "@mariozechner/pi-coding-agent": "^0.64.0",
62
- "@mariozechner/pi-tui": "^0.64.0"
63
- }
64
- }
1
+ {
2
+ "name": "pi-startup-redraw-fix",
3
+ "version": "0.1.8",
4
+ "description": "Pi extension that patches terminal full-clear ordering to avoid startup redraw glitches.",
5
+ "type": "module",
6
+ "main": "./index.ts",
7
+ "exports": {
8
+ ".": "./index.ts"
9
+ },
10
+ "files": [
11
+ "index.ts",
12
+ "src",
13
+ "asset",
14
+ "config/config.example.json",
15
+ "README.md",
16
+ "CHANGELOG.md",
17
+ "LICENSE"
18
+ ],
19
+ "scripts": {
20
+ "build": "npx --yes -p typescript@5.7.3 tsc -p tsconfig.json --noCheck",
21
+ "lint": "npm run build",
22
+ "test": "node --test",
23
+ "check": "npm run lint && npm run test"
24
+ },
25
+ "keywords": [
26
+ "pi-package",
27
+ "pi",
28
+ "pi-extension",
29
+ "pi-coding-agent",
30
+ "pi-tui",
31
+ "coding-agent",
32
+ "terminal",
33
+ "terminal-emulator",
34
+ "startup",
35
+ "startup-fix",
36
+ "redraw",
37
+ "bugfix"
38
+ ],
39
+ "author": "MasuRii",
40
+ "license": "MIT",
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/MasuRii/pi-startup-redraw-fix.git"
44
+ },
45
+ "bugs": {
46
+ "url": "https://github.com/MasuRii/pi-startup-redraw-fix/issues"
47
+ },
48
+ "homepage": "https://github.com/MasuRii/pi-startup-redraw-fix#readme",
49
+ "engines": {
50
+ "node": ">=20"
51
+ },
52
+ "publishConfig": {
53
+ "access": "public"
54
+ },
55
+ "pi": {
56
+ "extensions": [
57
+ "./index.ts"
58
+ ]
59
+ },
60
+ "peerDependencies": {
61
+ "@mariozechner/pi-coding-agent": "^0.68.1",
62
+ "@mariozechner/pi-tui": "^0.68.1"
63
+ }
64
+ }