Skip to content

Commit 2725e00

Browse files
fix(ai-statusline): Replace Unicode progress bar chars with ASCII for PowerShell compatibility
1 parent be5bf0a commit 2725e00

5 files changed

Lines changed: 17 additions & 6 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"metadata": {
88
"description": "A curated list of custom Claude Code plugins, agents, and skills for developers.",
9-
"version": "1.7.0",
9+
"version": "1.7.1",
1010
"pluginRoot": "./plugins"
1111
},
1212
"plugins": [
@@ -168,7 +168,7 @@
168168
"name": "ai-statusline",
169169
"source": "./plugins/ai-statusline",
170170
"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",
171-
"version": "1.1.0",
171+
"version": "1.1.1",
172172
"keywords": [
173173
"ai",
174174
"statusline",

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.7.1] - 2025-12-17
11+
12+
### Fixed
13+
14+
#### AI-Statusline Plugin (v1.1.1)
15+
16+
- **Fixed PowerShell progress bar using incompatible Unicode characters**
17+
- Replaced `` and `` with ASCII-compatible `#` and `-` characters
18+
- Ensures progress bar displays correctly on Windows environments
19+
1020
## [1.7.0] - 2025-12-16
1121

1222
### Added
@@ -461,7 +471,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
461471

462472
- README.md, CLAUDE.md, individual plugin READMEs, and MIT license
463473

464-
[Unreleased]: https://github.com/charlesjones-dev/claude-code-plugins-dev/compare/v1.7.0...HEAD
474+
[Unreleased]: https://github.com/charlesjones-dev/claude-code-plugins-dev/compare/v1.7.1...HEAD
475+
[1.7.1]: https://github.com/charlesjones-dev/claude-code-plugins-dev/compare/v1.7.0...v1.7.1
465476
[1.7.0]: https://github.com/charlesjones-dev/claude-code-plugins-dev/compare/v1.6.3...v1.7.0
466477
[1.6.3]: https://github.com/charlesjones-dev/claude-code-plugins-dev/compare/v1.6.2...v1.6.3
467478
[1.6.2]: https://github.com/charlesjones-dev/claude-code-plugins-dev/compare/v1.6.1...v1.6.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Claude Code Plugins for Developers
22

3-
[![Version](https://img.shields.io/badge/version-1.7.0-blue.svg)](https://github.com/charlesjones-dev/claude-code-plugins-dev/releases)
3+
[![Version](https://img.shields.io/badge/version-1.7.1-blue.svg)](https://github.com/charlesjones-dev/claude-code-plugins-dev/releases)
44
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
55
[![GitHub Issues](https://img.shields.io/github/issues/charlesjones-dev/claude-code-plugins-dev.svg)](https://github.com/charlesjones-dev/claude-code-plugins-dev/issues)
66
[![GitHub Stars](https://img.shields.io/github/stars/charlesjones-dev/claude-code-plugins-dev.svg)](https://github.com/charlesjones-dev/claude-code-plugins-dev/stargazers)

plugins/ai-statusline/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ai-statusline",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"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",
55
"author": {
66
"name": "Charles Jones",

plugins/ai-statusline/skills/statusline-setup/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ function Build-ProgressBar {
356356
$filled = [math]::Floor($Percent * $bar_width / 100)
357357
$empty = $bar_width - $filled
358358
359-
$bar = ("" * $filled) + ("" * $empty)
359+
$bar = ("#" * $filled) + ("-" * $empty)
360360
return "$Color$bar $Percent%$reset"
361361
}
362362

0 commit comments

Comments
 (0)