diff --git a/CHANGELOG.md b/CHANGELOG.md index 04612d3..b4bfe79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ for how releases are cut and published. ## [Unreleased] +## [0.14.1] — 2026-07-15 + +### Fixed +- **"Send to wallet" now works from every dialog, not just the patient sheet.** The wallet step in + the appointment, invoice, prescription, patient-edit, and scribe dialogs was gated on a wallet-link + check that resolved asynchronously; if the clinician saved before it resolved (or it briefly + failed), the dialog silently closed without pushing. The dialogs now await the link check before + deciding, and an empty change summary can no longer be sent + (`frontend/components/wallet/use-wallet-sync.ts`, `wallet-sync-step.tsx`). + +### Changed +- **Settings sections composed from `CardFrame` primitives.** Each settings section now builds on + `CardFrameHeader`/`CardFrameTitle`/`CardFrameDescription` + a new `CardFramePanel` body, and the + per-row `SettingsCard` renders a real `Card`, giving a consistent framed surface + (`frontend/components/ui/card.tsx`, `frontend/components/settings/settings-parts.tsx`). + ## [0.14.0] — 2026-07-13 ### Changed diff --git a/backend/package.json b/backend/package.json index db28a8c..a7726b1 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "temetro-backend", - "version": "0.14.0", + "version": "0.14.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 4750ab5..bac0268 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.14.0", + "version": "0.14.1", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index f8e8201..4812692 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "temetro", - "version": "0.14.0", + "version": "0.14.1", "private": true, "devDependencies": { "shadcn": "^4.11.0"