Skip to content

Commit

Permalink
Feature/v3.sh enhancements (#393)
Browse files Browse the repository at this point in the history
* 更新 v3.sh

新增交互菜单及全局管理命令

* add v3-en.sh

* 更新一键脚本使用说明

更新一键脚本使用说明

* Update usage guide

* Update Script Documentation Block

* UPDATE GH_PROXY

修改脚本内置GH代理地址

---------

Co-authored-by: Troray <[email protected]>
  • Loading branch information
Troray and kingfren authored Jan 10, 2025
1 parent 96a05f9 commit c8345a7
Show file tree
Hide file tree
Showing 8 changed files with 1,195 additions and 166 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/.vuepress/public/img/guide/alist-manager.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/.vuepress/public/img/guide/v3-install-en.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/.vuepress/public/img/guide/v3-install.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
641 changes: 641 additions & 0 deletions docs/.vuepress/public/v3-en.sh

Large diffs are not rendered by default.

676 changes: 534 additions & 142 deletions docs/.vuepress/public/v3.sh

Large diffs are not rendered by default.

22 changes: 10 additions & 12 deletions docs/guide/install/script.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,17 @@ Only for Linux-x86_64/arm64 platform.

@tab Latest
**Install**
```bash
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s install
```

**Update**
```bash
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s update
curl -fsSL "https://alist.nn.ci/v3-en.sh" -o v3-en.sh && bash v3-en.sh
```
![v3-install](/img/guide/v3-install-en.png)

**alist-manager**

"Use command: alist or alist-manager"
![alist-manager](/img/guide/alist-manager-en.png)

**Uninstall**
```bash
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s uninstall
```

@tab Beta
**Install**
Expand Down Expand Up @@ -65,11 +63,11 @@ The default installation is in `/opt/alist`. To customize the installation path,
@tab Latest
```bash
# Install
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s install /root
curl -fsSL "https://alist.nn.ci/v3-en.sh" -o v3-en.sh && bash v3-en.sh install /root
# update
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s update /root
curl -fsSL "https://alist.nn.ci/v3-en.sh" -o v3-en.sh && bash v3-en.sh update /root
# Uninstall
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s uninstall /root
curl -fsSL "https://alist.nn.ci/v3-en.sh" -o v3-en.sh && bash v3-en.sh uninstall /root
```

@tab Beta
Expand Down
22 changes: 10 additions & 12 deletions docs/zh/guide/install/script.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,16 @@ star: true
@tab 正式版
**安装**
```bash
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s install
curl -fsSL "https://alist.nn.ci/v3.sh" -o v3.sh && bash v3.sh
```
![v3-install](/img/guide/v3-install.png)

**面板管理命令**

使用命令:`alist` 或者 `alist-manager`
![alist-manager](/img/guide/alist-manager.png)

**更新**
```bash
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s update
```

**卸载**
```bash
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s uninstall
```

@tab 测试版
**安装**
Expand Down Expand Up @@ -67,11 +65,11 @@ curl -fsSL "https://alist.nn.ci/beta.sh" | bash -s uninstall
@tab 正式版
```bash
# Install
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s install /root
curl -fsSL "https://alist.nn.ci/v3.sh" -o v3.sh && bash v3.sh install /root
# update
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s update /root
curl -fsSL "https://alist.nn.ci/v3.sh" -o v3.sh && bash v3.sh update /root
# Uninstall
curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s uninstall /root
curl -fsSL "https://alist.nn.ci/v3.sh" -o v3.sh && bash v3.sh uninstall /root
```

@tab 测试版
Expand Down

0 comments on commit c8345a7

Please sign in to comment.