diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e7138a..fcac1f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to Epicure are documented here. This file is mirrored in-app at `/changelog` (and in the admin dashboard) via `apps/web/lib/changelog.ts` — update both together. +## 0.65.3 — 2026-07-21 01:20 + +### Fixed +- Removed a stale `app/favicon.ico` left over from the original create-next-app scaffold (the default Next.js/Vercel triangle logo) — Next's file-based routing served it as `/favicon.ico` regardless of the app icon configured via `icon.svg`, so some browsers showed the placeholder logo instead of Epicure's icon no matter what cache state you were in. The SVG icon is now the only favicon source. + ## 0.65.2 — 2026-07-21 01:10 ### Fixed diff --git a/apps/web/app/favicon.ico b/apps/web/app/favicon.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/apps/web/app/favicon.ico and /dev/null differ diff --git a/apps/web/lib/changelog.ts b/apps/web/lib/changelog.ts index 359934b..32d9858 100644 --- a/apps/web/lib/changelog.ts +++ b/apps/web/lib/changelog.ts @@ -1,5 +1,5 @@ // Mirrors CHANGELOG.md at the repo root — update both together. -export const APP_VERSION = "0.65.2"; +export const APP_VERSION = "0.65.3"; export type ChangelogEntry = { version: string; @@ -11,6 +11,13 @@ export type ChangelogEntry = { }; export const CHANGELOG: ChangelogEntry[] = [ + { + version: "0.65.3", + date: "2026-07-21 01:20", + fixed: [ + "Removed a stale app/favicon.ico left over from the original create-next-app scaffold (the default Next.js/Vercel triangle logo) — Next's file-based routing served it as /favicon.ico regardless of the app icon configured via icon.svg, so some browsers showed the placeholder logo instead of Epicure's icon no matter what cache state you were in. The SVG icon is now the only favicon source.", + ], + }, { version: "0.65.2", date: "2026-07-21 01:10", diff --git a/apps/web/package.json b/apps/web/package.json index aa565ca..2ec3e27 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "@epicure/web", - "version": "0.65.2", + "version": "0.65.3", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index 8cbbc39..ec60904 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "epicure", - "version": "0.65.2", + "version": "0.65.3", "private": true, "scripts": { "dev": "pnpm --filter web dev",