From 17fcc7d692828d0c618235467c029e631a0b3e3f Mon Sep 17 00:00:00 2001 From: Sam Ford <1584702+samford@users.noreply.github.com> Date: Fri, 29 Sep 2023 23:57:44 -0400 Subject: [PATCH] m/musescore: update livecheck --- Casks/m/musescore.rb | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/Casks/m/musescore.rb b/Casks/m/musescore.rb index 887804dbe47..248d3e8fd86 100644 --- a/Casks/m/musescore.rb +++ b/Casks/m/musescore.rb @@ -9,20 +9,15 @@ cask "musescore" do homepage "https://musescore.org/" livecheck do - url "https://github.com/musescore/MuseScore/releases/latest" - regex(%r{href=.*?/MuseScore[._-]v?(\d+(?:\.\d+)+)\.dmg}i) - strategy :header_match do |headers, regex| - next if headers["location"].blank? + url :url + regex(/^MuseScore[._-]v?(\d+(?:\.\d+)+)\.dmg$/i) + strategy :github_latest do |json, regex| + json["assets"]&.map do |asset| + match = asset["name"]&.match(regex) + next if match.blank? - # Identify the latest tag from the response's `location` header - latest_tag = File.basename(headers["location"]) - next if latest_tag.blank? - - # Fetch the assets list HTML for the latest tag and match within it - assets_page = Homebrew::Livecheck::Strategy.page_content( - @url.sub(%r{/releases/?.+}, "/releases/expanded_assets/#{latest_tag}"), - ) - assets_page[:content]&.scan(regex)&.map { |match| match[0] } + match[1] + end end end