feat: debug bundle id

This commit is contained in:
relikd
2025-10-30 18:00:42 +01:00
parent dbf089264c
commit 6ec988c25a
2 changed files with 10 additions and 9 deletions

View File

@@ -10,5 +10,8 @@ extension HtmlGenerator {
"BundleShortVersionString": Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "",
"BundleVersion": Bundle.main.infoDictionary?["CFBundleVersion"] as? String ?? "",
])
#if DEBUG
self.data["SrcAppName"]! += " (debug)"
#endif
}
}