@vincentzyuapps/winload 0.1.7-rc.18 → 0.1.7-rc.21

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 +11 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vincentzyuapps/winload",
3
- "version": "0.1.7-rc.18",
3
+ "version": "0.1.7-rc.21",
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.7-rc.18",
37
- "@vincentzyuapps/winload-win32-arm64": "0.1.7-rc.18",
38
- "@vincentzyuapps/winload-linux-x64": "0.1.7-rc.18",
39
- "@vincentzyuapps/winload-linux-arm64": "0.1.7-rc.18",
40
- "@vincentzyuapps/winload-darwin-x64": "0.1.7-rc.18",
41
- "@vincentzyuapps/winload-darwin-arm64": "0.1.7-rc.18"
36
+ "@vincentzyuapps/winload-win32-x64": "0.1.7-rc.21",
37
+ "@vincentzyuapps/winload-win32-arm64": "0.1.7-rc.21",
38
+ "@vincentzyuapps/winload-linux-x64": "0.1.7-rc.21",
39
+ "@vincentzyuapps/winload-linux-arm64": "0.1.7-rc.21",
40
+ "@vincentzyuapps/winload-darwin-x64": "0.1.7-rc.21",
41
+ "@vincentzyuapps/winload-darwin-arm64": "0.1.7-rc.21"
42
42
  }
43
43
  }
package/readme.md CHANGED
@@ -30,10 +30,10 @@
30
30
  > **[📖 Build Docs](.github/workflows/build.md)**
31
31
 
32
32
  ## 🚀 Introduction
33
- Winload brings an intuitive, visual network monitor to the modern terminal. It started as a Windows-focused tool to fill the nload gap, and now targets Linux and macOS as well.
33
+ `Winload` brings an intuitive, visual network monitor to the modern terminal. It started as a Windows-focused tool to fill the `nload` gap, and now targets Linux and macOS as well.
34
34
 
35
35
  ## 🙏 Acknowledgements
36
- Winload is inspired by the classic nload project by Roland Riegel. Many thanks for the original idea and experience.
36
+ Winload is inspired by the classic 「[nload](https://github.com/rolandriegel/nload)」 project by Roland Riegel. Many thanks for the original idea and experience.
37
37
  https://github.com/rolandriegel/nload
38
38
 
39
39
  ## ✨ Key Features
@@ -116,6 +116,15 @@ which winload
116
116
  ```
117
117
  > 📄 [View install script source](https://github.com/VincentZyuApps/winload/blob/main/docs/install_scripts/install.sh)
118
118
 
119
+ **🇨🇳 Gitee mirror (faster in China Mainland):**
120
+ ```bash
121
+ curl -fsSL https://gitee.com/vincent-zyu/winload/raw/main/docs/install_scripts/install_gitee.sh | bash
122
+ which winload
123
+ ```
124
+ > 📄 [View Gitee install script](https://gitee.com/vincent-zyu/winload/blob/main/docs/install_scripts/install_gitee.sh)
125
+
126
+ > ⚠️ 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.
127
+
119
128
  <details>
120
129
  <summary>Manual install</summary>
121
130