From 02097db31224526a5006d08f960593562da40aeb Mon Sep 17 00:00:00 2001 From: Dustin Mierau Date: Wed, 1 May 2024 21:40:31 -0700 Subject: Add "Download Latest" menu item to help. --- Hotline/Application-macOS.swift | 6 ++++++ 1 file changed, 6 insertions(+) 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") { -- cgit