diff --git a/CHANGELOG.md b/CHANGELOG.md index 533c069..eb2872d 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.51.1 — 2026-07-19 12:05 + +### Added +- More icon choices for custom recipe covers — dish icons went from 16 to 29 (banana, grape, citrus, hamburger, popcorn, bean, vegan, utensils, leaf, shrimp, cooking pot, candy, nut), drinks got milk. + ## 0.51.0 — 2026-07-19 11:40 ### Added diff --git a/apps/web/lib/changelog.ts b/apps/web/lib/changelog.ts index 2bb6c42..2690585 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.51.0"; +export const APP_VERSION = "0.51.1"; export type ChangelogEntry = { version: string; @@ -11,6 +11,13 @@ export type ChangelogEntry = { }; export const CHANGELOG: ChangelogEntry[] = [ + { + version: "0.51.1", + date: "2026-07-19 12:05", + added: [ + "More icon choices for custom recipe covers — dish icons went from 16 to 29 (banana, grape, citrus, hamburger, popcorn, bean, vegan, utensils, leaf, shrimp, cooking pot, candy, nut), drinks got milk.", + ], + }, { version: "0.51.0", date: "2026-07-19 11:40", diff --git a/apps/web/lib/recipe-placeholder.ts b/apps/web/lib/recipe-placeholder.ts index ae6e165..8acc983 100644 --- a/apps/web/lib/recipe-placeholder.ts +++ b/apps/web/lib/recipe-placeholder.ts @@ -1,7 +1,9 @@ import { Soup, Salad, Pizza, Sandwich, IceCream, Cookie, Beef, Fish, Cherry, Carrot, Egg, Drumstick, Croissant, Donut, Cake, ChefHat, - Coffee, Wine, Beer, GlassWater, Martini, CupSoda, + Banana, Grape, Citrus, Hamburger, Popcorn, Bean, Vegan, UtensilsCrossed, + Leaf, Shrimp, CookingPot, Candy, Nut, + Coffee, Wine, Beer, GlassWater, Martini, CupSoda, Milk, type LucideIcon, } from "lucide-react"; @@ -36,6 +38,19 @@ export const DISH_ICON_OPTIONS = [ { key: "croissant", Icon: Croissant }, { key: "donut", Icon: Donut }, { key: "cake", Icon: Cake }, + { key: "banana", Icon: Banana }, + { key: "grape", Icon: Grape }, + { key: "citrus", Icon: Citrus }, + { key: "hamburger", Icon: Hamburger }, + { key: "popcorn", Icon: Popcorn }, + { key: "bean", Icon: Bean }, + { key: "vegan", Icon: Vegan }, + { key: "utensils-crossed", Icon: UtensilsCrossed }, + { key: "leaf", Icon: Leaf }, + { key: "shrimp", Icon: Shrimp }, + { key: "cooking-pot", Icon: CookingPot }, + { key: "candy", Icon: Candy }, + { key: "nut", Icon: Nut }, ] as const; export const DRINK_ICON_OPTIONS = [ @@ -45,6 +60,7 @@ export const DRINK_ICON_OPTIONS = [ { key: "glass-water", Icon: GlassWater }, { key: "martini", Icon: Martini }, { key: "cup-soda", Icon: CupSoda }, + { key: "milk", Icon: Milk }, ] as const; export const ALL_ICON_OPTIONS: { key: string; Icon: LucideIcon }[] = [...DISH_ICON_OPTIONS, ...DRINK_ICON_OPTIONS]; diff --git a/apps/web/package.json b/apps/web/package.json index 81962cd..9fdbe03 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "@epicure/web", - "version": "0.51.0", + "version": "0.51.1", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index 0973914..2172690 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "epicure", - "version": "0.51.0", + "version": "0.51.1", "private": true, "scripts": { "dev": "pnpm --filter web dev",