mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
cask "timing" do
|
|
version "2023.5.5"
|
|
sha256 "51eadb6aeb9f8a52869d0e3ba203835d30ed065efbf0ae60b26173860bba0056"
|
|
|
|
url "https://updates.timingapp.com/download/Timing-#{version}.dmg"
|
|
name "Timing"
|
|
name "Timing 2"
|
|
desc "Automatic time and productivity tracking app"
|
|
homepage "https://timingapp.com/"
|
|
|
|
# Some items in the Sparkle feed may not have a pubDate, so it's necessary to
|
|
# work with all of the items in the feed (not just the newest one).
|
|
livecheck do
|
|
url "https://updates.timingapp.com/updates/timing2.xml"
|
|
strategy :sparkle do |items|
|
|
items.map(&:short_version)
|
|
end
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :mojave"
|
|
|
|
app "Timing.app"
|
|
|
|
uninstall login_item: "TimingHelper"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/info.eurocomp.Timing2",
|
|
"~/Library/Application Support/info.eurocomp.TimingHelper",
|
|
"~/Library/Application Support/info.eurocomp.TimingHelper.InfoExtractorService",
|
|
"~/Library/Caches/info.eurocomp.Timing2",
|
|
"~/Library/Caches/info.eurocomp.TimingHelper.InfoExtractorService",
|
|
"~/Library/Caches/info.eurocomp.TimingHelper",
|
|
"~/Library/Preferences/info.eurocomp.Timing2.plist",
|
|
"~/Library/Preferences/info.eurocomp.TimingHelper.InfoExtractorService.plist",
|
|
"~/Library/Preferences/info.eurocomp.TimingHelper.plist",
|
|
]
|
|
end
|