Files
5chan/scripts/release-body.js
T

123 lines
5.1 KiB
JavaScript
Raw Normal View History

import { execSync } from 'child_process';
import path from 'path';
import { fileURLToPath } from 'url';
import { readFileSync, readdirSync } from 'fs';
import fetch from 'node-fetch';
2025-06-03 17:51:55 +02:00
const dirname = path.join(path.dirname(fileURLToPath(import.meta.url)));
const conventionalChangelog = path.join(dirname, '..', 'node_modules', '.bin', 'conventional-changelog');
const version = JSON.parse(readFileSync(path.join(dirname, '..', 'package.json'), 'utf8')).version;
2023-09-18 00:08:27 +00:00
// changelog (use last non-empty)
let releaseChangelog =
execSync(`${conventionalChangelog} --preset angular --release-count 1`).toString() ||
execSync(`${conventionalChangelog} --preset angular --release-count 2`).toString();
releaseChangelog = releaseChangelog.trim().replace(/\n\n+/g, '\n\n');
2023-09-18 00:08:27 +00:00
// discover artifacts
const distDir = path.join(dirname, '..', 'dist');
let files = [];
try {
files = readdirSync(distDir);
} catch {}
// In CI finalization, dist is populated from downloaded workflow artifacts.
// Falls back to GitHub release assets for local/manual runs.
const getReleaseAssetNames = async () => {
try {
const token = process.env.GITHUB_TOKEN;
const repo = process.env.GITHUB_REPOSITORY; // owner/repo
const tag = process.env.GITHUB_REF_NAME || `v${version}`;
if (!token || !repo || !tag) return [];
const res = await fetch(`https://api.github.com/repos/${repo}/releases/tags/${tag}`, {
headers: {
Authorization: `Bearer ${token}`,
'User-Agent': '5chan-release-notes',
'X-GitHub-Api-Version': '2022-11-28',
Accept: 'application/vnd.github+json',
},
});
if (!res.ok) return [];
const data = await res.json();
return (data.assets || []).map((a) => a.name).filter(Boolean);
} catch (e) {
return [];
}
};
const remoteFiles = await getReleaseAssetNames();
if (remoteFiles.length) {
files = remoteFiles;
}
const linkTo = (file) => `https://github.com/bitsocialnet/5chan/releases/download/v${version}/${encodeURIComponent(file)}`;
const has = (s, sub) => s.toLowerCase().includes(sub);
const isArm = (s) => has(s, 'arm64') || has(s, 'aarch64');
const isX64 = (s) => has(s, 'x64') || has(s, 'x86_64') || !isArm(s);
2026-03-21 12:41:32 +08:00
const isHtmlArchive = (file) => file.toLowerCase().endsWith('.zip') && (has(file, '5chan-html') || has(file, '-html'));
// buckets
const androidApk = files.find((f) => f.endsWith('.apk'));
2026-03-21 12:41:32 +08:00
const htmlZip = files.find(isHtmlArchive);
const linux = files.filter((f) => f.endsWith('.AppImage'));
const mac = files.filter((f) => f.endsWith('.dmg'));
const win = files.filter((f) => f.toLowerCase().endsWith('.exe'));
const linuxArm = linux.find(isArm);
const linuxX64 = linux.find(isX64);
const macArm = mac.find(isArm);
const macX64 = mac.find(isX64);
const winSetupX64 = win.find((f) => has(f, 'setup') && isX64(f));
const winPortableX64 = win.find((f) => has(f, 'portable') && isX64(f));
// small section builder without push()
const section = (title, lines) => {
const body = lines.filter(Boolean).join('\n');
return body ? `### ${title}\n${body}` : '';
};
const macSection = section('macOS', [
macArm && `- Apple Silicon (arm64): [Download DMG](${linkTo(macArm)})`,
macX64 && `- Intel (x64): [Download DMG](${linkTo(macX64)})`,
]);
const winSection = section('Windows', [
winSetupX64 && `- Installer (x64): [Download EXE](${linkTo(winSetupX64)})`,
winPortableX64 && `- Portable (x64): [Download EXE](${linkTo(winPortableX64)})`,
win.length > 0 &&
`- If Windows shows "Windows protected your PC" (SmartScreen), click "More info" then "Run anyway". To permanently allow, right-click the .exe → Properties → check "Unblock", or run in PowerShell: \`Unblock-File -Path .\\path\\to\\file.exe\`.`,
]);
const linuxSection = section('Linux', [
linuxArm && `- AppImage (arm64): [Download](${linkTo(linuxArm)})`,
linuxX64 && `- AppImage (x64): [Download](${linkTo(linuxX64)})`,
]);
const androidSection = section('Android', [androidApk && `- APK: [Download](${linkTo(androidApk)})`]);
2026-03-21 12:41:32 +08:00
const htmlSection = section('Static HTML build', [htmlZip && `- Static HTML archive (zip): [Download](${linkTo(htmlZip)})`]);
const downloads = [macSection, winSection, linuxSection, androidSection, htmlSection].filter(Boolean).join('\n\n');
2023-09-18 00:08:27 +00:00
// One-liner summary of what changed in this release. Update before each release.
2026-02-16 19:20:53 +08:00
const oneLinerDescription =
2026-06-18 22:29:48 +07:00
'This release restores desktop .bso board address resolution, fixes stuck loading text on loaded posts, fixes empty board loading and fresh reply handling, and temporarily keeps browser pure P2P off by default while a peer-to-peer publishing bug is investigated.';
const releaseBody = `${oneLinerDescription}
2025-06-03 17:51:55 +02:00
2025-10-17 23:30:35 +02:00
- Web app: https://5chan.app
2026-03-01 15:17:01 +08:00
- Decentralized web app via IPFS/IPNS gateways (works on any browser): [5chan.eth.limo](https://5chan.eth.limo), [5chan.eth.link](https://5chan.eth.link), [5chan-eth.ipns.dweb.link](https://5chan-eth.ipns.dweb.link)
- Decentralized web app via IPFS node you run: https://5chan.eth (works on [Brave Browser](https://brave.com/) or use [IPFS Companion](https://docs.ipfs.tech/install/ipfs-companion/#prerequisites))
2025-06-03 17:51:55 +02:00
## Downloads
${downloads}
2023-09-18 00:08:27 +00:00
## Changes
2023-09-18 00:08:27 +00:00
${releaseChangelog}`;
console.log(releaseBody);