-
-
{sub.name}
-
{sub.ratio}
-
+
+ {sub.name}
+
{sub.flavorImpact}
+ {sub.ratio}
{sub.note}
diff --git a/apps/web/lib/changelog.ts b/apps/web/lib/changelog.ts
index 76c1a32..6920f26 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.78.1";
+export const APP_VERSION = "0.78.2";
export type ChangelogEntry = {
version: string;
@@ -11,6 +11,13 @@ export type ChangelogEntry = {
};
export const CHANGELOG: ChangelogEntry[] = [
+ {
+ version: "0.78.2",
+ date: "2026-07-24 14:30",
+ fixed: [
+ "Ingredient substitutes popover was a fixed 320px wide, cramping the name/ratio/impact-badge row on narrow screens. Now scales with viewport (min(92vw, 26rem)) and wraps the ratio onto its own line on small widths instead of squeezing everything into one row.",
+ ],
+ },
{
version: "0.78.1",
date: "2026-07-24 14:10",
diff --git a/apps/web/package.json b/apps/web/package.json
index 704fce3..5a8a1f8 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -1,6 +1,6 @@
{
"name": "@epicure/web",
- "version": "0.78.1",
+ "version": "0.78.2",
"private": true,
"scripts": {
"dev": "next dev",
diff --git a/package.json b/package.json
index dd22a3d..68a0ec0 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "epicure",
- "version": "0.78.1",
+ "version": "0.78.2",
"private": true,
"scripts": {
"dev": "pnpm --filter web dev",