Merge pull request #163886 from chenrui333/lookin-update-depends_on

lookin: needs 11.0+
This commit is contained in:
Bevan Kay
2024-01-08 10:11:09 +11:00
committed by GitHub
+6 -2
View File
@@ -7,13 +7,17 @@ cask "lookin" do
desc "App for iOS view debugging"
homepage "https://lookin.work/"
# The pubDate for some items includes non-english characters (breaking the date parsing)
# so it's necessary to map all of the items in the feed.
livecheck do
url "https://lookin.work/release/appcast.xml"
strategy :sparkle, &:short_version
strategy :sparkle do |items|
items.map(&:short_version)
end
end
auto_updates true
depends_on macos: ">= :mojave"
depends_on macos: ">= :big_sur"
app "Lookin.app"
end