Skip to content

Commit c841ea3

Browse files
committed
docs
1 parent 3d00648 commit c841ea3

File tree

5 files changed

+63
-40
lines changed

5 files changed

+63
-40
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ You can now run it using this command:
5757
5858
### What You Get
5959

60-
**No installation hassles** - Single static binary
61-
**Latest versions** - Always up-to-date dependencies
62-
**Universal compatibility** - Runs on any Linux distro
63-
**Multiple architectures** - Support for ARM devices too
60+
- **No installation hassles** - Single static binary
61+
- **Latest versions** - Always up-to-date dependencies
62+
- **Universal compatibility** - Runs on any Linux distro
63+
- **Multiple architectures** - Support for ARM devices too
6464

6565
## 📋 Table of Contents
6666

docs/astro.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import { defineConfig } from "astro/config";
22
import starlight from "@astrojs/starlight";
33
import starlightImageZoom from "starlight-image-zoom";
4+
import starlightGitHubAlerts from 'starlight-github-alerts'
45

56
// https://astro.build/config
67
export default defineConfig({
78
site: "https://userdocs.github.io",
89
base: "/qbittorrent-nox-static",
910
integrations: [
1011
starlight({
11-
plugins: [starlightImageZoom()],
12+
plugins: [starlightImageZoom(), starlightGitHubAlerts()],
1213
title: "qbittorrent-nox-static",
1314
logo: {
1415
src: "./public/logo-static.svg",

docs/package-lock.json

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"@expressive-code/plugin-collapsible-sections": "^0.41.3",
1515
"astro": "^5.6.1",
1616
"sharp": "^0.34.2",
17+
"starlight-github-alerts": "^0.1.0",
1718
"starlight-image-zoom": "^0.13.0"
1819
},
1920
"devDependencies": {

docs/src/content/docs/install-qbittorrent.mdx

Lines changed: 40 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -42,82 +42,87 @@ Optionally installed to `$HOME/bin/qbittorrent-nox`
4242

4343
Optionally you can just download the existing prebuilt binaries released using GitHub Actions.
4444

45-
<Tabs>
46-
<TabItem value="x86_64" label="x86_64" default>
45+
### Quick Install
46+
47+
> [!NOTE]
48+
>
49+
> `qi.bash`: The quick installer supports Alpine or Debian like systems.
4750
48-
Without ICU
51+
Latest release using libtorrent `v2`
4952

5053
```bash
51-
mkdir -p ~/bin && source ~/.profile
52-
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/x86_64-qbittorrent-nox
53-
chmod 700 ~/bin/qbittorrent-nox
54+
bash <(curl -sL https://raw.githubusercontent.com/userdocs/qbittorrent-nox-static/refs/heads/master/qi.bash)
5455
```
5556

56-
With ICU
57+
Latest release using libtorrent `v1.2`
5758

5859
```bash
59-
mkdir -p ~/bin && source ~/.profile
60-
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/x86_64-icu-qbittorrent-nox
61-
chmod 700 ~/bin/qbittorrent-nox
60+
bash <(curl -sL https://raw.githubusercontent.com/userdocs/qbittorrent-nox-static/refs/heads/master/qi.bash) -lt v1
6261
```
6362

64-
</TabItem>
65-
<TabItem value="aarch64" label="aarch64">
63+
Using Libtorrent v1.2 and forcing the armv7 binary
64+
65+
```bash
66+
bash <(curl -sL https://raw.githubusercontent.com/userdocs/qbittorrent-nox-static/refs/heads/master/qi.bash) -lt v1 -fa armv7
67+
```
6668

67-
Without ICU
69+
Show the help section
6870

6971
```bash
70-
mkdir -p ~/bin && source ~/.profile
71-
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/aarch64-qbittorrent-nox
72-
chmod 700 ~/bin/qbittorrent-nox
72+
bash <(curl -sL https://raw.githubusercontent.com/userdocs/qbittorrent-nox-static/refs/heads/master/qi.bash) -h
7373
```
7474

75-
With ICU
75+
You can now run it using this command:
7676

7777
```bash
78-
mkdir -p ~/bin && source ~/.profile
79-
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/aarch64-icu-qbittorrent-nox
80-
chmod 700 ~/bin/qbittorrent-nox
78+
~/bin/qbittorrent
8179
```
8280

83-
</TabItem>
84-
<TabItem value="armv7" label="armv7">
81+
> [!TIP]
82+
> Access the WebUI at `http://localhost:8080`
8583
86-
Without ICU
84+
### Manual install
85+
86+
<Tabs>
87+
<TabItem value="x86" label="x86" default>
8788

8889
```bash
8990
mkdir -p ~/bin && source ~/.profile
90-
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/armv7-qbittorrent-nox
91+
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/x86-qbittorrent-nox
9192
chmod 700 ~/bin/qbittorrent-nox
9293
```
93-
94-
With ICU
94+
</TabItem>
95+
<TabItem value="x86_64" label="x86_64" default>
9596

9697
```bash
9798
mkdir -p ~/bin && source ~/.profile
98-
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/armv7-icu-qbittorrent-nox
99+
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/x86_64-qbittorrent-nox
99100
chmod 700 ~/bin/qbittorrent-nox
100101
```
101-
102102
</TabItem>
103-
<TabItem value="armhf" label="armhf">
104-
105-
Without ICU
103+
<TabItem value="aarch64" label="aarch64">
106104

107105
```bash
108106
mkdir -p ~/bin && source ~/.profile
109-
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/armhf-qbittorrent-nox
107+
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/aarch64-qbittorrent-nox
110108
chmod 700 ~/bin/qbittorrent-nox
111109
```
112-
113-
With ICU
110+
</TabItem>
111+
<TabItem value="armv7" label="armv7">
114112

115113
```bash
116114
mkdir -p ~/bin && source ~/.profile
117-
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/armhf-icu-qbittorrent-nox
115+
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/armv7-qbittorrent-nox
118116
chmod 700 ~/bin/qbittorrent-nox
119117
```
118+
</TabItem>
119+
<TabItem value="armhf" label="armhf">
120120

121+
```bash
122+
mkdir -p ~/bin && source ~/.profile
123+
wget -qO ~/bin/qbittorrent-nox https://github.com/userdocs/qbittorrent-nox-static/releases/latest/download/armhf-qbittorrent-nox
124+
chmod 700 ~/bin/qbittorrent-nox
125+
```
121126
</TabItem>
122127
</Tabs>
123128

0 commit comments

Comments
 (0)