ref: html footer

This commit is contained in:
relikd
2025-10-30 17:01:14 +01:00
parent 2580a85ca2
commit 117b37fdd7
3 changed files with 5 additions and 3 deletions

View File

@@ -4,6 +4,9 @@ extension HtmlGenerator {
/// Process meta information about the plugin. Like version and debug flag.
mutating func procFooterInfo() {
self.apply([
"SrcAppName": "QLAppBundle",
"SrcLinkUrl": "https://github.com/relikd/QLAppBundle",
"SrcLinkName": "relikd/QLAppBundle",
"BundleShortVersionString": Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "",
"BundleVersion": Bundle.main.infoDictionary?["CFBundleVersion"] as? String ?? "",
])

View File

@@ -15,8 +15,6 @@ struct HtmlGenerator {
procAppInfo(plistApp)
procItunesMeta(plistItunes)
procProvision(plistProvision, isOSX: meta.isOSX)
// Entitlements
procEntitlements(meta, plistApp, plistProvision)
procFileInfo(meta.url)
procFooterInfo()