codeforge-dev 1.5.3 → 1.5.4
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.
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
### Fixed
|
|
10
10
|
|
|
11
|
+
- **ccstatusline powerline glyphs**: Powerline separators/caps were empty strings, rendering as underscores. Now uses proper Nerd Font glyphs (U+E0B0, U+E0B4, U+E0B6)
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
11
15
|
- **cc/claude aliases**: Converted from shell functions to simple aliases — functions were not reliably invoked across shell contexts (tmux, docker exec, external terminals), causing Claude to launch without config
|
|
12
16
|
- **CLAUDE_CONFIG_DIR export**: Now exported in `.bashrc`/`.zshrc` directly, so credentials are found in all shells (not just VS Code terminals where `remoteEnv` applies)
|
|
13
17
|
|
|
@@ -94,10 +94,10 @@ CONFIG_JSON=$(jq -n '{
|
|
|
94
94
|
globalBold: false,
|
|
95
95
|
powerline: {
|
|
96
96
|
enabled: true,
|
|
97
|
-
separators: [""],
|
|
97
|
+
separators: ["\ue0b0"],
|
|
98
98
|
separatorInvertBackground: [true],
|
|
99
|
-
startCaps: [""],
|
|
100
|
-
endCaps: [""],
|
|
99
|
+
startCaps: ["\ue0b6"],
|
|
100
|
+
endCaps: ["\ue0b4"],
|
|
101
101
|
autoAlign: false,
|
|
102
102
|
theme: "monokai"
|
|
103
103
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeforge-dev",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"description": "Complete development container that sets up Claude Code with modular devcontainer features, modern dev tools, and persistent configurations. Drop it into any project and get a production-ready AI development environment in minutes.",
|
|
5
5
|
"main": "setup.js",
|
|
6
6
|
"bin": {
|