@vincentzyuapps/winload 0.1.8-beta.3 → 0.1.8-rc.0
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/package.json +7 -7
- package/readme.md +20 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincentzyuapps/winload",
|
|
3
|
-
"version": "0.1.8-
|
|
3
|
+
"version": "0.1.8-rc.0",
|
|
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.8-
|
|
37
|
-
"@vincentzyuapps/winload-win32-arm64": "0.1.8-
|
|
38
|
-
"@vincentzyuapps/winload-linux-x64": "0.1.8-
|
|
39
|
-
"@vincentzyuapps/winload-linux-arm64": "0.1.8-
|
|
40
|
-
"@vincentzyuapps/winload-darwin-x64": "0.1.8-
|
|
41
|
-
"@vincentzyuapps/winload-darwin-arm64": "0.1.8-
|
|
36
|
+
"@vincentzyuapps/winload-win32-x64": "0.1.8-rc.0",
|
|
37
|
+
"@vincentzyuapps/winload-win32-arm64": "0.1.8-rc.0",
|
|
38
|
+
"@vincentzyuapps/winload-linux-x64": "0.1.8-rc.0",
|
|
39
|
+
"@vincentzyuapps/winload-linux-arm64": "0.1.8-rc.0",
|
|
40
|
+
"@vincentzyuapps/winload-darwin-x64": "0.1.8-rc.0",
|
|
41
|
+
"@vincentzyuapps/winload-darwin-arm64": "0.1.8-rc.0"
|
|
42
42
|
}
|
|
43
43
|
}
|
package/readme.md
CHANGED
|
@@ -195,6 +195,7 @@ winload --npcap # Capture 127.0.0.1 loopback traffic (Windows, requires Npc
|
|
|
195
195
|
| Key | Action |
|
|
196
196
|
|-----|--------|
|
|
197
197
|
| `←` / `→` or `↑` / `↓` | Switch network device |
|
|
198
|
+
| `F3` | Toggle debug info overlay (Minecraft-style) |
|
|
198
199
|
| `=` | Toggle separator line visibility |
|
|
199
200
|
| `c` | Toggle color on/off |
|
|
200
201
|
| `q` / `Esc` | Quit |
|
|
@@ -223,3 +224,22 @@ On Linux and macOS, loopback traffic works out of the box — no extra flags nee
|
|
|
223
224
|
|
|
224
225
|
#### Rust Edition Preview
|
|
225
226
|

|
|
227
|
+
|
|
228
|
+
## 📦 Dependencies
|
|
229
|
+
|
|
230
|
+
### Python Edition
|
|
231
|
+
|
|
232
|
+
| Package | Version | Description |
|
|
233
|
+
|:---|:---|:---|
|
|
234
|
+
| [](https://github.com/giampaolo/psutil) | ≥7.0 | Process and system utilities |
|
|
235
|
+
| [](https://github.com/zhirui2020/windows-curses) | ≥2.0 | Windows curses support |
|
|
236
|
+
|
|
237
|
+
### Rust Edition
|
|
238
|
+
|
|
239
|
+
| Package | Version | Description |
|
|
240
|
+
|:---|:---|:---|
|
|
241
|
+
| [](https://github.com/ratatui-org/ratatui) | 0.29 | Terminal UI framework |
|
|
242
|
+
| [](https://github.com/crossterm-rs/crossterm) | 0.28 | Cross-platform terminal library |
|
|
243
|
+
| [](https://github.com/GuillaumeGomez/sysinfo) | 0.32 | System information library |
|
|
244
|
+
| [](https://github.com/clap-rs/clap) | 4 | Command-line argument parser |
|
|
245
|
+
| [](https://github.com/pcap-parser/pcap) | 2 | Packet capture (optional, Windows) |
|