diff --git a/CHANGELOG.md b/CHANGELOG.md index 8deca1d..fa9ec24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,24 @@ for how releases are cut and published. ## [Unreleased] +## [0.17.0] — 2026-07-19 + +### Changed +- **Pharmacy Add-item now uses a hardware barcode scanner.** The inventory Add-item dialog is + built for a USB barcode scanner connected to the computer (a keyboard wedge): scanning a + medication types the code as a fast keystroke burst ending in Enter, which is parsed and + auto-fills the Barcode/NDC, expiry (AI 17), and lot (AI 10) fields — no need to focus any input + first. The barcode field also parses on Enter for manual entry. This replaces the camera scanner + in this dialog (the camera scanner stays for importing a patient's wallet code) + (`frontend/components/pharmacy/add-inventory-dialog.tsx`). +- **Care team settings use Separated Panels.** The Care team section now renders as distinct + bordered panels on a muted tray, matching the Preferences and AI settings frames + (`frontend/components/settings/settings-care-team.tsx`). + +### Fixed +- **Pointer cursor on Activity rows.** Hovering an entry in the Activity feed now shows the pointer + cursor (`frontend/components/activity/activity-view.tsx`). + ## [0.16.0] — 2026-07-18 ### Added diff --git a/README.md b/README.md index 9536e2d..b1460c8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ information as rich record cards — backed by a **patient-owned data model**. [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE) [![Docker images](https://img.shields.io/badge/Docker%20Hub-khalidxv-2496ED?logo=docker&logoColor=white)](https://hub.docker.com/u/khalidxv) -[![Changelog](https://img.shields.io/badge/changelog-0.14.0-success)](./CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-0.17.0-success)](./CHANGELOG.md) ![temetro AI chat](./.github/assets/screenshot-chat.png) diff --git a/backend/package.json b/backend/package.json index 90dded9..2f80574 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "temetro-backend", - "version": "0.16.0", + "version": "0.17.0", "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 33174d2..7bd6870 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.16.0", + "version": "0.17.0", "private": true, "scripts": { "dev": "next dev", diff --git a/package.json b/package.json index 7d9cd96..6f1c56b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "temetro", - "version": "0.16.0", + "version": "0.17.0", "private": true, "devDependencies": { "shadcn": "^4.11.0"