Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kaleidoscope*: update livecheck #197768

Merged
merged 2 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions Casks/k/kaleidoscope.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,7 @@

livecheck do
url "https://updates.kaleidoscope.app/v#{version.major}/prod/appcast"
regex(/Kaleidoscope[._-]v?(\d+(?:\.\d+)+)[._-](\d+)\.app\.zip/i)
strategy :sparkle do |item, regex|
match = item.url.match(regex)
next if match.blank?

"#{match[1]},#{match[2]}"
end
strategy :sparkle
end

auto_updates true
Expand Down
8 changes: 2 additions & 6 deletions Casks/k/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,11 @@
# have to omit items with a different major version.
livecheck do
url "https://updates.kaleidoscope.app/v#{version.major}/prod/appcast"
regex(/Kaleidoscope[._-]v?(\d+(?:\.\d+)+)[._-](\d+)\.app\.zip/i)
strategy :sparkle do |items, regex|
strategy :sparkle do |items|
items.map do |item|
next if item.short_version&.split(".")&.first != version.major

match = item.url.match(regex)
next if match.blank?

"#{match[1]},#{match[2]}"
item.nice_version
end
end
end
Expand Down
Loading