mirror of
https://github.com/temetro/temetro.git
synced 2026-09-04 14:55:28 +00:00
chore: release v0.14.1
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -7,6 +7,22 @@ for how releases are cut and published.
|
|||||||
|
|
||||||
## [Unreleased]
|
## [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
|
## [0.14.0] — 2026-07-13
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "temetro-backend",
|
"name": "temetro-backend",
|
||||||
"version": "0.14.0",
|
"version": "0.14.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "temetro backend — Express + Postgres API with Better Auth (email/password, organizations) and org-scoped patient records.",
|
"description": "temetro backend — Express + Postgres API with Better Auth (email/password, organizations) and org-scoped patient records.",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"version": "0.14.0",
|
"version": "0.14.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "temetro",
|
"name": "temetro",
|
||||||
"version": "0.14.0",
|
"version": "0.14.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"shadcn": "^4.11.0"
|
"shadcn": "^4.11.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user