From 269d9590711144057a9f579761c30ff903a75eec Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sat, 25 Jul 2026 11:41:21 -0500 Subject: feat: use the real App Store ID in AppLinks (#56) The listing is already live (per the README badge), so replace the placeholder appStoreID with the real 6760368004. The App Store listing, write-review, and Share URLs now resolve to the actual app. Removes the release TODO. --- DomainDig/AppLinks.swift | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'DomainDig') diff --git a/DomainDig/AppLinks.swift b/DomainDig/AppLinks.swift index 39c9036..cdbd9fc 100644 --- a/DomainDig/AppLinks.swift +++ b/DomainDig/AppLinks.swift @@ -3,12 +3,11 @@ import Foundation /// Centralized external destinations, kept in one place so URLs and the App Store /// identifier can be swapped without touching any view. /// -/// TODO(release): `appStoreID` is a placeholder until the App Store listing is -/// live — the listing/review/share URLs derive from it. `documentation` points -/// at the repository README for now; swap in a dedicated docs site if one lands. +/// `documentation` points at the repository README for now; swap in a dedicated +/// docs site if one lands. enum AppLinks { - /// App Store numeric identifier. Placeholder until the listing is published. - static let appStoreID = "0000000000" + /// App Store numeric identifier; the listing/review/share URLs derive from it. + static let appStoreID = "6760368004" static let sourceCode = url("https://github.com/zerolabsco/domain-dig") static let documentation = url("https://github.com/zerolabsco/domain-dig#readme") -- cgit v1.2.3