From 3f0b7746b1bee4c2f626eb805e3fd13c5f2f5d22 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Fri, 24 Apr 2026 15:04:54 -0500 Subject: DomainDig v3.8.0 — Smart Monitoring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Stable domain intervals * Frequent changes decrease intervals * Duplicate states do not trigger alerts * Quiet hours suppress alerts * Quiet hours across midnight work correctly * Sensitivity levels alter behavior as expected --- DomainDig/PaywallView.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'DomainDig/PaywallView.swift') diff --git a/DomainDig/PaywallView.swift b/DomainDig/PaywallView.swift index 90578c7..cad8be4 100644 --- a/DomainDig/PaywallView.swift +++ b/DomainDig/PaywallView.swift @@ -10,7 +10,7 @@ struct PaywallView: View { NavigationStack { List { Section { - Text("Pro unlocks workflows, scale, monitoring automation, and exports. Data+ adds deeper external intelligence with local-first usage credits and no account requirement.") + Text("Pro unlocks workflows, scale, monitoring automation, and exports. Pro+ adds deeper external intelligence with no additional usage limits.") .font(appDensity.font(.body, design: .default)) .foregroundStyle(.secondary) .fixedSize(horizontal: false, vertical: true) @@ -25,7 +25,7 @@ struct PaywallView: View { featureRow("Advanced exports") } - Section("What Data+ Unlocks") { + Section("What Pro+ Unlocks") { featureRow("Ownership history") featureRow("DNS history") featureRow("Extended subdomains") @@ -125,10 +125,10 @@ struct PaywallView: View { return "Pro Monthly" case PurchaseService.yearlyProductID: return "Pro Yearly" - case PurchaseService.dataPlusMonthlyProductID: - return "Data+ Monthly" - case PurchaseService.dataPlusYearlyProductID: - return "Data+ Yearly" + case PurchaseService.proPlusMonthlyProductID: + return "Pro+ Monthly" + case PurchaseService.proPlusYearlyProductID: + return "Pro+ Yearly" default: return product.displayName } -- cgit v1.2.3