You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ai-statusline): fix PowerShell script template bugs for Windows
- Replace reserved $input variable with [System.Console]::In.ReadToEnd()
- Set [Console]::OutputEncoding to UTF-8 for Unicode character support
- Use [char] codes instead of literal Unicode to avoid file encoding issues
- Fix progress bar to use Unicode block characters matching bash template
- Fix segment separator to use middle dot matching bash template and docs
- Quote paths in Split-Path and git -C for directories with spaces
- Clarify cost format string to avoid resembling a variable reference
- Update plugin version to 1.2.1, marketplace version to 2.0.1
- Add README.md badge version to CLAUDE.md versioning checklist
Copy file name to clipboardExpand all lines: .claude-plugin/marketplace.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
},
7
7
"metadata": {
8
8
"description": "A curated list of custom Claude Code plugins, agents, and skills for developers.",
9
-
"version": "2.0.0",
9
+
"version": "2.0.1",
10
10
"pluginRoot": "./plugins"
11
11
},
12
12
"plugins": [
@@ -155,7 +155,7 @@
155
155
"name": "ai-statusline",
156
156
"source": "./plugins/ai-statusline",
157
157
"description": "AI-powered status line customization - Interactive setup and edit wizards for configuring Claude Code's status line with progress bars and customizable display options",
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [Unreleased]
9
9
10
+
## [2.0.1] - 2026-02-17
11
+
12
+
### Fixed
13
+
14
+
#### AI-Statusline Plugin (v1.2.1)
15
+
16
+
-**Fixed PowerShell script template bugs**
17
+
- Fixed stdin reading using reserved `$input` automatic variable; replaced with `[System.Console]::In.ReadToEnd()` so the script actually receives JSON data when invoked via `-File`
18
+
- Fixed progress bar using ASCII `+`/`-` instead of Unicode `▓`/`░` to match bash template and documentation
19
+
- Fixed segment separator using `" | "` instead of `" · "` to match bash template and README examples
20
+
- Fixed unquoted paths in `Split-Path` and `git -C` that would break on directories with spaces
21
+
- Fixed confusing cost format string `'${0:F2}'` that resembles a variable reference; clarified with string concatenation
22
+
- Fixed Unicode character encoding by setting `[Console]::OutputEncoding` to UTF-8 and using `[char]` codes instead of literal Unicode in source file
23
+
10
24
## [2.0.0] - 2026-02-16
11
25
12
26
### Added
@@ -698,7 +712,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
698
712
699
713
- README.md, CLAUDE.md, individual plugin READMEs, and MIT license
Copy file name to clipboardExpand all lines: plugins/ai-statusline/.claude-plugin/plugin.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "ai-statusline",
3
-
"version": "1.2.0",
3
+
"version": "1.2.1",
4
4
"description": "AI-powered status line customization - Interactive setup and edit wizards for configuring Claude Code's status line with progress bars and customizable display options",
0 commit comments