From 5ca77f46cf66304da3d5ac512b841aa322ecf7bd Mon Sep 17 00:00:00 2001 From: humble-little-bear Date: Mon, 3 Aug 2026 07:10:14 +0000 Subject: [PATCH] fix: update ckb-tui download URL to nervosnetwork org repo ckb-tui transferred from the personal repo Officeyutong/ckb-tui to the org repo nervosnetwork/ckb-tui. Point the installer at the new release download URL. The release assets moved with the transfer, so the pinned SHA-256 digests in KNOWN_SHA256 still match (verified against the GitHub API and a live download of the v0.1.4 linux-amd64 asset). Co-Authored-By: Claude Fable 5 --- .changeset/ckb-tui-org-repo-url.md | 5 +++++ src/tools/ckb-tui.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/ckb-tui-org-repo-url.md diff --git a/.changeset/ckb-tui-org-repo-url.md b/.changeset/ckb-tui-org-repo-url.md new file mode 100644 index 0000000..b6b9a1a --- /dev/null +++ b/.changeset/ckb-tui-org-repo-url.md @@ -0,0 +1,5 @@ +--- +'@offckb/cli': patch +--- + +Update the ckb-tui download URL to the new `nervosnetwork/ckb-tui` org repository after ckb-tui was transferred out of the original personal repo. Release assets moved with the transfer, so the pinned SHA-256 digests still match byte-for-byte and verified installs are unaffected. diff --git a/src/tools/ckb-tui.ts b/src/tools/ckb-tui.ts index f04b33c..e3ef12a 100644 --- a/src/tools/ckb-tui.ts +++ b/src/tools/ckb-tui.ts @@ -202,7 +202,7 @@ export class CKBTui { const binaryName = process.platform === 'win32' ? 'ckb-tui.exe' : 'ckb-tui'; this.binaryPath = path.join(binDir, binaryName); - const downloadUrl = `https://github.com/Officeyutong/ckb-tui/releases/download/${version}/${assetName}`; + const downloadUrl = `https://github.com/nervosnetwork/ckb-tui/releases/download/${version}/${assetName}`; // Ensure the target directory exists fs.mkdirSync(binDir, { recursive: true });