mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
891 B
Ruby
27 lines
891 B
Ruby
cask "tableflip" do
|
|
version "1.5.0"
|
|
sha256 "41f14465710cb9f6941b689aae649aefa5b027a307799520463c167c46f397ff"
|
|
|
|
url "https://update.christiantietze.de/tableflip/v#{version.major}/TableFlip-v#{version}.zip",
|
|
verified: "update.christiantietze.de/tableflip/"
|
|
name "TableFlip"
|
|
desc "App to edit markdown files in place"
|
|
homepage "https://tableflipapp.com/"
|
|
|
|
livecheck do
|
|
url "https://update.christiantietze.de/tableflip/v#{version.major}/release.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "TableFlip.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/de.christiantietze.TableFlip",
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/de.christiantietze.tableflip.*",
|
|
"~/Library/Containers/de.christiantietze.TableFlip",
|
|
]
|
|
end
|