From 61164b6dd8343c8699d091dd5fccc55beb0b90b9 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sat, 11 Apr 2026 19:47:40 -0500 Subject: feat: add contribution calendar to user profiles Add a trailing 365-day contribution heatmap to user profile views, backed by HutchStatsService. Includes calendar model, view model, SwiftUI calendar view, app configuration, and unit tests. --- Hutch/App/RootView.swift | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Hutch/App/RootView.swift') diff --git a/Hutch/App/RootView.swift b/Hutch/App/RootView.swift index 96c17a8..f3e7159 100644 --- a/Hutch/App/RootView.swift +++ b/Hutch/App/RootView.swift @@ -266,6 +266,7 @@ enum MoreRoute: Hashable { case lookup case lists case pastes + case profile case settings case mailingList(InboxMailingListReference) case thread(InboxThreadSummary) @@ -284,6 +285,8 @@ private struct MoreNavigationRoot: View { MailingListListView() case .pastes: PasteListView() + case .profile: + ProfileView() case .settings: SettingsView() case .mailingList(let mailingList): -- cgit v1.2.3