mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
650 B
Ruby
26 lines
650 B
Ruby
cask "qownnotes" do
|
|
version "23.11.3"
|
|
sha256 "58766b285720ab8cac9833909dbbb03b1f94f92c03b893e84790cf3f8b26a1f0"
|
|
|
|
url "https://github.com/pbek/QOwnNotes/releases/download/v#{version}/QOwnNotes.dmg",
|
|
verified: "github.com/pbek/QOwnNotes/"
|
|
name "QOwnNotes"
|
|
desc "Plain-text file notepad and todo-list manager"
|
|
homepage "https://www.qownnotes.org/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "QOwnNotes.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Preferences/com.pbe.QOwnNotes.plist",
|
|
"~/Library/Saved Application State/com.PBE.QOwnNotes.savedState",
|
|
]
|
|
end
|