mirror of
https://github.com/temetro/temetro.git
synced 2026-07-26 11:58:14 +00:00
f12285b8c6
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4.3 KiB
4.3 KiB
Changelog
All notable changes to temetro are recorded here. The format is loosely based on Keep a Changelog, and the project follows Semantic Versioning. See RELEASING.md for how releases are cut and published.
[Unreleased]
[0.2.2] — 2026-06-28
Fixed
- AI chat record cards now render on Google Gemini. The card-emitting
chat tools (
listAppointments,listTasks,listPrescriptions,getClinicInfo,getAnalytics,listInventory) used an empty parameter schema; Gemini can't emit a function call for a schema with no properties, so it printed the call astool_codetext instead of invoking the tool — leaving replies as plain text (e.g. "Show today's schedule" leaked a raw<tool_code>block) with no cards. The tools now share a non-empty schema so Gemini calls them; other providers are unaffected.
[0.2.1] — 2026-06-27
Fixed
- Patients pagination controls now render as proper buttons — the prev/next
and page-number controls were unstyled and wrapping (the COSS
PaginationLinkdrops its button styling when given arenderprop). - Patient detail sheet header reflowed: actions (Download summary / Transfer / Edit / Delete) moved to their own wrapping row so the patient name is no longer truncated.
- Messages thread now shows sender and recipient avatars alongside the chat bubbles.
- Release notes — the
releaseworkflow now publishes the matchingCHANGELOG.mdsection as the GitHub Release body (instead of only the auto-generated "Full Changelog" link).
[0.2.0] — 2026-06-27
Added
- Patients table pagination. The Patients list now paginates at 10 rows per
page (COSS
Pagination), so large clinics no longer scroll endlessly. - Per-patient record history. The patient detail sheet shows an audit
timeline of every add/change on that chart.
GET /api/activity/patient/:fileNumber. - Patient summary PDF. A Download summary action on the patient sheet produces a clean, printable one-page clinical summary (browser "Save as PDF").
- AI setup notice. A single, dismissible heads-up appears above the chat input on a fresh chat when no AI provider (API key or local Ollama) is configured; it clears itself once you send a message.
- Version & update awareness.
GET /api/versionreports the running version and checks GitHub Releases for a newer one; Settings → About & updates shows the current/latest version, and an optional, dismissible banner appears when an update is available. - LAN access. The frontend now resolves the backend URL from the host the
browser is using, so other departments can reach temetro at
http://<server-LAN-IP>:3000with no rebuild. A Settings panel surfaces the shareable network address.GET /api/networkreports detected LAN addresses. - Prebuilt Docker images published to Docker Hub (
khalidxv/temetro-backend,khalidxv/temetro-frontend) via a tag-triggered GitHub Actions release workflow. - Voice dictation on the AI chat input (Web Speech API), with graceful fallback where the browser doesn't support it.
Changed
- Messages thread rebuilt on the shadcn
Message/Bubble/Attachmentcomponents (COSS colour tokens preserved) for a cleaner conversation surface. - Patient status badges now use semantic colours (active → success, inpatient → info) instead of a flat secondary badge.
docker-compose.ymlreferences the published images (with a build fallback) and no longer bakes a fixed API URL into the frontend.
Fixed
- AI import approval card.
previewImportnow declares a concrete record schema so Google Gemini emits a real tool call (and the approval card renders) instead of dumping atool_code/JSON wall as text. The system prompt also forbids printing tool calls and re-listing fields. - Settings network address no longer shows a bogus container IP / "Error"
under Docker — the
/api/networkendpoint now skips container-internal interfaces, and the panel falls back to the helpful LAN hint.
[0.1.0] — 2026-06-26
Initial baseline: clinician AI-chat UI wired to the TypeScript/Express/Postgres API (Better Auth, multi-tenant clinics, org-scoped patient records), the patient wallet encrypted-share flow, and Dockerised local run.