From 22ecca12b4fe0e0850401754c674632f322d919d Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Tue, 21 Apr 2026 22:08:09 -0500 Subject: feat(v2.3.0): add ownership intelligence and subdomain discovery * implement RDAP-based ownership section * add ownership diffing and change classification * add passive subdomain discovery via certificate transparency * highlight interesting subdomains * introduce Data+ scaffolding for future features * include ownership and subdomains in export and history --- DomainDig/BatchSweepSummaryView.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'DomainDig/BatchSweepSummaryView.swift') diff --git a/DomainDig/BatchSweepSummaryView.swift b/DomainDig/BatchSweepSummaryView.swift index fda2bc5..61b3e37 100644 --- a/DomainDig/BatchSweepSummaryView.swift +++ b/DomainDig/BatchSweepSummaryView.swift @@ -12,7 +12,10 @@ struct BatchSweepSummaryView: View { } return summary.results.filter { - ($0.changeSeverity ?? .low) >= .medium || $0.certificateWarningLevel != .none || $0.status == .failed + $0.quickStatus == "Changed" || + $0.quickStatus == "High" || + $0.certificateWarningLevel != .none || + $0.status == .failed } } -- cgit v1.2.3