claude-code-wrapped 0.1.4 → 0.1.5
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/claude_code_wrapped/__init__.py +1 -1
- package/claude_code_wrapped/ui.py +4 -2
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/uv.lock +1 -1
|
@@ -172,14 +172,16 @@ def create_hour_chart(distribution: list[int]) -> Panel:
|
|
|
172
172
|
color = COLORS["orange"]
|
|
173
173
|
elif 12 <= i < 18:
|
|
174
174
|
color = COLORS["blue"]
|
|
175
|
-
elif 18 <= i <
|
|
175
|
+
elif 18 <= i < 24:
|
|
176
176
|
color = COLORS["purple"]
|
|
177
177
|
else:
|
|
178
178
|
color = COLORS["gray"]
|
|
179
179
|
content.append(chars[idx], style=Style(color=color))
|
|
180
180
|
|
|
181
|
+
# Build aligned label (24 chars to match 24 bars)
|
|
182
|
+
# Labels at positions: 0, 6, 12, 18, with end marker
|
|
181
183
|
content.append("\n")
|
|
182
|
-
content.append("0
|
|
184
|
+
content.append("0 6 12 18 24", style=Style(color=COLORS["gray"]))
|
|
183
185
|
|
|
184
186
|
return Panel(
|
|
185
187
|
Align.center(content),
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED