[PR #62] [CLOSED] Claude/premium visual refinement xd3 p7 #281

Closed
opened 2026-06-20 03:45:03 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/michelpereira/awesome-open-source-games/pull/62
Author: @vandro17-lab
Created: 5/21/2026
Status: Closed

Base: mainHead: claude/premium-visual-refinement-xd3P7


📝 Commits (10+)

  • 05a5470 feat: Banco de Memórias da Sônia — aplicação completa
  • 0e805d6 chore: remove projeto anterior, repositório agora é o app da Sônia
  • ff6ac91 chore: add vercel.json to force Next.js detection
  • 65ffca0 fix: upgrade Next.js 15.3.2→15.5.18 to patch CVE-2025-66478
  • 84e8980 feat: add Sônia's photo to landing page
  • c6c8e89 feat: add Raquel (nora) to autocomplete, add nora/genro to selector
  • 66a297c feat: birthday theme on landing page + fix photo crop to show face
  • 06358a4 feat: add surprise reminder on landing page
  • 71da8d7 feat: update landing page text with personal birthday message
  • 98f5b6d feat: replace Web Speech API with Groq Whisper transcription

📊 Changes

54 files changed (+10683 additions, -851 deletions)

View changed files

.env.local.example (+7 -0)
.github/ISSUE_TEMPLATE/bug_report.md (+0 -19)
.github/ISSUE_TEMPLATE/feature-request.md (+0 -20)
.github/workflows/main.yml (+0 -12)
.gitignore (+25 -0)
LICENSE (+0 -116)
README.md (+0 -578)
app/api/correct-transcript/route.ts (+67 -0)
app/api/generate-final/route.ts (+57 -0)
app/api/save-memory/route.ts (+23 -0)
app/api/save-participant/route.ts (+28 -0)
app/api/transcribe/route.ts (+52 -0)
app/api/upload-audio/route.ts (+39 -0)
app/api/upload-photo/route.ts (+39 -0)
app/audio-final/page.tsx (+369 -0)
app/debug/page.tsx (+40 -0)
app/fotos/page.tsx (+218 -0)
app/globals.css (+535 -0)
app/identificacao/page.tsx (+215 -0)
app/layout.tsx (+38 -0)

...and 34 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/michelpereira/awesome-open-source-games/pull/62 **Author:** [@vandro17-lab](https://github.com/vandro17-lab) **Created:** 5/21/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `claude/premium-visual-refinement-xd3P7` --- ### 📝 Commits (10+) - [`05a5470`](https://github.com/michelpereira/awesome-open-source-games/commit/05a54701725a4ab7754c1616218c7847773d600a) feat: Banco de Memórias da Sônia — aplicação completa - [`0e805d6`](https://github.com/michelpereira/awesome-open-source-games/commit/0e805d644eca1a2de68b7c43eefa9840daeec8f4) chore: remove projeto anterior, repositório agora é o app da Sônia - [`ff6ac91`](https://github.com/michelpereira/awesome-open-source-games/commit/ff6ac91415324b0fc5eba47d1c8461a329fbe861) chore: add vercel.json to force Next.js detection - [`65ffca0`](https://github.com/michelpereira/awesome-open-source-games/commit/65ffca018b2152f57e370104f2f870937ef13cfe) fix: upgrade Next.js 15.3.2→15.5.18 to patch CVE-2025-66478 - [`84e8980`](https://github.com/michelpereira/awesome-open-source-games/commit/84e8980a309089c172135abb1b6152e2148bccd7) feat: add Sônia's photo to landing page - [`c6c8e89`](https://github.com/michelpereira/awesome-open-source-games/commit/c6c8e89a06b454cb0b0fa5212663682a33ea12b7) feat: add Raquel (nora) to autocomplete, add nora/genro to selector - [`66a297c`](https://github.com/michelpereira/awesome-open-source-games/commit/66a297c9c858d689a57574c6a5692e98c49853f5) feat: birthday theme on landing page + fix photo crop to show face - [`06358a4`](https://github.com/michelpereira/awesome-open-source-games/commit/06358a4ce038ff641d465c25caf91f816f549aee) feat: add surprise reminder on landing page - [`71da8d7`](https://github.com/michelpereira/awesome-open-source-games/commit/71da8d795cf857f43f765c9284c91202b7b39982) feat: update landing page text with personal birthday message - [`98f5b6d`](https://github.com/michelpereira/awesome-open-source-games/commit/98f5b6dccae700aaf4dd09c84f10c7c169c12fed) feat: replace Web Speech API with Groq Whisper transcription ### 📊 Changes **54 files changed** (+10683 additions, -851 deletions) <details> <summary>View changed files</summary> ➕ `.env.local.example` (+7 -0) ➖ `.github/ISSUE_TEMPLATE/bug_report.md` (+0 -19) ➖ `.github/ISSUE_TEMPLATE/feature-request.md` (+0 -20) ➖ `.github/workflows/main.yml` (+0 -12) ➕ `.gitignore` (+25 -0) ➖ `LICENSE` (+0 -116) ➖ `README.md` (+0 -578) ➕ `app/api/correct-transcript/route.ts` (+67 -0) ➕ `app/api/generate-final/route.ts` (+57 -0) ➕ `app/api/save-memory/route.ts` (+23 -0) ➕ `app/api/save-participant/route.ts` (+28 -0) ➕ `app/api/transcribe/route.ts` (+52 -0) ➕ `app/api/upload-audio/route.ts` (+39 -0) ➕ `app/api/upload-photo/route.ts` (+39 -0) ➕ `app/audio-final/page.tsx` (+369 -0) ➕ `app/debug/page.tsx` (+40 -0) ➕ `app/fotos/page.tsx` (+218 -0) ➕ `app/globals.css` (+535 -0) ➕ `app/identificacao/page.tsx` (+215 -0) ➕ `app/layout.tsx` (+38 -0) _...and 34 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-06-20 03:45:03 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-open-source-games#281