wmux: Add version 0.8.2#17997
Conversation
📝 WalkthroughWalkthroughA new manifest file for wmux v0.8.2 is added to the Scoop Extras bucket. The manifest includes package metadata (description, homepage, MIT license), the download URL and SHA-256 hash for the Windows x64 release artifact, the executable binary name ( Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🧹 Nitpick comments (1)
bucket/wmux (1)
9-15: Local validation steps before merge (checkver/autoupdate/install).Please run the standard Scoop validation flow for this manifest (
wmux) before merge:scoop config debug true scoop config gh_token <your-github-token> # read-only .\bin\checkver.ps1 -App wmux -f .\bin\formatjson.ps1 -App wmux scoop install bucket\wmux.json -a 64bitAs per coding guidelines: provide explicit test guidance for checkver, formatting, and per-architecture install validation. Reference: https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md and https://github.com/ScoopInstaller/Scoop/wiki/App-Manifests.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@bucket/wmux` around lines 9 - 15, Run the local Scoop validation flow for the wmux manifest: enable debug and set GH token, then execute the checkver step against the manifest (verify "checkver": "github" detects the latest release), run formatjson to normalize the manifest (affecting the "autoupdate" block with the download-mode hash), and perform per-architecture install test (install bucket\wmux.json -a 64bit) to ensure the autoupdate URL "https://github.com/amirlehmam/wmux/releases/download/v$version/wmux-$version-win-x64.zip" and the hash download mode work correctly; fix any failures from .\bin\checkver.ps1, .\bin\formatjson.ps1, or scoop install by updating checkver rules or autoupdate fields in the manifest.Source: Coding guidelines
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@bucket/wmux`:
- Line 1: The manifest filename "bucket/wmux" does not conform to Scoop rules;
rename the file to "bucket/wmux.json" so the manifest ends with .json and
satisfies scoop manifest filename constraints; update any references to the
manifest filename (e.g., CI config, scripts, or imports that reference
"bucket/wmux") to the new "bucket/wmux.json" name to avoid broken links.
---
Nitpick comments:
In `@bucket/wmux`:
- Around line 9-15: Run the local Scoop validation flow for the wmux manifest:
enable debug and set GH token, then execute the checkver step against the
manifest (verify "checkver": "github" detects the latest release), run
formatjson to normalize the manifest (affecting the "autoupdate" block with the
download-mode hash), and perform per-architecture install test (install
bucket\wmux.json -a 64bit) to ensure the autoupdate URL
"https://github.com/amirlehmam/wmux/releases/download/v$version/wmux-$version-win-x64.zip"
and the hash download mode work correctly; fix any failures from
.\bin\checkver.ps1, .\bin\formatjson.ps1, or scoop install by updating checkver
rules or autoupdate fields in the manifest.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
| @@ -0,0 +1,16 @@ | |||
| { | |||
There was a problem hiding this comment.
Rename manifest to bucket/wmux.json to satisfy Scoop naming rules.
This new manifest is currently bucket/wmux, but Scoop manifests must end with .json and follow the filename constraints. Please rename it to bucket/wmux.json.
As per coding guidelines: “The filename MUST … end with .json.” See also: https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md and https://github.com/ScoopInstaller/Scoop/wiki/App-Manifests.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@bucket/wmux` at line 1, The manifest filename "bucket/wmux" does not conform
to Scoop rules; rename the file to "bucket/wmux.json" so the manifest ends with
.json and satisfies scoop manifest filename constraints; update any references
to the manifest filename (e.g., CI config, scripts, or imports that reference
"bucket/wmux") to the new "bucket/wmux.json" name to avoid broken links.
Source: Coding guidelines
|
/verify |
|
Your changes did not pass all checks. Please address the issues in the manifest and comment starting with wmux
|
Closes #17996
Adds wmux, a Windows cmux fork.
x64 from the official GitHub release zips
checkver/autoupdatewired to the GitHub releasesManifest validates as JSON
Use conventional PR title:
<manifest-name[@version]|chore>: <general summary of the pull request>I have read the Contributing Guide