Files
homebrew-cask/Casks/s/supernotes.rb
2023-12-02 08:57:46 -07:00

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