@vincentzyuapps/winload 0.1.8-rc.13 → 0.1.8-rc.14

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 +13 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vincentzyuapps/winload",
3
- "version": "0.1.8-rc.13",
3
+ "version": "0.1.8-rc.14",
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-rc.13",
37
- "@vincentzyuapps/winload-win32-arm64": "0.1.8-rc.13",
38
- "@vincentzyuapps/winload-linux-x64": "0.1.8-rc.13",
39
- "@vincentzyuapps/winload-linux-arm64": "0.1.8-rc.13",
40
- "@vincentzyuapps/winload-darwin-x64": "0.1.8-rc.13",
41
- "@vincentzyuapps/winload-darwin-arm64": "0.1.8-rc.13"
36
+ "@vincentzyuapps/winload-win32-x64": "0.1.8-rc.14",
37
+ "@vincentzyuapps/winload-win32-arm64": "0.1.8-rc.14",
38
+ "@vincentzyuapps/winload-linux-x64": "0.1.8-rc.14",
39
+ "@vincentzyuapps/winload-linux-arm64": "0.1.8-rc.14",
40
+ "@vincentzyuapps/winload-darwin-x64": "0.1.8-rc.14",
41
+ "@vincentzyuapps/winload-darwin-arm64": "0.1.8-rc.14"
42
42
  }
43
43
  }
package/readme.md CHANGED
@@ -26,6 +26,7 @@
26
26
  [![AUR](https://img.shields.io/badge/AUR-1793D1?style=for-the-badge&logo=archlinux&logoColor=white)](https://aur.archlinux.org/packages/winload-rust-bin)
27
27
  [![APT](https://img.shields.io/badge/APT-E95420?style=for-the-badge&logo=debian&logoColor=white)](https://github.com/VincentZyuApps/winload/releases)
28
28
  [![RPM](https://img.shields.io/badge/RPM-CB1626?style=for-the-badge&logo=redhat&logoColor=white)](https://github.com/VincentZyuApps/winload/releases)
29
+ [![Homebrew](https://img.shields.io/badge/Homebrew-FBB040?style=for-the-badge&logo=homebrew&logoColor=black)](https://github.com/VincentZyuApps/homebrew-tap/blob/main/Formula/winload.rb)
29
30
 
30
31
  > **[📖 Build Docs](.github/workflows/build.md)**
31
32
 
@@ -108,6 +109,8 @@ cargo install --list
108
109
  ### Windows (Scoop)
109
110
  ```powershell
110
111
  scoop bucket add vincentzyu https://github.com/VincentZyuApps/scoop-bucket
112
+ # or from Gitee:
113
+ # scoop bucket add vincentzyu https://gitee.com/vincent-zyu/scoop-bucket
111
114
  scoop install winload
112
115
  # execute bin file
113
116
  win-nload
@@ -144,6 +147,16 @@ which winload
144
147
  ```
145
148
  > 📄 [View Gitee install script](https://gitee.com/vincent-zyu/winload/blob/main/docs/install_scripts/install_gitee.sh)
146
149
 
150
+ ### macOS / Linux (Homebrew)
151
+ ```bash
152
+ brew tap vincentzyuapps/tap
153
+ # or from Gitee (manual tap clone):
154
+ # git clone https://gitee.com/vincent-zyu/homebrew-tap.git "$(brew --prefix)/Library/Taps/vincentzyuapps/homebrew-tap"
155
+ brew install winload
156
+ which winload
157
+ ```
158
+ > 📄 [View Homebrew formula](https://github.com/VincentZyuApps/homebrew-tap/blob/main/Formula/winload.rb)
159
+
147
160
  > ⚠️ These install scripts only support systems with **apt or dnf** package managers on **x86_64 / aarch64** architectures. For other platforms, use **npm** (`npm install -g @vincentzyuapps/winload`) or **Cargo** (`cargo install winload`) instead.
148
161
 
149
162
  <details>