diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 5b4301c..91a753c 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "hunter-backend" -version = "0.1.35" +version = "0.1.36" description = "Costing platform MVP backend (API for Hunter)" requires-python = ">=3.11" dependencies = [ diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 8ae535e..25f67ca 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "hunter-app", - "version": "0.1.35", + "version": "0.1.36", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hunter-app", - "version": "0.1.35", + "version": "0.1.36", "dependencies": { "@fontsource/inter": "^5.2.8", "lucide-svelte": "^1.0.1" diff --git a/frontend/package.json b/frontend/package.json index 9701c57..5df35b6 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "hunter-app", - "version": "0.1.35", + "version": "0.1.36", "private": true, "type": "module", "scripts": { diff --git a/frontend/src/lib/changelog.ts b/frontend/src/lib/changelog.ts index a876f4d..635aa2a 100644 --- a/frontend/src/lib/changelog.ts +++ b/frontend/src/lib/changelog.ts @@ -17,6 +17,14 @@ export type ChangelogEntry = { export const APP_VERSION: string = packageInfo.version; export const changelog: ChangelogEntry[] = [ + { + version: '0.1.36', + date: '2026-06-21', + highlights: [ + 'App: Bug fixes & improvements.', + 'App: General improvements.' + ] + }, { version: '0.1.35', date: '2026-06-21', @@ -41,12 +49,60 @@ export const changelog: ChangelogEntry[] = [ 'App: Bug fixes & improvements.' ] }, + { + version: '0.1.32', + date: '2026-06-21', + highlights: [ + 'Mix Calculator: Added search.', + 'Ingredients: Added ingredient categories.', + 'Throughput: Tidy-up and refinements.' + ] + }, { version: '0.1.31', date: '2026-06-18', highlights: [ - 'App: Bug fixes & improvements.', - 'App: Throughput module is now live.' + 'Mix Editor: Multi-row editing.', + 'App: Bug fixes & improvements.' + ] + }, + { + version: '0.1.30', + date: '2026-06-18', + highlights: [ + 'Throughput: Overview now shows today-only mix cards.', + 'Mix Editor: Fixed an error when saving a mix formula.' + ] + }, + { + version: '0.1.29', + date: '2026-06-18', + highlights: [ + 'Mix Editor: Editing a % no longer rebalances the other ingredients.' + ] + }, + { + version: '0.1.28', + date: '2026-06-17', + highlights: [ + 'Editor & Throughput: Updates and improvements.' + ] + }, + { + version: '0.1.27', + date: '2026-06-16', + highlights: [ + 'Editor: Edit a mix’s resolved formula directly, with % and kg entry on each row.', + 'Editor: New mix and new ingredient buttons.', + 'Throughput: Power BI / external API now live.', + 'App: Security hardening on API responses.' + ] + }, + { + version: '0.1.23', + date: '2026-06-15', + highlights: [ + 'App: Improvements & bug fixes.' ] }, { @@ -56,6 +112,13 @@ export const changelog: ChangelogEntry[] = [ 'Web App - Throughput module is now live.' ] }, + { + version: '0.1.21', + date: '2026-06-14', + highlights: [ + 'Mix Calculator: Composer restyle.' + ] + }, { version: '0.1.20', date: '2026-06-13', @@ -64,6 +127,14 @@ export const changelog: ChangelogEntry[] = [ 'App - Bug fixes' ] }, + { + version: '0.1.19', + date: '2026-06-13', + highlights: [ + 'Throughput: Overview view added.', + 'App: Responsive header.' + ] + }, { version: '0.1.18', date: '2026-06-12', @@ -94,9 +165,16 @@ export const changelog: ChangelogEntry[] = [ highlights: [ 'Mix Calculator: Changed from selecting Product to Mix.', 'Web app design improved', - 'Throughput tab ready for testing', + 'Throughput tab ready for testing', 'Costing Editor tab ready for testing' ] + }, + { + version: '0.1.11', + date: '2026-06-03', + highlights: [ + 'Costing Editor: First release.' + ] } ]; diff --git a/frontend/src/lib/components/WhatsNewDialog.svelte b/frontend/src/lib/components/WhatsNewDialog.svelte index 6a52908..fdc9c90 100644 --- a/frontend/src/lib/components/WhatsNewDialog.svelte +++ b/frontend/src/lib/components/WhatsNewDialog.svelte @@ -1,16 +1,22 @@