46 lines
2.0 KiB
TypeScript
46 lines
2.0 KiB
TypeScript
// Mirrors CHANGELOG.md at the repo root — update both together.
|
|
export const APP_VERSION = "0.2.1";
|
|
|
|
export type ChangelogEntry = {
|
|
version: string;
|
|
date: string;
|
|
added?: string[];
|
|
fixed?: string[];
|
|
notes?: string;
|
|
};
|
|
|
|
export const CHANGELOG: ChangelogEntry[] = [
|
|
{
|
|
version: "0.2.1",
|
|
date: "2026-07-12",
|
|
fixed: [
|
|
"Recipe photos were lost after saving, and multi-file uploads only kept the last file selected.",
|
|
"Photo thumbnails failed to load — Next.js's image optimizer was refusing local-storage hosts.",
|
|
],
|
|
},
|
|
{
|
|
version: "0.2.0",
|
|
date: "2026-07-12",
|
|
added: [
|
|
"Batch cooking: generate a single \"mega recipe\" covering several meals at once — merged shopping list, steps tagged per dish, and per-dish storage/reheat guidance.",
|
|
"Leftover expiry reminders: mark a batch-cook dish as cooked, track its fridge life, and get a reminder before it goes bad.",
|
|
"\"Cooked it\" photo reviews: attach a photo and written review when rating a recipe.",
|
|
"Pantry-expiry recipe suggestions on the Pantry page.",
|
|
"Trending collections: star public collections, browse trending/recent under Collections → Discover.",
|
|
"Add to collection directly from the recipe list.",
|
|
"List and compact view modes for the recipe list.",
|
|
],
|
|
fixed: [
|
|
"Recipe version-comparison diff was unreadable and partially untranslated.",
|
|
"Print/export pages now always render light, regardless of app theme.",
|
|
"Presigned photo-upload URLs were signed against an internal-only address in production.",
|
|
"Recipe list/form UI issues: filter menu closing on every click, tag filter not accepting keystrokes, inconsistent badge styling, missing tooltips, floating save button on long forms.",
|
|
],
|
|
},
|
|
{
|
|
version: "0.1.0",
|
|
date: "earlier",
|
|
notes: "Initial feature set: recipes, meal planning, shopping lists, pantry tracking, collections, social features, nutrition tracking, admin dashboard, account/billing basics.",
|
|
},
|
|
];
|