diff options
| author | Christian Cleberg <[email protected]> | 2026-07-25 11:41:21 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-07-25 11:49:23 -0500 |
| commit | 269d9590711144057a9f579761c30ff903a75eec (patch) | |
| tree | 711300fbb979e67138ee0ccf8100b75e7faf85cd | |
| parent | 074052763638a36e274e18d00f5f5ab21846be28 (diff) | |
| download | domain-dig-269d9590711144057a9f579761c30ff903a75eec.tar.gz domain-dig-269d9590711144057a9f579761c30ff903a75eec.tar.bz2 domain-dig-269d9590711144057a9f579761c30ff903a75eec.zip | |
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.
| -rw-r--r-- | DomainDig/AppLinks.swift | 9 |
1 files changed, 4 insertions, 5 deletions
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") |
