Skip to content

wmux: Add version 0.8.2#17997

Open
hypn0tick wants to merge 1 commit into
ScoopInstaller:masterfrom
hypn0tick:add-wmux
Open

wmux: Add version 0.8.2#17997
hypn0tick wants to merge 1 commit into
ScoopInstaller:masterfrom
hypn0tick:add-wmux

Conversation

@hypn0tick

Copy link
Copy Markdown

Closes #17996

Adds wmux, a Windows cmux fork.

  • x64 from the official GitHub release zips

  • checkver/autoupdate wired to the GitHub releases

  • Manifest validates as JSON

  • Use conventional PR title: <manifest-name[@version]|chore>: <general summary of the pull request>

  • I have read the Contributing Guide

@coderabbitai

coderabbitai Bot commented Jun 7, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

A 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 (wmux.exe), and GitHub-based configuration for automatic version checking and updates that point to the versioned release asset URL.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description check ✅ Passed The description includes issue reference, conventional PR title checkbox marked, contributing guide confirmation, and explains the addition of wmux with relevant details about x64 binary, checkver/autoupdate configuration, and JSON validation.
Linked Issues check ✅ Passed The PR fully meets the linked issue #17996 requirements: adds wmux with correct x64 download URL, GitHub checkver/autoupdate, meets all criteria (167 stars, MIT license, latest stable v0.8.2, standard installation).
Out of Scope Changes check ✅ Passed All changes in the PR are directly scoped to adding the wmux package manifest; no unrelated modifications or out-of-scope additions are present.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Title check ✅ Passed The title 'wmux: Add version 0.8.2' directly and clearly describes the main change—adding wmux package version 0.8.2 to the manifest, which aligns with the PR objectives and the changeset.

✏️ 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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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 64bit

As 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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 803f9cd7-31d7-487b-a7bf-4102c3061fe9

📥 Commits

Reviewing files that changed from the base of the PR and between 02b182c and 0364091.

📒 Files selected for processing (1)
  • bucket/wmux

Comment thread bucket/wmux
@@ -0,0 +1,16 @@
{

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

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

arvdk added a commit to arvdk/Extras that referenced this pull request Jun 8, 2026
@aliesbelik aliesbelik changed the title wmux@0.8.2: add wmux v0.8.2 wmux: Add version 0.8.2 Jun 8, 2026
arvdk added a commit to arvdk/Extras that referenced this pull request Jun 9, 2026
@aliesbelik

Copy link
Copy Markdown
Collaborator

/verify

@github-actions

Copy link
Copy Markdown
Contributor

Your changes did not pass all checks.

Please address the issues in the manifest and comment starting with /verify to rerun the checks.

wmux

  • Lint
  • Description
  • License
  • Hashes
  • Checkver
  • Autoupdate
  • Autoupdate Hash Extraction

Check the full log for details.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Request]: wmux

2 participants