From 6148b28cba1c0eab6bc01f28808db9ad04583080 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Sun, 5 Apr 2026 12:42:54 +0000 Subject: [PATCH] fix(readme): align architecture diagram formatting in the documentation --- changelog.md | 5 +++++ readme.md | 16 ++++++++-------- ts/00_commitinfo_data.ts | 2 +- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/changelog.md b/changelog.md index 1427549..d6d5ad2 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-04-05 - 2.6.2 - fix(readme) +align architecture diagram formatting in the documentation + +- Adjusts spacing and box alignment in the README architecture diagram for clearer presentation. + ## 2026-04-05 - 2.6.1 - fix(readme) correct ASCII diagram spacing in architecture overview diff --git a/readme.md b/readme.md index c83b92b..06dcfee 100644 --- a/readme.md +++ b/readme.md @@ -46,13 +46,13 @@ SmartDB uses a **sidecar binary** pattern — TypeScript handles lifecycle, Rust ┌──────────────────────────────────────────────────────────────┐ │ Your Application │ │ (TypeScript / Node.js) │ -│ ┌─────────────────┐ ┌───────────────────────────┐ │ -│ │ SmartdbServer │────▶│ RustDbBridge (IPC) │ │ -│ │ or LocalSmartDb │ │ @push.rocks/smartrust │ │ -│ └─────────────────┘ └───────────┬───────────────┘ │ -└─────────────────────────────────── ───┼───────────────────────┘ - │ spawn + JSON IPC - ▼ +│ ┌──────────────────┐ ┌───────────────────────────┐ │ +│ │ SmartdbServer │─────▶│ RustDbBridge (IPC) │ │ +│ │ or LocalSmartDb │ │ @push.rocks/smartrust │ │ +│ └──────────────────┘ └───────────┬───────────────┘ │ +└────────────────────────────────────────┼─────────────────────┘ + │ spawn + JSON IPC + ▼ ┌──────────────────────────────────────────────────────────────┐ │ rustdb binary │ │ │ @@ -60,7 +60,7 @@ SmartDB uses a **sidecar binary** pattern — TypeScript handles lifecycle, Rust │ │ Wire Protocol│→ │Command Router│→ │ Handlers │ │ │ │ (OP_MSG) │ │ (40+ cmds) │ │ Find,Insert.. │ │ │ └──────────────┘ └──────────────┘ └───────┬───────┘ │ -│ │ │ +│ │ │ │ ┌─────────┐ ┌────────┐ ┌───────────┐ ┌──────┴──────┐ │ │ │ Query │ │ Update │ │Aggregation│ │ Index │ │ │ │ Matcher │ │ Engine │ │ Engine │ │ Engine │ │ diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 1d8ee7d..ed8b3b9 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartdb', - version: '2.6.1', + version: '2.6.2', description: 'A MongoDB-compatible embedded database server with wire protocol support, backed by a high-performance Rust engine.' }