Files
homebrew-cask/Casks/c/contexts.rb
Mike McQuaid aa461148bb Move all remaining casks to sharded subdirectories.
The migration of `orka.rb` and then `o*.rb` has worked well without
complaint so: let's move everything else, too.
2023-08-09 12:08:38 +01:00

43 lines
1.1 KiB
Ruby

cask "contexts" do
on_mojave :or_older do
version "3.7.1"
sha256 "de5e4a660cc30276155606b539d1ae58684115a3983d69598f1505fcad499a87"
livecheck do
skip "Legacy version"
end
end
on_catalina :or_newer do
version "3.9.0"
sha256 "c86a214d5ee7718453d0fb6442b3ef9a7fc02c5c1582b6d28ef0c2e621a6b6aa"
livecheck do
url "https://contexts.co/appcasts/stable.xml"
strategy :sparkle do |item|
item.version.chars.join(".")
end
end
depends_on macos: ">= :catalina"
end
url "https://contexts.co/releases/Contexts-#{version}.dmg"
name "Contexts"
desc "Allows switching between application windows"
homepage "https://contexts.co/"
auto_updates true
app "Contexts.app"
uninstall quit: "com.contextsformac.Contexts"
zap trash: [
"~/Library/Application Support/.com.contextsformac.Contexts.plist",
"~/Library/Application Support/com.contextsformac.Contexts",
"~/Library/Caches/com.contextsformac.Contexts",
"~/Library/Logs/Contexts",
"~/Library/Preferences/com.contextsformac.Contexts.plist",
]
end