@harry-kp/vortix 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,99 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.7] - 2026-03-11
11
+
12
+ ### Bug Fixes
13
+
14
+ - Fix Escape/CloseOverlay resetting zoomed panel back to normal layout ([#105](https://github.com/Harry-kp/vortix/issues/105))
15
+ - Fix sidebar "Reconnect" action disconnecting instead of reconnecting the selected profile ([#106](https://github.com/Harry-kp/vortix/issues/106), [#145](https://github.com/Harry-kp/vortix/issues/145))
16
+ - Fix exponential backoff overflow causing infinite retry delays at high attempt counts ([#110](https://github.com/Harry-kp/vortix/issues/110))
17
+ - Fix renaming a profile breaking reconnect by not updating `last_connected_profile` ([#111](https://github.com/Harry-kp/vortix/issues/111))
18
+ - Fix deleting a profile during Connecting or Disconnecting state causing state corruption ([#112](https://github.com/Harry-kp/vortix/issues/112))
19
+ - Fix "IP unchanged" warning flooding logs every telemetry poll cycle while connected ([#113](https://github.com/Harry-kp/vortix/issues/113))
20
+ - Fix 0ms latency falsely showing EXCELLENT quality instead of UNKNOWN ([#146](https://github.com/Harry-kp/vortix/issues/146))
21
+
22
+ ### Features
23
+
24
+ - Add `ConnectSelected` action: sidebar `r` key now connects the highlighted profile rather than the last-used one
25
+ - Add `Unknown` quality state when no metrics have arrived yet, displayed as "─────" in header and "UNKNOWN" in details
26
+ - Include latency in connection quality scoring (Poor ≥ 300ms, Fair ≥ 100ms)
27
+ - Cap retry backoff at configurable `connect_retry_max_delay_secs` (default 300s)
28
+
29
+ ### Documentation
30
+
31
+ - Rewrite ROADMAP as a product journey with themed releases and user stories
32
+
33
+ ### Miscellaneous
34
+
35
+ - **deps:** Bump the rust-minor group with 3 updates ([#149](https://github.com/Harry-kp/vortix/pull/149))
36
+
37
+
38
+
39
+ ## [0.1.6] - 2026-03-08
40
+
41
+ ### Bug Fixes
42
+
43
+ - Fix `pkill openvpn` killing all system OpenVPN processes instead of only Vortix-managed ones ([#95](https://github.com/Harry-kp/vortix/issues/95))
44
+ - Fix kill switch state file written to world-readable `/tmp/` ([#96](https://github.com/Harry-kp/vortix/issues/96))
45
+ - Fix kill switch displaying "Blocking" without root, giving a false sense of security ([#97](https://github.com/Harry-kp/vortix/issues/97))
46
+ - Fix Unicode text input causing panic in text field handlers ([#98](https://github.com/Harry-kp/vortix/issues/98))
47
+ - Add `Drop` impl on `App` to clean up kill switch rules and VPN processes on panic ([#99](https://github.com/Harry-kp/vortix/issues/99))
48
+ - Fix disconnect failure leaving app in "Disconnected" state while VPN process may still be running ([#100](https://github.com/Harry-kp/vortix/issues/100))
49
+ - Fix spurious "VPN dropped" auto-reconnect triggered by force-kill
50
+ - Fix config viewer overlay not loading file contents on open
51
+ - Fix minimum terminal size check causing blank screen on small terminals
52
+ - Fix search and rename cursor position on multi-byte UTF-8 input
53
+ - Fix mouse events passing through overlays to background panels
54
+ - Fix help overlay not being scrollable
55
+ - Fix ISP and location text truncated too aggressively on narrow terminals ([#104](https://github.com/Harry-kp/vortix/issues/104))
56
+ - Fix connection details panel mostly empty when disconnected ([#102](https://github.com/Harry-kp/vortix/issues/102))
57
+ - Fix import overlay closing immediately on URL import or empty directory
58
+ - Fix `g`/`G`/Home/End keys not routing correctly when logs panel is focused
59
+ - Fix mouse scroll not working on hovered panel (only worked on focused panel)
60
+ - Fix profile names overflowing sidebar column when names are long
61
+ - Fix password mask using byte count instead of character count for multi-byte input
62
+ - Enable config viewer overlay to be scrollable with mouse
63
+ - Fix action menus not listing all available panel actions (Sort, Rename, Filter, Kill Switch)
64
+
65
+ ### Features
66
+
67
+ - Add human-readable connection duration format (e.g., "2h 15m" instead of seconds)
68
+ - Add throughput chart with upload/download speed labels and color legend ([#103](https://github.com/Harry-kp/vortix/issues/103))
69
+ - Add active connection badge (checkmark) next to connected profile in sidebar
70
+ - Clear stale telemetry data on disconnect to avoid showing previous session info
71
+ - Add keyboard accessibility for all panels with Tab/Shift+Tab cycling
72
+ - Add panel-specific keyboard shortcuts displayed in context footer
73
+ - Add log level filtering (Error/Warn/Info) with `f` key
74
+ - Show protocol tag (WG/OVPN) in cockpit header bar when connected
75
+ - Show DNS server provider name (Cloudflare, Google, Quad9) in security panel
76
+ - Add confirmation dialog when switching profiles while connected
77
+ - Add confirmation dialog when quitting with an active VPN connection
78
+ - Add profile sorting (name, protocol, last used) with `s` key
79
+ - Add connection quality thresholds (Poor/Fair/Excellent) based on latency, jitter, and packet loss
80
+ - Move toast notifications from bottom-right to top-right for better visibility
81
+
82
+ ### Refactor
83
+
84
+ - Split 2081-line `dashboard.rs` into 13 focused per-panel modules ([#114](https://github.com/Harry-kp/vortix/issues/114))
85
+ - Extract shared confirmation dialog component to reduce code duplication
86
+ - Adopt `tempfile` crate for panic-safe test cleanup across all 31 test sites ([#116](https://github.com/Harry-kp/vortix/issues/116))
87
+ - Sanitize profile names with strict ASCII-only validation for process management
88
+ - Consolidate confirmation dialog input handling into shared `handle_confirm_keys`
89
+ - Route inline key handlers (rename, search, help, log filter) through Message dispatch for TEA consistency
90
+
91
+ ### Testing
92
+
93
+ - Enable 6 previously-ignored auth tests to run without root privileges
94
+ - Add 19 new tests covering confirm dialog keys, Home/End panel awareness, profile name sanitization, truncation edge cases, and import overlay behavior
95
+ - Migrate all test temp file creation to `tempfile` crate for automatic cleanup on panic
96
+
97
+ ### CI
98
+
99
+ - Pin Rust 1.91.0 in CI and fix remaining lint issues
100
+
101
+
102
+
10
103
  ## [0.1.5] - 2026-02-16
11
104
 
12
105
  ### Bug Fixes
@@ -133,5 +226,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
133
226
  - Config files stored with 600 permissions
134
227
  - Root privilege requirement for network interface management
135
228
 
136
- [Unreleased]: https://github.com/Harry-kp/vortix/compare/v0.1.0...HEAD
229
+ [Unreleased]: https://github.com/Harry-kp/vortix/compare/v0.1.7...HEAD
230
+ [0.1.7]: https://github.com/Harry-kp/vortix/compare/v0.1.6...v0.1.7
231
+ [0.1.6]: https://github.com/Harry-kp/vortix/compare/v0.1.5...v0.1.6
232
+ [0.1.5]: https://github.com/Harry-kp/vortix/compare/v0.1.4...v0.1.5
233
+ [0.1.4]: https://github.com/Harry-kp/vortix/compare/v0.1.3...v0.1.4
234
+ [0.1.3]: https://github.com/Harry-kp/vortix/compare/v0.1.2...v0.1.3
235
+ [0.1.2]: https://github.com/Harry-kp/vortix/compare/v0.1.1...v0.1.2
236
+ [0.1.1]: https://github.com/Harry-kp/vortix/compare/v0.1.0...v0.1.1
137
237
  [0.1.0]: https://github.com/Harry-kp/vortix/releases/tag/v0.1.0
package/README.md CHANGED
@@ -355,6 +355,10 @@ nix develop
355
355
 
356
356
  ## Featured In
357
357
 
358
+ - [awesome-rust](https://github.com/rust-unofficial/awesome-rust) — A curated list of Rust code and resources
359
+ - [awesome-ratatui](https://github.com/ratatui/awesome-ratatui) — A curated list of Ratatui apps and tools
360
+ - [awesome-tuis](https://github.com/rothgar/awesome-tuis) — A list of the best TUI programs
361
+ - [Arch Linux [extra]](https://archlinux.org/packages/extra/x86_64/vortix/) — Official Arch Linux package repository
358
362
  - [Terminal Trove](https://terminaltrove.com/vortix/) — The $HOME of all things in the terminal
359
363
 
360
364
  ## Star History
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@harry-kp/vortix",
26
- "version": "0.1.5"
26
+ "version": "0.1.7"
27
27
  },
28
28
  "node_modules/@isaacs/balanced-match": {
29
29
  "engines": {
@@ -515,5 +515,5 @@
515
515
  }
516
516
  },
517
517
  "requires": true,
518
- "version": "0.1.5"
518
+ "version": "0.1.7"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/Harry-kp/vortix/releases/download/v0.1.5",
2
+ "artifactDownloadUrl": "https://github.com/Harry-kp/vortix/releases/download/v0.1.7",
3
3
  "author": "Harry KP <harrykp@users.noreply.github.com>",
4
4
  "bin": {
5
5
  "vortix": "run-vortix.js"
@@ -100,7 +100,7 @@
100
100
  "zipExt": ".tar.xz"
101
101
  }
102
102
  },
103
- "version": "0.1.5",
103
+ "version": "0.1.7",
104
104
  "volta": {
105
105
  "node": "18.14.1",
106
106
  "npm": "9.5.0"