Skip to content

Commit 6236ebf

Browse files
authored
更新文档,杂项 (#179)
* 更新文档杂项 * test New url open * 添加移动云,alias,流程图跳转测试等 * 完成 * 添加做种时间说明 * 添加离线 torrent 类型文件说明
1 parent abe4354 commit 6236ebf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+1934
-37
lines changed
16.1 KB
Loading
73 KB
Loading
97.1 KB
Loading
107 KB
Loading
194 KB
Loading

docs/.vuepress/theme.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,8 @@ export default hopeTheme({
114114
flowchart: true,
115115
mark: true,
116116
mermaid: true,
117+
sub: true,
118+
sup: true,
117119
},
118120
components: {
119121
components: ["ArtPlayer"],

docs/guide/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ A file list program that supports multiple storage, and supports web browsing an
5656
- [x] [115](https://115.com/)
5757
- [x] [Seafile](https://www.seafile.com/)
5858
- [x] Cloudreve
59+
- [x] [Trainbit](https://trainbit.com/)
5960

6061

6162
### Discussion

docs/guide/advanced/alias.md

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
---
2+
# This is the icon of the page
3+
icon: file
4+
# This control sidebar order
5+
order: 3
6+
# A page can have multiple categories
7+
category:
8+
- Guide
9+
# A page can have multiple tags
10+
tag:
11+
- Advanced
12+
- Guide
13+
# this page is sticky in article list
14+
sticky: true
15+
# this page will appear in starred articles
16+
star: true
17+
---
18+
19+
# alias
20+
21+
What are `alias`? `alias` is a function for path merging
22+
23+
Except **`download preview (read-only)`** operations ^(copy, delete, rename, offline download, upload)^ are not allowed
24+
25+
For example: cloud disk account 1 and cloud disk account 2 both have the folder `Movies`, but the contents may not (all) overlap
26+
27+
**`Previously (virtual path)`**: can only be mounted to two different paths (cloud disk 1/movie, cloud disk 2/movie) or (movie\cloud disk 1, movie\cloud disk 2 )
28+
**`Now(alias)`**: Provide an aggregated folder (movie) which can contain the contents of cloud disk 1 and cloud disk 2 at the same time
29+
30+
31+
32+
The folder content rules when displaying are as follows
33+
1. Merge with the same name: the same files (folders) are automatically merged into one
34+
2. Priority of the same name: When accessing resources, the path file (folder) at the top (front) when filling in the path for each fixed access
35+
- If the files with the same name are merged, click **` to play, and when downloading`**, it will be called first. When filling in `Paths`, the file with the 302 mode path will be used first.
36+
37+
38+
39+
Let me explain **`same name first²`** access rules
40+
41+
Example 1. Fill in the access according to the following path(302 mode has priority)
42+
43+
```
44+
local: /localtest/local1
45+
local: /localtest/local2
46+
local: /localtest/local3
47+
local: /localtest/local4
48+
```
49+
50+
- 1, if there is a video 1 2 3 4, each visit is `1`
51+
- If 1 3 4 uses the local proxy and 2 uses `302`, call 2 first
52+
53+
- 2, a video 3 4 yes then every visit is `3`
54+
- If 3 uses a local proxy and 4 uses `302`, call 4 first
55+
56+
57+
Example 2. Fill in the access according to the following path(302 mode has priority)
58+
59+
```
60+
local: /localtest/local4
61+
local: /localtest/local3
62+
local: /localtest/local2
63+
local: /localtest/local1
64+
```
65+
66+
- 1, if a video has 1 2 3 4, each visit is `4`
67+
- If 1 3 4 uses the local proxy and 2 uses `302`, call 2 first
68+
69+
- 2, a video 3 4 has then every visit is `4`
70+
- If 4 uses a local proxy and 2 uses `302`, call 2 first
71+
72+
73+
74+
75+
### How to add
76+
77+
Go to storage add [**alias**](../drivers/alias.md)

docs/guide/advanced/ipa.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ Recommended to use [ipa-renamer](https://github.com/Xhofe/ipa-renamer) to rename
7373

7474
## 2. TrollStore install
7575

76+
==Requires AList version ≥ 3.12.2 and above==
77+
7678
Devices that support the installation of TrollStore (jailbroken devices are not explained here)
7779

7880
The device that supports the installation of TrollStore is up to the iPhone 13 series device system version not greater than `stable version 15.4.1` `beta version 15.6 beta 1 - 5`

docs/guide/advanced/offline-download.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ If you are **docker**, please map the following two default paths by yourself
4747

4848
First of all, we need to configure the default values on the client side of **`qBittorrent`**
4949

50-
According to [source code] (https://github.com/alist-org/alist/blob/main/internal/bootstrap/data/setting.go#L159), we know that the default values are admin:adminadmin@localhost:8080/
50+
According to [source code](https://github.com/alist-org/alist/blob/main/internal/bootstrap/data/setting.go#L159-L162), we know that the default values are admin:adminadmin@localhost:8080/
5151

5252
- **ip**: localhost
5353
- **port**: 8080
@@ -60,14 +60,18 @@ According to [source code] (https://github.com/alist-org/alist/blob/main/interna
6060

6161
2. Default value configuration view address:
6262

63-
- **https://github.com/alist-org/alist/blob/main/internal/bootstrap/data/setting.go#L159**
63+
- **https://github.com/alist-org/alist/blob/main/internal/bootstrap/data/setting.go#L159-L162**
6464

6565

6666
- ```{ *** Value: "http://admin:adminadmin@localhost:8080/", Type: conf.TypeString, *** } ```
6767

6868

69-
3. ==We can also customize, instead of using the default presets==
70-
- Modification location: **Alist Manage** --> **Settings** --> **Qbittorrent url** option, just follow the modification
69+
3. Use **`qBittorrent`** to offline `.torrent` type files
70+
- Although you cannot directly add offline `.torrent` type files, you can save the country with a curve Reference: [View method](https://github.com/alist-org/alist/issues/2459#issuecomment-1354870010)
71+
4. You can configure it yourself not to delete after the download is complete, but to do seeding, the default is `0`, and it will be deleted immediately after uploading
72+
- Modification location: **Alist background** --> **Settings** --> **Qbittorrent seedtime** option, set the time you need to configure, the unit is `minute`, after the set seeding time is reached, it will automatically delete
73+
5. ==We can also customize, instead of using the default presets==
74+
- Modification location: **Alist Manage** --> **Settings** --> **Qbittorrent url** option, just follow the modification
7175

7276

7377
![Offline download](/img/advanced/offline-download.png)

0 commit comments

Comments
 (0)