winload-rust-bin 0.1.9-rc.7 → 0.1.9

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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. package/readme.md +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "winload-rust-bin",
3
- "version": "0.1.9-rc.7",
3
+ "version": "0.1.9",
4
4
  "description": "Network Load Monitor — nload-like TUI tool for Windows/Linux/macOS (prebuilt Rust binary)",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -33,11 +33,11 @@
33
33
  "access": "public"
34
34
  },
35
35
  "optionalDependencies": {
36
- "@vincentzyuapps/winload-win32-x64": "0.1.9-rc.7",
37
- "@vincentzyuapps/winload-win32-arm64": "0.1.9-rc.7",
38
- "@vincentzyuapps/winload-linux-x64": "0.1.9-rc.7",
39
- "@vincentzyuapps/winload-linux-arm64": "0.1.9-rc.7",
40
- "@vincentzyuapps/winload-darwin-x64": "0.1.9-rc.7",
41
- "@vincentzyuapps/winload-darwin-arm64": "0.1.9-rc.7"
36
+ "@vincentzyuapps/winload-win32-x64": "0.1.9",
37
+ "@vincentzyuapps/winload-win32-arm64": "0.1.9",
38
+ "@vincentzyuapps/winload-linux-x64": "0.1.9",
39
+ "@vincentzyuapps/winload-linux-arm64": "0.1.9",
40
+ "@vincentzyuapps/winload-darwin-x64": "0.1.9",
41
+ "@vincentzyuapps/winload-darwin-arm64": "0.1.9"
42
42
  }
43
43
  }
package/readme.md CHANGED
@@ -207,7 +207,7 @@ winload --title "My Monitor" # Use a custom header title
207
207
  winload --title "" # Keep the default device header
208
208
  winload -e # Enable emoji decorations 🎉
209
209
  winload --npcap # Capture 127.0.0.1 loopback traffic (Windows, requires Npcap)
210
- winload --netlink # Use RTNETLINK on Linux/Android (Termux proot distro, etc.)
210
+ winload --netlink # Manually enable RTNETLINK (Linux/Android Rust edition, off by default)
211
211
  ```
212
212
 
213
213
  ### Options
@@ -273,13 +273,13 @@ This requires [Npcap](https://npcap.com/#download) installed with "Support loopb
273
273
 
274
274
  On Linux and macOS, loopback traffic works out of the box — no extra flags needed.
275
275
 
276
- On **Linux/Android**, if `/proc/net/dev` is not accessible (e.g. inside a Termux proot distro or other restricted environments), use `--netlink` to collect network stats via RTNETLINK directly:
276
+ On **Linux/Android**, if `/proc/net/dev` is not accessible (e.g. inside a Termux proot distro or other restricted environments), the Rust edition can use `--netlink` to collect network stats via RTNETLINK directly:
277
277
 
278
278
  ```bash
279
279
  winload --netlink
280
280
  ```
281
281
 
282
- > Note: `--netlink` is **Linux/Android only**. On macOS, netlink is not available sysinfo is used by default.
282
+ > Note: `--netlink` is an **opt-in backend**, similar to `--npcap`; it is never enabled unless you pass the flag. Normal Linux/Android runs still use sysinfo by default. This flag is **Linux/Android Rust edition only**; the Python edition does not support `--netlink` and continues to use psutil. macOS does not support netlink.
283
283
  >
284
284
  > 📖 For a deep dive into Linux/Android network statistics collection, see [docs/linux_android_netlink.md](docs/linux_android_netlink.md)
285
285