docs(README): v0.11.0

This commit is contained in:
iyear 2023-09-29 21:16:35 +08:00
parent 0d6aad0acc
commit b8e07d3925
2 changed files with 23 additions and 0 deletions

View File

@ -370,6 +370,17 @@ tdl dl -u https://t.me/tdl/1 --continue
tdl dl -u https://t.me/tdl/1 --restart
```
- (Beta) Serve the files as a HTTP server instead of downloading them with built-in downloader
> **Note**
> This is useful when you want to download files with a download manager like aria2/wget/axel/IDM/etc.
```shell
tdl dl -u https://t.me/tdl/1 --serve
# specify custom port
tdl dl -u https://t.me/tdl/1 --serve --port 8100
```
- Full example:
```shell
tdl dl --debug --ntp pool.ntp.org \

View File

@ -376,6 +376,18 @@ tdl dl -u https://t.me/tdl/1 --continue
tdl dl -u https://t.me/tdl/1 --restart
```
- (Beta) 以 HTTP 服务器的形式提供文件下载,而非使用内置下载器下载文件
> **Note**
> This is useful when you want to download files with a download manager like aria2/wget/axel/IDM/etc.
> 当你想使用下载管理器(如 aria2/wget/axel/IDM 等)下载文件时,开启此选项
```shell
tdl dl -u https://t.me/tdl/1 --serve
# 指定端口
tdl dl -u https://t.me/tdl/1 --serve --port 8100
```
- 完整例子:
```shell