@vincentzyuapps/winload 0.1.8-rc.16 → 0.1.8-rc.18

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 +6 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vincentzyuapps/winload",
3
- "version": "0.1.8-rc.16",
3
+ "version": "0.1.8-rc.18",
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.16",
37
- "@vincentzyuapps/winload-win32-arm64": "0.1.8-rc.16",
38
- "@vincentzyuapps/winload-linux-x64": "0.1.8-rc.16",
39
- "@vincentzyuapps/winload-linux-arm64": "0.1.8-rc.16",
40
- "@vincentzyuapps/winload-darwin-x64": "0.1.8-rc.16",
41
- "@vincentzyuapps/winload-darwin-arm64": "0.1.8-rc.16"
36
+ "@vincentzyuapps/winload-win32-x64": "0.1.8-rc.18",
37
+ "@vincentzyuapps/winload-win32-arm64": "0.1.8-rc.18",
38
+ "@vincentzyuapps/winload-linux-x64": "0.1.8-rc.18",
39
+ "@vincentzyuapps/winload-linux-arm64": "0.1.8-rc.18",
40
+ "@vincentzyuapps/winload-darwin-x64": "0.1.8-rc.18",
41
+ "@vincentzyuapps/winload-darwin-arm64": "0.1.8-rc.18"
42
42
  }
43
43
  }
package/readme.md CHANGED
@@ -107,10 +107,13 @@ cargo install winload
107
107
  cargo install --list
108
108
  ```
109
109
  ### Windows (Scoop)
110
+ > 📄 [Scoop Bucket (GitHub)](https://github.com/VincentZyuApps/scoop-bucket/blob/main/bucket/winload.json)
111
+ > 📄 [Scoop Bucket (Gitee)](https://gitee.com/vincent-zyu/scoop-bucket/blob/main/bucket/winload.json)
110
112
  ```powershell
111
113
  scoop bucket add vincentzyu https://github.com/VincentZyuApps/scoop-bucket
112
114
  # or from Gitee:
113
115
  # scoop bucket add vincentzyu https://gitee.com/vincent-zyu/scoop-bucket
116
+ scoop update # optional: manually refresh bucket list before install
114
117
  scoop install winload
115
118
  # execute bin file
116
119
  win-nload
@@ -149,11 +152,13 @@ which winload
149
152
  > 📄 [View Gitee install script](https://gitee.com/vincent-zyu/winload/blob/main/docs/install_scripts/install_gitee.sh)
150
153
 
151
154
  ### macOS / Linux (Homebrew)
155
+ > 📄 [Homebrew Formula (GitHub)](https://github.com/VincentZyuApps/homebrew-tap/blob/main/Formula/winload.rb)
156
+ > 📄 [Homebrew Formula (Gitee)](https://gitee.com/vincent-zyu/homebrew-tap/blob/main/Formula/winload.rb)
152
157
  ```bash
153
158
  brew tap vincentzyuapps/tap
154
159
  # or from Gitee (manual tap clone):
155
160
  # git clone https://gitee.com/vincent-zyu/homebrew-tap.git "$(brew --prefix)/Library/Taps/vincentzyuapps/homebrew-tap"
156
- brew install winload
161
+ brew update && brew install winload
157
162
  which winload
158
163
  ```
159
164
  > 📄 [View Homebrew formula](https://github.com/VincentZyuApps/homebrew-tap/blob/main/Formula/winload.rb)