mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
29 lines
740 B
Ruby
29 lines
740 B
Ruby
cask "supernotes" do
|
|
version "3.0.6"
|
|
sha256 "2d4152a54c547c513a415725b5712570288156927a49d09c76ef5fa955ddde28"
|
|
|
|
url "https://download.supernotes.app/Supernotes-#{version}.dmg"
|
|
name "Supernotes"
|
|
desc "Collaborative note-taking app"
|
|
homepage "https://supernotes.app/"
|
|
|
|
livecheck do
|
|
url "https://api.supernotes.app/v1"
|
|
strategy :json do |json|
|
|
json["version"]
|
|
end
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Supernotes.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Supernotes",
|
|
"~/Library/Logs/Supernotes",
|
|
"~/Library/Preferences/app.supernotes.SupernotesDesktop.plist",
|
|
"~/Library/Saved Application State/app.supernotes.SupernotesDesktop.savedState",
|
|
]
|
|
end
|