summaryrefslogtreecommitdiff
path: root/website/package.json
AgeCommit message (Collapse)Author
2026-08-11chore(deps): update dependency @biomejs/biome to v2.5.8 (#279)HEADmainrenovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-08-05fix: read plugin versions from release JAR names, not tag namesSho Sakuma
The download cards and the compatibility matrix derived each plugin's version from the release tag, which cannot hold for a unified `vX.Y.Z` release: it carries both JARs and their versions need not agree. v1.3.0 shipped Paper 1.3.0 alongside Velocity 1.2.0. So the download page advertised Paper v1.2.2 and Velocity v1.1.0, two generations stale, because it searched `paper/v` and `velocity/v` tags first and fell back to a unified tag only when none existed. The matrix meanwhile put a Velocity v1.3.0 on its axis that was never released, leaving no row for the proxy build operators actually run. Both now pick releases by the JARs attached to them and take the version from the file name, the only place it is stated. Tag shape stops mattering: a platform-specific tag and a unified one are alike just releases that happen to carry a given JAR. Releases rank by publication time rather than by API response order, which follows tag creation instead: velocity/v1.1.0 precedes the later-published paper/v1.2.2. A version is listed once even when a later unified release re-attaches an unchanged JAR, which release.yaml does whenever only the other platform was bumped. Otherwise the matrix would carry one version twice, under two protocol versions if the protocol had moved in between. Tests run in CI from here on. They need an explicit path because Bun does not discover tests inside dot-directories. Co-Authored-By: Claude <noreply@anthropic.com>
2026-08-04chore(deps): update dependency @biomejs/biome to v2.5.7 (#264)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-28chore(deps): update dependency @biomejs/biome to v2.5.6 (#255)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-21chore(deps): update dependency @biomejs/biome to v2.5.5 (#252)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-15chore(deps): update dependency @biomejs/biome to v2.5.4 (#249)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-08chore(deps): update dependency @biomejs/biome to v2.5.3 (#245)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-07-01chore(deps): update dependency @biomejs/biome to v2.5.2 (#241)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-06-23chore(deps): update dependency @biomejs/biome to v2.5.1 (#236)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-06-12chore(deps): update dependency @biomejs/biome to v2.5.0 (#227)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-05-27chore(deps): update dependency @biomejs/biome to v2.4.16 (#213)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-05-10chore(deps): update dependency @biomejs/biome to v2.4.15 (#202)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-05-01chore(deps): update dependency @biomejs/biome to v2.4.14 (#195)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-23chore(deps): update dependency @biomejs/biome to v2.4.13 (#191)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-14chore(deps): update dependency @biomejs/biome to v2.4.12 (#187)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-09chore(deps): update dependency @biomejs/biome to v2.4.11 (#183)renovate[bot]
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-04-05docs: add download page and rename docs to websiteSho Sakuma
- Add download page with GitHub API data loader for latest releases - Add DownloadCard Vue component with JA/EN i18n support - Include Modrinth and CI build links - Rename docs/ directory to website/ Co-Authored-By: Claude <noreply@anthropic.com>