From d0b3b7a15b59266b4ae4262fdb0364245092c17c Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Fri, 24 Apr 2026 12:38:38 -0500 Subject: feat(v3.7.0): add timeline and advanced diffing system - introduce TimelineView for historical snapshots - allow comparison between any two snapshots - implement DiffService for structured domain diffs - improve diff visualization with clear change indicators - add navigation across changes - optimize history loading for performance - extend CLI and export to support timeline data --- DomainDig/ReachabilityService.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'DomainDig/ReachabilityService.swift') diff --git a/DomainDig/ReachabilityService.swift b/DomainDig/ReachabilityService.swift index 3fb7dd9..207499f 100644 --- a/DomainDig/ReachabilityService.swift +++ b/DomainDig/ReachabilityService.swift @@ -23,7 +23,7 @@ struct ReachabilityService { let queue = DispatchQueue(label: "reachability.\(port)") connection.start(queue: queue) - queue.asyncAfter(deadline: .now() + 5) { + queue.asyncAfter(deadline: .now() + 2) { context.finish(reachable: false) } } -- cgit v1.2.3