From a4ba6806e50db956bbc5f47664911594f0fbfd1b Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Sat, 21 Mar 2026 20:50:11 +0000 Subject: [PATCH] fix(readme): preserve markdown line breaks in feature list --- changelog.md | 5 +++++ readme.md | 10 +++++----- ts/00_commitinfo_data.ts | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/changelog.md b/changelog.md index 4d2c328..9d3108c 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2026-03-21 - 1.4.1 - fix(readme) +preserve markdown line breaks in feature list + +- Adds trailing spaces to the README feature list so each highlighted capability renders on its own line. + ## 2026-03-19 - 1.4.0 - feat(vpn transport) add QUIC transport support with auto fallback to WebSocket diff --git a/readme.md b/readme.md index cd467d0..631beea 100644 --- a/readme.md +++ b/readme.md @@ -2,11 +2,11 @@ A high-performance VPN with a **TypeScript control plane** and a **Rust data plane daemon**. Manage VPN connections with clean, fully-typed APIs while all networking heavy lifting — encryption, tunneling, QoS, rate limiting — runs at native speed in Rust. -🔒 **Noise NK** handshake + **XChaCha20-Poly1305** encryption -🚀 **Dual transport**: WebSocket (Cloudflare-friendly) and raw **QUIC** (with datagram support) -📊 **Adaptive QoS**: packet classification, priority queues, per-client rate limiting -🔄 **Auto-transport**: tries QUIC first, falls back to WebSocket seamlessly -📡 **Real-time telemetry**: RTT, jitter, loss, link health — all exposed via typed APIs +🔒 **Noise NK** handshake + **XChaCha20-Poly1305** encryption +🚀 **Dual transport**: WebSocket (Cloudflare-friendly) and raw **QUIC** (with datagram support) +📊 **Adaptive QoS**: packet classification, priority queues, per-client rate limiting +🔄 **Auto-transport**: tries QUIC first, falls back to WebSocket seamlessly +📡 **Real-time telemetry**: RTT, jitter, loss, link health — all exposed via typed APIs ## Issue Reporting and Security diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 3d585d9..dca69ef 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartvpn', - version: '1.4.0', + version: '1.4.1', description: 'A VPN solution with TypeScript control plane and Rust data plane daemon' }