diff --git a/CHANGELOG.md b/CHANGELOG.md index 34b5c3c..b793d49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,25 @@ for how releases are cut and published. ## [Unreleased] +## [0.2.4] — 2026-06-29 + +### Added +- **Pagination** on the Activity and Invoices pages (10 per page), matching the + Patients page, via a shared `ListPagination` component. +- **French (Français)** interface language, with a language switcher in + Settings → Profile. The choice persists on the device. +- **"Check for updates"** button in Settings → About & updates that forces a + fresh check. + +### Changed +- **Update detection** now reads the latest version from **Docker Hub** image + tags (the channel clinics actually pull), falling back to the GitHub release + if Docker Hub is unreachable. This fixes "About & updates" showing *Up to + date* when a newer image was already published. +- **docker compose** host ports are now configurable (`BACKEND_PORT`, + `FRONTEND_PORT`, `ADMINER_PORT`, alongside `POSTGRES_PORT`) so a port clash on + `docker compose up -d` can be resolved from `.env` without editing the file. + ## [0.2.3] — 2026-06-29 ### Fixed diff --git a/backend/package.json b/backend/package.json index 0ca0cc7..6e2d016 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "temetro-backend", - "version": "0.2.3", + "version": "0.2.4", "private": true, "type": "module", "description": "temetro backend — Express + Postgres API with Better Auth (email/password, organizations) and org-scoped patient records.", diff --git a/frontend/package.json b/frontend/package.json index 09e50e9..cd92891 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.2.3", + "version": "0.2.4", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index e9bcb84..c4d7a07 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "temetro", - "version": "0.2.3", + "version": "0.2.4", "private": true, "devDependencies": { "shadcn": "^4.11.0"