cask "languagetool" do version "1.6.9" sha256 "2e1ebba6993669ef2c6ec28e5c208e1580396559e52106c7ab5235ac42241c0f" url "https://languagetool.org/download/mac-app/LanguageToolDesktop-#{version}.dmg" name "LanguageTool for Desktop" desc "Grammar, spelling and style suggestions in all the writing apps" homepage "https://languagetool.org/" # Older items in the Sparkle feed may have a newer pubDate, so it's necessary # to work with all of the items in the feed (not just the newest one). livecheck do url "https://languagetool.org/download/mac-app/appcast.xml" regex(/(\d+(?:\.\d+)+)/i) strategy :sparkle do |items, regex| # The Sparkle versioning scheme is inconsistent. We check the short # version directly since the versions are not listed chronologically. # The livecheck may need to be reverted to extracting the version from # the url. See: https://github.com/Homebrew/homebrew-cask/pull/156995 items.map { |item| item.short_version[regex, 1] } end end depends_on macos: ">= :big_sur" app "LanguageTool for Desktop.app" uninstall quit: "org.languagetool.desktop" zap trash: [ "~/Library/Application Support/LanguageTool for Desktop", "~/Library/Caches/org.languagetool.desktop", "~/Library/Preferences/org.languagetool.desktop.plist", ] end