claude-code-wrapped 0.1.8 → 0.1.9

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.8"
3
+ __version__ = "0.1.9"
@@ -475,23 +475,7 @@ def create_credits_roll(stats: WrappedStats) -> list[Text]:
475
475
  averages.append(" [ENTER]", style=Style(color=COLORS["dark"]))
476
476
  frames.append(averages)
477
477
 
478
- # Frame 4: Code Activity
479
- code_activity = Text()
480
- code_activity.append("\n\n\n")
481
- code_activity.append(" C O D E A C T I V I T Y\n\n", style=Style(color=COLORS["orange"], bold=True))
482
- total_code_changes = stats.total_edits + stats.total_writes
483
- code_activity.append(" File Changes\n", style=Style(color=COLORS["white"], bold=True))
484
- code_activity.append(f" Edits: {stats.total_edits:,}\n", style=Style(color=COLORS["gray"]))
485
- code_activity.append(f" Writes: {stats.total_writes:,}\n", style=Style(color=COLORS["gray"]))
486
- code_activity.append(f" Total: {total_code_changes:,}\n", style=Style(color=COLORS["orange"], bold=True))
487
- code_activity.append("\n Averages\n", style=Style(color=COLORS["white"], bold=True))
488
- code_activity.append(f" Per day: {stats.avg_edits_per_day:.1f}\n", style=Style(color=COLORS["gray"]))
489
- code_activity.append(f" Per week: {stats.avg_edits_per_week:.1f}\n", style=Style(color=COLORS["gray"]))
490
- code_activity.append("\n\n")
491
- code_activity.append(" [ENTER]", style=Style(color=COLORS["dark"]))
492
- frames.append(code_activity)
493
-
494
- # Frame 5: Longest Conversation
478
+ # Frame 4: Longest Conversation
495
479
  if stats.longest_conversation_messages > 0:
496
480
  longest = Text()
497
481
  longest.append("\n\n\n")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-wrapped",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
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.8"
3
+ version = "0.1.9"
4
4
  description = "Your year with Claude Code - Spotify Wrapped style terminal experience"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"