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

jump-desktop-connect: update livecheck, use versioned url #182071

Merged
merged 2 commits into from
Aug 10, 2024
Merged
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
26 changes: 19 additions & 7 deletions Casks/j/jump-desktop-connect.rb
Original file line number Diff line number Diff line change
@@ -1,16 +1,28 @@
cask "jump-desktop-connect" do
version "6.10.28,61028"
sha256 :no_check
on_sierra :or_older do
version "6.5.39"
sha256 "5ad7235db6cc28a2da7048636e7ea3e4f9f144e85d645d56e3a7b75b5b228b34"

url "https://mirror.jumpdesktop.com/downloads/connect/JumpDesktopConnect.dmg"
livecheck do
skip "Legacy version"
end
end
on_high_sierra :or_newer do
version "6.10.28"
sha256 "94a3f4c2100335fef6c254fe0bd565d4a59af1b78564f026ac7cbec940c423df"

livecheck do
url "https://mirror.jumpdesktop.com/downloads/connect/connect-mac.xml"
strategy :sparkle, &:short_version
end
end

url "https://jumpdesktop.com/downloads/connect/JumpDesktopConnect-#{version}.dmg"
name "Jump Desktop Connect"
desc "Remote desktop app"
homepage "https://jumpdesktop.com/connect/"

livecheck do
url :url
strategy :extract_plist
end
auto_updates true

pkg ".jdc.sparkle_guided.pkg"

Expand Down
Loading