pi-powerline 0.4.0 → 0.4.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/README.md CHANGED
@@ -28,7 +28,7 @@ Settings are read from both global and project files. Project settings override
28
28
  "breadcrumb": "inner",
29
29
  "footer": true,
30
30
  "header": true,
31
- "header-info": false
31
+ "header-info": true
32
32
  }
33
33
  ```
34
34
 
@@ -38,7 +38,7 @@ Settings are read from both global and project files. Project settings override
38
38
  | `breadcrumb` | `"hide"` / `"top"` / `"inner"` | `"inner"` | Breadcrumb placement |
39
39
  | `footer` | `true` / `false` | `true` | Enable custom footer |
40
40
  | `header` | `true` / `false` | `true` | Enable custom gradient-logo header |
41
- | `header-info` | `true` / `false` | `false` | Show header diagnostic info on startup/reload |
41
+ | `header-info` | `true` / `false` | `true` | Show header diagnostic info on startup/reload |
42
42
 
43
43
  ### Header info
44
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-powerline",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Powerline-style UI extensions for pi coding agent (custom editor, breadcrumb, footer, header)",
5
5
  "homepage": "https://github.com/jwu/pi-powerline#readme",
6
6
  "repository": {
package/settings.ts CHANGED
@@ -19,7 +19,7 @@ const DEFAULTS: PowerlineSettings = {
19
19
  breadcrumb: 'inner',
20
20
  footer: true,
21
21
  header: true,
22
- 'header-info': false,
22
+ 'header-info': true,
23
23
  quietStartup: false,
24
24
  };
25
25