diff --git a/CHANGELOG.md b/CHANGELOG.md index 58b1dde..cc489b6 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.7 — 2026-07-19 13:35 + +### Fixed +- Account dropdown menu: "View profile" and "Settings" now have icons like every other item in the menu, and there's a new separator grouping the account/support links apart from the theme switcher. + ## 0.51.6 — 2026-07-19 13:20 ### Fixed diff --git a/apps/web/components/layout/nav.tsx b/apps/web/components/layout/nav.tsx index f67e3f0..0660fee 100644 --- a/apps/web/components/layout/nav.tsx +++ b/apps/web/components/layout/nav.tsx @@ -3,7 +3,7 @@ import Link from "next/link"; import { usePathname, useRouter } from "next/navigation"; import { useTheme } from "next-themes"; -import { BookOpen, Calendar, Package, ChefHat, User, FolderOpen, ShoppingCart, Shield, Search, Compass, Menu, Sun, Moon, Monitor, Apple, LifeBuoy } from "lucide-react"; +import { BookOpen, Calendar, Package, ChefHat, User, FolderOpen, ShoppingCart, Shield, Search, Compass, Menu, Sun, Moon, Monitor, Apple, LifeBuoy, Settings, LogOut } from "lucide-react"; import { cn } from "@/lib/utils"; import { Button, buttonVariants } from "@/components/ui/button"; import { @@ -124,11 +124,17 @@ export function Nav() { {username && ( - {t("viewProfile")} + + + {t("viewProfile")} + )} - {t("settings")} + + + {t("settings")} + @@ -136,6 +142,7 @@ export function Nav() { {t("support")} +
{ void authClient.signOut({ fetchOptions: { @@ -186,6 +194,7 @@ export function Nav() { }); }} > + {t("signOut")} diff --git a/apps/web/lib/changelog.ts b/apps/web/lib/changelog.ts index d4068cd..431eecd 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.6"; +export const APP_VERSION = "0.51.7"; export type ChangelogEntry = { version: string; @@ -11,6 +11,13 @@ export type ChangelogEntry = { }; export const CHANGELOG: ChangelogEntry[] = [ + { + version: "0.51.7", + date: "2026-07-19 13:35", + fixed: [ + "Account dropdown menu: \"View profile\" and \"Settings\" now have icons like every other item in the menu, and there's a new separator grouping the account/support links apart from the theme switcher.", + ], + }, { version: "0.51.6", date: "2026-07-19 13:20", diff --git a/apps/web/package.json b/apps/web/package.json index 994b185..c73d33c 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "@epicure/web", - "version": "0.51.6", + "version": "0.51.7", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index 7535128..9ee63c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "epicure", - "version": "0.51.6", + "version": "0.51.7", "private": true, "scripts": { "dev": "pnpm --filter web dev",