docs: clarify macOS release-specific support guidance#54
Conversation
Greptile SummaryThis PR removes the stale blanket
Confidence Score: 5/5Safe to merge — all four changes are copy-only edits that remove a now-incorrect macOS version claim and consistently redirect users to the release assets for accurate build information. Every changed line is documentation or schema text; no logic, routing, or data-handling code is touched. The author validated the change against actual binary metadata, and a repo-wide grep confirms no residual 10.15 strings remain. No files require special attention. All four files carry straightforward text replacements with no side-effects. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[User visits activitywatch.net] --> B{Needs macOS build?}
B -- No --> C[Download latest stable build]
B -- Yes --> D[Reads updated copy: 'macOS support varies by release']
D --> E[Homepage FAQ link to /downloads/]
D --> F[Downloads page note]
E --> G[GitHub release assets]
F --> G
G --> H{Find matching arch + macOS version}
H -- x86_64 / Intel --> I[v0.13.2 · min macOS 10.13]
H -- arm64 / Apple Silicon --> J[v0.14.0b1 · min macOS 11.0]
Reviews (1): Last reviewed commit: "docs: clarify macOS release-specific gui..." | Re-trigger Greptile |
Summary
10.15+Why
ActivityWatch/activitywatch#1294surfaced that the public site was overpromising a single macOS minimum version. The current release lines do not share one universal macOS floor, so the old copy was misleading.Impact
Users looking for Catalina/Intel compatibility get pointed at the release assets instead of a wrong blanket claim.
Validation
10.15+copy in this repo before editingActivityWatch/activitywatchv0.13.2macOSx86_64binary advertisesLC_VERSION_MIN_MACOSX 10.13.0v0.14.0b1macOSarm64binary advertisesLC_BUILD_VERSION minos 11.0.0Related to ActivityWatch/activitywatch#1294.