krz/domain-dig

an ios app for DNS & SSL analysis

clone: git clone https://gitbay.org/krz/domain-dig.git

269d9590711144057a9f579761c30ff903a75eec

unsigned

author: Christian Cleberg <hello@cleberg.net> · 2026-07-25T16:41:21Z

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(-)

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")