From 360eadf78fb001e947f3850603152adc413bb3a8 Mon Sep 17 00:00:00 2001 From: Tyler Hoang Date: Sat, 9 May 2026 02:31:10 -0700 Subject: Recipe detail page, menu revamp, and UX improvements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add recipe detail page (recipe.html) with full ingredients and instructions - Simplify menu tab: cards show name + description only, click through for full recipe - Add description field to Recipe model with DB migration - Add AI-generated descriptions to menu, swap, and import prompts - Add single dish by description (POST /api/menus/current/recipes) - Add grocery item delete without pantry add (DELETE /api/grocery/{id}/items) - Persist grocery checked state server-side (PATCH /api/grocery/{id}/check-item) - Hash-based tab routing — refresh stays on current tab - Logo branding in header and favicon - Dark theme fixes: URL/text inputs, amber accent, muted danger/warning colors - Markdown rendering in chat (bold, italic, code blocks, lists, headers) - Fix instruction step splitting for inline-numbered steps (1. 2. 3.) - Import recipe from URL with JSON-LD structured data + AI fallback Co-Authored-By: Claude Sonnet 4.6 --- main.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'main.py') diff --git a/main.py b/main.py index 65b8271..8bc2d4f 100644 --- a/main.py +++ b/main.py @@ -17,6 +17,10 @@ async def lifespan(app: FastAPI): if 'notes' not in [row[1] for row in result]: conn.execute(text("ALTER TABLE menu_plans ADD COLUMN notes TEXT")) conn.commit() + result = conn.execute(text("PRAGMA table_info(recipes)")) + if 'description' not in [row[1] for row in result]: + conn.execute(text("ALTER TABLE recipes ADD COLUMN description TEXT")) + conn.commit() yield # Shutdown pass -- cgit v1.3-2-g0d8e