add dmg builder, first launch v0.1-beta
This commit is contained in:
parent
b2d6f95f70
commit
30b0638ddd
4 changed files with 106 additions and 64 deletions
|
|
@ -133,6 +133,7 @@ final class StatusBarController: NSObject, NSMenuDelegate {
|
|||
}
|
||||
|
||||
@objc private func aboutAction() {
|
||||
let versionString = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "0.1-beta"
|
||||
let creditsString = String(localized: "Bypasses mobile carrier hotspot tethering detection by adjusting outgoing IPv4 TTL to 65, IPv6 Hop Limit to 65, and flushing system DNS caches.\n\nDesigned for macOS.")
|
||||
var options: [NSApplication.AboutPanelOptionKey: Any] = [
|
||||
.credits: NSAttributedString(
|
||||
|
|
@ -143,7 +144,7 @@ final class StatusBarController: NSObject, NSMenuDelegate {
|
|||
]
|
||||
),
|
||||
.applicationName: "Tethering Hider",
|
||||
.version: "1.0.0"
|
||||
.version: versionString
|
||||
]
|
||||
|
||||
if let appIcon = NSImage(named: NSImage.applicationIconName) ?? NSApplication.shared.applicationIconImage {
|
||||
|
|
|
|||
Loading…
Reference in a new issue