diff options
| -rw-r--r-- | Hotline/Application-macOS.swift | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Hotline/Application-macOS.swift b/Hotline/Application-macOS.swift index 34fec3e..4cad224 100644 --- a/Hotline/Application-macOS.swift +++ b/Hotline/Application-macOS.swift @@ -118,6 +118,12 @@ struct Application: App { openURL(url) } } + Divider() + Button("Download Latest...") { + if let url = URL(string: "https://github.com/mierau/hotline/releases/latest") { + openURL(url) + } + } } CommandMenu("Server") { Button("Disconnect") { |