29 lines
769 B
Ruby
29 lines
769 B
Ruby
cask "maxink" do
|
|
version "0.12.1"
|
|
sha256 "74fba3cbed5d6fb9c2450fff8e5d91097c80a867a2011c3970e23e5a20cb5b58"
|
|
|
|
url "https://runxun.com/downloads/maxink/MaxInk_#{version}_universal.dmg"
|
|
name "MaxInk"
|
|
desc "Lightweight native Markdown reader and editor for macOS"
|
|
homepage "https://runxun.com/ai/tools/maxink"
|
|
|
|
livecheck do
|
|
url "https://runxun.com/downloads/maxink/latest.json"
|
|
strategy :json do |json|
|
|
json["version"]
|
|
end
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "MaxInk.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/ai.maxta.maxink",
|
|
"~/Library/Caches/ai.maxta.maxink",
|
|
"~/Library/Preferences/ai.maxta.maxink.plist",
|
|
"~/Library/Saved Application State/ai.maxta.maxink.savedState",
|
|
]
|
|
end
|