@harry-kp/vortix 0.1.6 → 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,35 @@ 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
+
10
39
  ## [0.1.6] - 2026-03-08
11
40
 
12
41
  ### Bug Fixes
@@ -197,7 +226,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
197
226
  - Config files stored with 600 permissions
198
227
  - Root privilege requirement for network interface management
199
228
 
200
- [Unreleased]: https://github.com/Harry-kp/vortix/compare/v0.1.6...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
201
231
  [0.1.6]: https://github.com/Harry-kp/vortix/compare/v0.1.5...v0.1.6
202
232
  [0.1.5]: https://github.com/Harry-kp/vortix/compare/v0.1.4...v0.1.5
203
233
  [0.1.4]: https://github.com/Harry-kp/vortix/compare/v0.1.3...v0.1.4
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@harry-kp/vortix",
26
- "version": "0.1.6"
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.6"
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.6",
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.6",
103
+ "version": "0.1.7",
104
104
  "volta": {
105
105
  "node": "18.14.1",
106
106
  "npm": "9.5.0"