d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
Web Frontend / Deploy to Cloudflare (push) Has been cancelled
93 lines
2.1 KiB
TypeScript
93 lines
2.1 KiB
TypeScript
/**
|
|
* release-credits.ts — community credit data for the website.
|
|
*
|
|
* CANONICAL SOURCE: docs/CONTRIBUTORS.md
|
|
* That file is the full per-PR contributor record in chronological order.
|
|
* This module is a snapshot of the latest release's merged/harvested
|
|
* contributors and issue helpers, kept in sync by the release process.
|
|
* When cutting a release, update both docs/CONTRIBUTORS.md AND this file.
|
|
*
|
|
* EXTENSION PATH FOR NEW LOCALES:
|
|
* The arrays below are locale-agnostic (GitHub handles). Locale-specific
|
|
* section labels and descriptions live in the page component. To add a
|
|
* new locale, update the page copy — no data changes needed here.
|
|
*
|
|
* See also:
|
|
* - .github/AUTHOR_MAP for identity mapping
|
|
* - CHANGELOG.md for the full release narrative
|
|
* - https://github.com/Hmbown/CodeWhale/graphs/contributors for the live list
|
|
*/
|
|
|
|
/** Contributors whose PRs were merged or harvested into this release. */
|
|
export const RELEASE_CONTRIBUTORS: string[] = [
|
|
"@1Git2Clone",
|
|
"@cy2311",
|
|
"@LING71671",
|
|
"@axobase001",
|
|
"@dzyuan",
|
|
"@mvanhorn",
|
|
"@malsony",
|
|
"@manaskarra",
|
|
"@gaord",
|
|
"@yuanchenglu",
|
|
"@idling11",
|
|
"@h3c-hexin",
|
|
"@AdityaVG13",
|
|
"@Sskift",
|
|
"@cyq1017",
|
|
"@HUQIANTAO",
|
|
"@New2Niu",
|
|
"@AiurArtanis",
|
|
"@Lee-take",
|
|
"@nightt5879",
|
|
"@AresNing",
|
|
"@AccMoment",
|
|
"@reidliu41",
|
|
"@aboimpinto",
|
|
"@zhuangbiaowei",
|
|
"@donglovejava",
|
|
"@hongqitai",
|
|
"@zlh124",
|
|
"@encyc",
|
|
"@Implementist",
|
|
"@lihuan215",
|
|
"@LeoAlex0",
|
|
"@jimmyzhuu",
|
|
"@rockyzhang",
|
|
"@mo-vic",
|
|
"@hufanexplore",
|
|
"@hoclaptrinh33",
|
|
"@quentin-lian",
|
|
"@BryonGo",
|
|
];
|
|
|
|
/** Contributors who helped with reports, reproductions, and verification. */
|
|
export const RELEASE_HELPERS: string[] = [
|
|
"@buko",
|
|
"@yyyCode",
|
|
"@gaslebinh-glitch",
|
|
"@Dr3259",
|
|
"@lpeng1711694086-lang",
|
|
"@VerrPower",
|
|
"@yan-zay",
|
|
"@jretz",
|
|
"@Neo-millunnium",
|
|
"@caeserchen",
|
|
"@cmyyy",
|
|
"@djairjr",
|
|
"@F1LT3R",
|
|
"@Final527",
|
|
"@Geallier",
|
|
"@k0tran",
|
|
"@lordwedggie",
|
|
"@T-Phuong-Nguyen",
|
|
"@xfy6238",
|
|
"@zhyuzhyu",
|
|
"@0gl20shk0sbt36",
|
|
"@hatakes",
|
|
"@goodvecn-dev",
|
|
"@bevis-wong",
|
|
"@PurplePulse",
|
|
"@nbiish",
|
|
];
|