intiface-central 3.0.1 (new cask)#253949
Open
CockpitCutie wants to merge 2 commits intoHomebrew:mainfrom
Open
Conversation
samford
reviewed
Mar 16, 2026
Member
samford
left a comment
There was a problem hiding this comment.
Upstream has used a tag format like v2.6.8 in the not-too-distant past (2025-09-06), so let's treat the numeric suffix (e.g., +37) as optional in the livecheck block regex and cask url.
There's also a newer version (v3.0.3+39) as of today, so it would be good to update to that.
Comment on lines
+12
to
+17
| regex(/^v?(\d+(?:\.\d+)+)\+(\d+)$/i) | ||
| strategy :github_latest do |json, regex| | ||
| match = json["tag_name"]&.match(regex) | ||
| next if match.blank? | ||
|
|
||
| "#{match[1]},#{match[2]}" |
Member
There was a problem hiding this comment.
Suggested change
| regex(/^v?(\d+(?:\.\d+)+)\+(\d+)$/i) | |
| strategy :github_latest do |json, regex| | |
| match = json["tag_name"]&.match(regex) | |
| next if match.blank? | |
| "#{match[1]},#{match[2]}" | |
| regex(/^v?(\d+(?:\.\d+)+)(?:\+(\d+))?$/i) | |
| strategy :github_latest do |json, regex| | |
| match = json["tag_name"]&.match(regex) | |
| next if match.blank? | |
| match[2].present? ? "#{match[1]},#{match[2]}" : match[1] |
| version "3.0.1,37" | ||
| sha256 "4dca9f17f8d082564e4480b8eb15e68acfeb593be8f000690184d8d585e5c2c9" | ||
|
|
||
| url "https://github.com/intiface/intiface-central/releases/download/v#{version.csv.first}%2B#{version.csv.second}/intiface-central-v#{version.csv.first}-macos-universal.dmg" |
Member
There was a problem hiding this comment.
Suggested change
| url "https://github.com/intiface/intiface-central/releases/download/v#{version.csv.first}%2B#{version.csv.second}/intiface-central-v#{version.csv.first}-macos-universal.dmg" | |
| url "https://github.com/intiface/intiface-central/releases/download/v#{version.csv.first}#{"%2B#{version.csv.second}" if version.csv.second}/intiface-central-v#{version.csv.first}-macos-universal.dmg" |
Comment on lines
+2
to
+3
| version "3.0.1,37" | ||
| sha256 "4dca9f17f8d082564e4480b8eb15e68acfeb593be8f000690184d8d585e5c2c9" |
Member
There was a problem hiding this comment.
Suggested change
| version "3.0.1,37" | |
| sha256 "4dca9f17f8d082564e4480b8eb15e68acfeb593be8f000690184d8d585e5c2c9" | |
| version "3.0.3,39" | |
| sha256 "c3605043d8a1bbb30a2ce5873e07b5d0d34395f2ad09cc1b82d29a2932ff357e" |
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.
Important: Do not tick a checkbox if you haven’t performed its action. Honesty is indispensable for a smooth review process.
In the following questions
<cask>is the token of the cask you're submitting.After making any changes to a cask, existing or new, verify:
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.If AI was used to generate or assist with generating the PR:
zapstanza paths.I used claude to help with the livecheck strategy, since the versioning tags used by intiface make the default github latest not work properly, but reviewed and manually tested it and all other aspects of the cask.
I tested and verified the zap stanza is correct, one thing I noticed is homebrew cannot delete the folder
~/Library/Containers/com.nonpolynomial.intifacecentraldue to SIP, but I wrote the zap consistent to other casks I looked at with similar file structures, like crystalfetch.