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.
|
@@ -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:
|
|
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