diff --git a/resources/template.html b/resources/template.html index e9fdd6e..d5fbc22 100644 --- a/resources/template.html +++ b/resources/template.html @@ -75,8 +75,9 @@ __FileName__
__FileInfo__
+ diff --git a/src/Html+Footer.swift b/src/Html+Footer.swift index 86b3c2f..74b0151 100644 --- a/src/Html+Footer.swift +++ b/src/Html+Footer.swift @@ -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 ?? "", ]) diff --git a/src/HtmlGenerator.swift b/src/HtmlGenerator.swift index 9ee4f29..6889016 100644 --- a/src/HtmlGenerator.swift +++ b/src/HtmlGenerator.swift @@ -15,8 +15,6 @@ struct HtmlGenerator { procAppInfo(plistApp) procItunesMeta(plistItunes) procProvision(plistProvision, isOSX: meta.isOSX) - - // Entitlements procEntitlements(meta, plistApp, plistProvision) procFileInfo(meta.url) procFooterInfo()