From fcc2c3d5422ab3e2ad71d084fed33714e95efca2 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 31 May 2026 18:37:48 +0200 Subject: [PATCH] Add 4 testers to contributors page + refine deploy.yml triggers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Contributors page (app/[locale]/docs/about/contributors/page.tsx): add heriberto, JF_Carr, rafapuerta and JcMinarro to the testers grid. All with the "testing" role and GitHub's default avatar URL (https://github.com/.png) so the entries work immediately without requiring custom avatar files. Swap to a per-contributor /images/avatars/.png later if/when custom artwork is ready. deploy.yml triggers: drop `guides/**` (the legacy /guides/[slug]/ page that read those markdown files was removed in PR #211 — the folder no longer affects what the web renders) and `scripts/**` (the bash scripts get rsynced into public/scripts/ during prebuild but they are downloaded by users via install_proxmenux.sh, not browsed via the doc site, so a stale copy is harmless). Add `lang/**` so future translated CHANGELOG / docs (e.g. the Spanish CHANGELOG just shipped in PR #217) auto-deploy. Local build verified: 232 pages, 14450 indexed words, no errors. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/deploy.yml | 3 +-- .../[locale]/docs/about/contributors/page.tsx | 25 +++++++++++++++++++ 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6451d0de..d6d6bc47 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,8 +6,7 @@ on: - "main" paths: - "web/**" - - "guides/**" - - "scripts/**" + - "lang/**" - "CHANGELOG.md" workflow_dispatch: diff --git a/web/app/[locale]/docs/about/contributors/page.tsx b/web/app/[locale]/docs/about/contributors/page.tsx index e5cecf75..d5980fc6 100644 --- a/web/app/[locale]/docs/about/contributors/page.tsx +++ b/web/app/[locale]/docs/about/contributors/page.tsx @@ -54,6 +54,31 @@ const contributors: Contributor[] = [ roleKey: "testing", avatar: "https://raw.githubusercontent.com/MacRimi/ProxMenux/main/images/avatars/Kamunhas.png", }, + // Added 2026-05-31 after the v1.2.2 release. Defaulted to "testing" + // and GitHub's avatar service so the entries work immediately + // without needing avatar files uploaded under /images/avatars/. + // Swap to a per-contributor /images/avatars/.png once the + // custom artwork is ready. + { + name: "heriberto", + roleKey: "testing", + avatar: "https://github.com/heriberto.png", + }, + { + name: "JF_Carr", + roleKey: "testing", + avatar: "https://github.com/JF_Carr.png", + }, + { + name: "rafapuerta", + roleKey: "testing", + avatar: "https://github.com/rafapuerta.png", + }, + { + name: "JcMinarro", + roleKey: "testing", + avatar: "https://github.com/JcMinarro.png", + }, ] export default async function ContributorsPage({ params }: { params: Promise<{ locale: string }> }) {