| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | refactor: extract ProfileView from SettingsViewv2.10.3 | Christian Cleberg | 2026-04-11 | 3 | -578/+659 |
| | | | | | | Move profile-related UI into its own dedicated ProfileView, simplifying SettingsView and improving navigation structure in MoreView. | ||||
| * | add FUNDING.yml | Christian Cleberg | 2026-04-11 | 1 | -0/+1 |
| | | |||||
| * | update sonarqube badges | Christian Cleberg | 2026-04-11 | 1 | -2/+2 |
| | | |||||
| * | bump version and update new privacy policy location | Christian Cleberg | 2026-04-10 | 7 | -716/+9 |
| | | |||||
| * | chore: add explanatory comments to all intentional empty closuresv2.10.2 | Christian Cleberg | 2026-04-03 | 5 | -9/+23 |
| | | |||||
| * | chore: rename unused coder param to _ in CodeFileUIView | Christian Cleberg | 2026-04-03 | 2 | -9/+9 |
| | | |||||
| * | Fixed extraneous srht.site link in MoreViewv2.10.1 | Christian Cleberg | 2026-04-03 | 2 | -10/+9 |
| | | |||||
| * | feat: add in-app man pages browser | Christian Cleberg | 2026-04-03 | 8 | -11/+427 |
| | | | | | | | | | | | | | | | Add a native Man Pages section to the More tab with in-app browsing for man.sr.ht documentation and srht.site pages. - add ManPageService for fetching and extracting public docs content - add ManPageBrowserView and ManPageDetailView - add More tab navigation for Man Pages - support in-place navigation for internal documentation links - allow HTMLWebView to intercept internal links and use a base URL - support man.sr.ht and srht.site content extraction - remove heading permalink "#" anchors from man page rendering - fix relative links, fragment links, and srht.site CTA/icon layout | ||||
| * | fix: remove stray filesv2.9.1 | Christian Cleberg | 2026-04-02 | 2 | -338/+0 |
| | | |||||
| * | add hg parity | Christian Cleberg | 2026-04-02 | 2 | -32/+115 |
| | | |||||
| * | Implement search history for Look Up page | Christian Cleberg | 2026-04-02 | 5 | -10/+199 |
| | | |||||
| * | feat: browse user repositories and trackers from profilev2.9.0 | Christian Cleberg | 2026-04-02 | 7 | -18/+571 |
| | | |||||
| * | bump versionv2.8.2 | Christian Cleberg | 2026-04-01 | 1 | -8/+8 |
| | | |||||
| * | feat: expand user profile in Look Up | Christian Cleberg | 2026-04-01 | 3 | -8/+100 |
| | | |||||
| * | feat: show commit dates in Refs tabv2.8.1 | Christian Cleberg | 2026-04-01 | 7 | -20/+153 |
| | | |||||
| * | feat: add Look Up screen and restrict management actions to ownersv2.8.0 | Christian Cleberg | 2026-04-01 | 11 | -20/+535 |
| | | | | | Implements: https://todo.sr.ht/~ccleberg/Hutch/4 | ||||
| * | add API docsv2.7.1 | Christian Cleberg | 2026-04-01 | 1 | -0/+44 |
| | | |||||
| * | add API docs | Christian Cleberg | 2026-04-01 | 7 | -0/+7 |
| | | |||||
| * | add confirmation to repo rename | Christian Cleberg | 2026-04-01 | 1 | -7/+21 |
| | | |||||
| * | fix copy throughout repo | Christian Cleberg | 2026-04-01 | 7 | -18/+17 |
| | | |||||
| * | standardize nav labels | Christian Cleberg | 2026-04-01 | 4 | -11/+11 |
| | | |||||
| * | reverse order of swipe actions for user acls in trackers | Christian Cleberg | 2026-04-01 | 1 | -8/+7 |
| | | |||||
| * | remove TESTING.md | Christian Cleberg | 2026-04-01 | 1 | -28/+0 |
| | | |||||
| * | Add tracker management (delete/update, ACLs, labels)v2.7.0 | Christian Cleberg | 2026-04-01 | 9 | -223/+1783 |
| | | | | | | | | | | | | | | - Add swipe actions (delete/edit) to tracker list - Add tracker settings menu on detail screen - Implement updateTracker and deleteTracker mutations - Implement ACL management (updateUserACL, updateTrackerACL, deleteACL) - Implement label management (createLabel, updateLabel, deleteLabel) - Add dedicated UI flows for ACLs and labels - Ensure state refresh after mutations - Handle loading, errors, and destructive confirmations Implements: https://todo.sr.ht/~ccleberg/Hutch/12 | ||||
| * | Fix several bugs ahead of 2.6.1v2.6.1 | Christian Cleberg | 2026-04-01 | 5 | -17/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | FileTreeView: when wrap is OFF, activate an explicit width constraint on the code container derived from the widest line, giving the horizontal scroll view a defined content size. Previously the constraint was deactivated with nothing to replace it, making horizontal scrolling unreliable. Also set horizontalScrollView.isScrollEnabled = !wrapLines to prevent gesture conflicts when wrap is ON. InboxView: remove the unnecessary loadThreads() network call fired after markAllThreadsRead(). The threads array is already updated optimistically and read state is persisted via InboxReadStateStore, so the refetch was redundant and caused a brief loading flash. HomeView: add scenePhase onChange handler to refresh dashboard data when the app returns to the foreground, matching the existing pattern in InboxView. DiffView: wrap DiffBlockView content in a horizontal ScrollView so long diff lines are readable. Switch inner VStack to LazyVStack for better performance on large diffs. SettingsView: replace direct UserDefaults access in behaviorSection with @AppStorage, consistent with the rest of the app. | ||||
| * | Rewrite file viewer with pinned gutter, syntax highlighting, and toolbar | Christian Cleberg | 2026-04-01 | 4 | -51/+544 |
| | | | | | | | | | | | | | | | | | | | | | | | Replace the SwiftUI-only CodeFileTextView with a UIViewRepresentable backed by CodeFileUIView. The previous approach could not support a fixed line number gutter while independently scrolling code content horizontally. Changes: - Gutter is pinned outside the horizontal scroll view and never scrolls left - Vertical scroll is handled by a single outer UIScrollView shared by both the gutter and code content, keeping them in sync - Line numbers are right-aligned in a fixed-width gutter calculated from the total line count - Syntax highlighting via Splash for .swift files, with plain monospaced rendering as fallback for unsupported file types - Wrap toggle persisted via AppStorage (wrapRepositoryFileLines) - Bottom toolbar replaces the floating Share button, adding Copy All and Wrap toggle actions - Copy All shows a brief checkmark confirmation that resets after 2 seconds - Font fixed at SFMono-Regular 12pt, not scaled with Dynamic Type Implements: https://todo.sr.ht/~ccleberg/Hutch/7 | ||||
| * | fix: fixed inbox's inconsistent UX and adds a Mark All Read button | Christian Cleberg | 2026-04-01 | 3 | -20/+60 |
| | | | | | Fixes: https://todo.sr.ht/~ccleberg/Hutch/10 | ||||
| * | fix: add large widget and apply UX fixes for all widget sizes | Christian Cleberg | 2026-04-01 | 1 | -26/+106 |
| | | | | | Implements: https://todo.sr.ht/~ccleberg/Hutch/8 | ||||
| * | fix: ensure projects in Home tab are sorted by last updated date | Christian Cleberg | 2026-04-01 | 2 | -1/+5 |
| | | |||||
| * | fix: add tildes to username rows in account-switcher | Christian Cleberg | 2026-04-01 | 2 | -9/+9 |
| | | |||||
| * | feat: add multi-account supportv2.6.0 | Christian Cleberg | 2026-04-01 | 8 | -15/+317 |
| | | | | | Implements: https://todo.sr.ht/~ccleberg/Hutch/11 | ||||
| * | update website with app store linkv2.5.2 | Christian Cleberg | 2026-03-30 | 3 | -8/+17 |
| | | |||||
| * | Fix nonisolated table alignment lookup in Readme View | Christian Cleberg | 2026-03-30 | 4 | -18/+49 |
| | | |||||
| * | fix(org): improve org-mode rendering supportv2.5.1 | Christian Cleberg | 2026-03-30 | 3 | -62/+503 |
| | | |||||
| * | feat(markdown): finalize migration to apple/swift-markdown rendererv2.5.0 | Christian Cleberg | 2026-03-30 | 3 | -10/+50 |
| | | |||||
| * | Migrate README markdown rendering to swift-markdown and fix badge images | Christian Cleberg | 2026-03-30 | 5 | -386/+358 |
| | | | | | | | | | | | - replace the hand-rolled markdown parser with a MarkupVisitor renderer - keep the org-mode rendering path and shared sanitization helpers intact - update WKWebView styling and height measurement for README content - fix linked image and query-string badge rendering in markdown output - expand README rendering tests and add markdown syntax coverage Implements: https://todo.sr.ht/~ccleberg/Hutch/2 | ||||
| * | partial extended support for markdown and org-mode | Christian Cleberg | 2026-03-30 | 3 | -77/+849 |
| | | |||||
| * | chore: bump extension versionv2.3.1 | Christian Cleberg | 2026-03-24 | 1 | -4/+4 |
| | | |||||
| * | chore: rename unused context params to _ in NeedsAttentionTimelineProvider | Christian Cleberg | 2026-03-24 | 2 | -21/+21 |
| | | |||||
| * | v2.4.0: widgetsv2.4.0 | Christian Cleberg | 2026-03-24 | 13 | -39/+687 |
| | | |||||
| * | add sonarqube badges to README | Christian Cleberg | 2026-03-24 | 1 | -0/+2 |
| | | |||||
| * | bump version to v2.3.1 | Christian Cleberg | 2026-03-24 | 2 | -5/+5 |
| | | |||||
| * | fix: log errors in HomeViewModel's silent catch blocks | Christian Cleberg | 2026-03-24 | 1 | -0/+6 |
| | | |||||
| * | fix: route executeGraphQLRequest through SRHTClient instead of URLSession.shared | Christian Cleberg | 2026-03-24 | 1 | -29/+5 |
| | | |||||
| * | chore: rename unused entry param to _ in textBlobView | Christian Cleberg | 2026-03-24 | 1 | -2/+2 |
| | | |||||
| * | chore: rename unused protocol params to _ across UIKit representables | Christian Cleberg | 2026-03-24 | 4 | -9/+9 |
| | | |||||
| * | fix: add nested comments to satisfy sonar rule swift:S1186 | Christian Cleberg | 2026-03-24 | 9 | -17/+46 |
| | | |||||
| * | Bump version to 2.3.0 build 8v2.3.0 | Christian Cleberg | 2026-03-23 | 1 | -4/+6 |
| | | |||||
| * | Present build logs in a live-updating sheet | Christian Cleberg | 2026-03-23 | 1 | -33/+95 |
| | | |||||
| * | Add scoped auto-refresh to build detail | Christian Cleberg | 2026-03-23 | 3 | -20/+179 |
| | | |||||
