Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Homebrew Cask for Universal Audio’s UA Connect (v1.9.3 build 3637), including a livecheck that tracks the vendor’s redirecting “installer” endpoint.
Changes:
- Introduce new
ua-connectcask with versioned download URL and SHA-256. - Add
livecheckusing:header_matchto extract version/build from the redirect location. - Define install (
app), uninstall (launchctl/quit/delete), and a targetedzapstanza.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
bevanjkay
approved these changes
Apr 15, 2026
samford
reviewed
Apr 16, 2026
Member
samford
left a comment
There was a problem hiding this comment.
I've had a ua-connect cask in my local tap for years and I thought about adding it to homebrew-cask but never did, so thanks for this. I've added a couple of suggestions from my copy.
|
|
||
| livecheck do | ||
| url "https://www.uaudio.com/apps/uaconnect/mac/installer" | ||
| regex(%r{/UA[._-]Connect[._-](\d+(?:_\d+)+)_(\d+)_Mac\.dmg}i) |
Member
There was a problem hiding this comment.
Suggested change
| regex(%r{/UA[._-]Connect[._-](\d+(?:_\d+)+)_(\d+)_Mac\.dmg}i) | |
| regex(%r{/UA[._-]Connect[._-]v?(\d+(?:[._]\d+)+)[._-](\d+)(?:[._-]Mac)?\.dmg}i) |
This is a little more flexible in some areas and aligns better with our existing regex standards.
| "/Library/PrivilegedHelperTools/com.uaudio.bsd.helper", | ||
| ] | ||
|
|
||
| zap trash: "~/Library/Application Support/Universal Audio/UA Connect" |
Member
There was a problem hiding this comment.
Suggested change
| zap trash: "~/Library/Application Support/Universal Audio/UA Connect" | |
| zap trash: [ | |
| "~/Library/Application Support/UA Connect", | |
| "~/Library/Application Support/Universal Audio/UA Connect", | |
| "~/Library/Logs/UA Connect", | |
| "~/Library/Logs/Universal Audio/UA Connect.log", | |
| "~/Library/Preferences/com.uaudio.ua-connect.plist", | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Built and tested locally on macOS 26.3.
brew audit --cask --online <cask>is error-free.brew style --fix <cask>reports no offenses.Additionally, if adding a new cask:
brew audit --cask --new <cask>worked successfully.HOMEBREW_NO_INSTALL_FROM_API=1 brew install --cask <cask>worked successfully.brew uninstall --cask <cask>worked successfully.zapstanza limited to the app-specific~/Library/Application Support/Universal Audio/UA Connectpath after checking for additional runtime-created UA Connect files in this environment.