diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dbd189..a53463b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,24 @@ for how releases are cut and published. ## [Unreleased] +## [0.13.1] — 2026-07-13 + +### Changed +- **New Invoice checkboxes.** The Back-date / Due-date toggles now use the COSS `Checkbox` + (`frontend/components/ui/checkbox.tsx`) instead of raw, misshapen native checkboxes. +- **Patients page toolbar & table.** The list is now a COSS **Table in a `CardFrame`** + (`frontend/components/ui/table.tsx`), and the secondary "Import from a patient app" action moved + into a `⋯` overflow menu so the toolbar keeps a single primary "Add patient" CTA. +- **Patient detail sheet header.** The five action buttons plus delete collapse into a primary + **Edit** button and a `⋯ More` menu (Download summary, Record visit, Transfer, Push to wallet, and + a destructive Delete). + +### Wallet app +- **Home quick actions open sheets.** "Share record" now opens a bottom sheet with a scannable **QR** + of the wallet number (`react-native-qrcode-svg`); "My wallet" opens a bottom sheet with copyable + wallet number / fingerprint / algorithm; and the duplicate "Notifications" action (the header + already has a bell) is replaced with **Scan**. + ## [0.13.0] — 2026-07-12 ### Added diff --git a/backend/package.json b/backend/package.json index 8cb8a49..c04014c 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "temetro-backend", - "version": "0.13.0", + "version": "0.13.1", "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 2f27c78..89640dc 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.13.0", + "version": "0.13.1", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index b55eb1e..61845a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "temetro", - "version": "0.13.0", + "version": "0.13.1", "private": true, "devDependencies": { "shadcn": "^4.11.0"