From a66a1d2891bb3010747dfda267d622d1e14f2dc8 Mon Sep 17 00:00:00 2001 From: Justin Krehel <39449589+krehel@users.noreply.github.com> Date: Tue, 15 Aug 2023 09:43:55 -0400 Subject: [PATCH 1/3] aria2d 1.3.8 --- Casks/a/aria2d.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Casks/a/aria2d.rb b/Casks/a/aria2d.rb index e8e8638c0f..0d45828ea6 100644 --- a/Casks/a/aria2d.rb +++ b/Casks/a/aria2d.rb @@ -1,6 +1,6 @@ cask "aria2d" do - version "1.3.6" - sha256 "1840ce5b25571925cfec67635e3e48ce38306b856b509861f2ecfdfd0470cd7b" + version "1.3.8" + sha256 "f541b792ed813fa38ec72a87f42e8283383c781d0c9deac421bbc1cdababbb65" url "https://raw.githubusercontent.com/xjbeta/AppUpdaterAppcasts/master/Aria2D/Aria2D%20#{version}.dmg", verified: "githubusercontent.com/xjbeta/" From fbdc7db253afe3071f9e400b9b61915900175153 Mon Sep 17 00:00:00 2001 From: Justin Krehel <39449589+krehel@users.noreply.github.com> Date: Tue, 15 Aug 2023 09:54:59 -0400 Subject: [PATCH 2/3] aria2d: minimum macOS bump to High Sierra --- Casks/a/aria2d.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Casks/a/aria2d.rb b/Casks/a/aria2d.rb index 0d45828ea6..8080e7aec3 100644 --- a/Casks/a/aria2d.rb +++ b/Casks/a/aria2d.rb @@ -13,7 +13,7 @@ cask "aria2d" do strategy :sparkle, &:short_version end - depends_on macos: ">= :sierra" + depends_on macos: ">= :high_sierra" app "Aria2D.app" From fc78ce67467a1010c37b8df448159048dfb98dc9 Mon Sep 17 00:00:00 2001 From: Sam Ford <1584702+samford@users.noreply.github.com> Date: Tue, 15 Aug 2023 13:03:38 -0400 Subject: [PATCH 3/3] aria2d: update livecheck --- Casks/a/aria2d.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Casks/a/aria2d.rb b/Casks/a/aria2d.rb index 8080e7aec3..51d41d43c3 100644 --- a/Casks/a/aria2d.rb +++ b/Casks/a/aria2d.rb @@ -8,9 +8,13 @@ cask "aria2d" do desc "Aria2 GUI" homepage "https://github.com/xjbeta/Aria2D" + # 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://raw.githubusercontent.com/xjbeta/AppUpdaterAppcasts/master/Aria2D/Appcast.xml" - strategy :sparkle, &:short_version + strategy :sparkle do |items| + items.map(&:short_version) + end end depends_on macos: ">= :high_sierra"