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.
@@ -1,3 +1,3 @@
1
1
  """Claude Code Wrapped - Your year with Claude Code, Spotify Wrapped style."""
2
2
 
3
- __version__ = "0.1.4"
3
+ __version__ = "0.1.5"
@@ -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 < 22:
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 6 12 18 24", style=Style(color=COLORS["gray"]))
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-wrapped",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Your year with Claude Code - Spotify Wrapped style terminal experience",
5
5
  "bin": {
6
6
  "claude-code-wrapped": "./bin/cli.js"
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "claude-code-wrapped"
3
- version = "0.1.4"
3
+ version = "0.1.5"
4
4
  description = "Your year with Claude Code - Spotify Wrapped style terminal experience"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
package/uv.lock CHANGED
@@ -4,7 +4,7 @@ requires-python = ">=3.12"
4
4
 
5
5
  [[package]]
6
6
  name = "claude-code-wrapped"
7
- version = "0.1.3"
7
+ version = "0.1.4"
8
8
  source = { editable = "." }
9
9
  dependencies = [
10
10
  { name = "rich" },