Skip to content

Commit 9201fab

Browse files
committed
更新文档
1 parent 3924c71 commit 9201fab

File tree

3 files changed

+47
-6
lines changed

3 files changed

+47
-6
lines changed

doc/doc/install/main.md

Lines changed: 42 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
1+
<script setup>
2+
import { version } from '../../package.json'
3+
4+
let release_asset = `Bili23_Downloader_v${version}_release.tar.gz`
5+
</script>
6+
17
# 安装程序
28
## 下载发行版
39
用户可前往[GitHub Release](https://github.com/ScottSloan/Bili23-Downloader/releases/)页面查看历史版本。
410
也可以在下方列表中根据需要选择下载。
511

612
| 文件名 | 平台架构 | 下载地址 | 备注 |
713
| -- | -- | -- | -- |
8-
| Bili23_Downloader_v1.55_release.zip | 通用 | - | 源码版 |
14+
| {{ release_asset }} | 通用 | - | 源码版 |
915
| Bili23-Downloader-1.55.0-win-amd64.zip | Windows x64 | <a href="https://github.com/ScottSloan/Bili23-Downloader/releases/tag/v1.55.0" target="_blank" rel="noreferer">GitHub</a> <br> <a href="https://wwx.lanzout.com/iJNAV2m5jdna" target="_blank" rel="noreferer">蓝奏云</a> | 编译版,附带 FFmpeg |
10-
| Bili23-Downloader_v1.55_win_x64.zip | Windows x64 | - | 编译版,不附带 FFmpeg |
16+
| Bili23-Downloader_v1.55.0_win_x64.zip | Windows x64 | - | 编译版,不附带 FFmpeg |
1117

1218
文件 SHA1 值校验
1319
| 文件名 | SHA1 |
@@ -20,8 +26,38 @@
2026
本程序完全开源免费,若是从其他渠道付费获取的,无法保证其安全性和完整性。
2127
:::
2228

29+
### 如何选择下载版本
30+
+ 未安装 Python 环境
31+
+ Windows
32+
-> 编译版,建议选择附带 FFmpeg 的版本
33+
+ Linux & macOS
34+
-> 源码版
35+
36+
+ 已安装 Python 环境
37+
-> 源码版
38+
39+
### 如何校验 SHA1
40+
根据系统运行下方的命令:
41+
#### Windows
42+
```bash
43+
certutil -hashfile <file> SHA1
44+
```
45+
46+
#### Linux
47+
```bash
48+
sha1sum <file>
49+
```
50+
51+
#### macOS
52+
```bash
53+
shasum -a 1 <file>
54+
```
55+
2356
## 源码版使用
2457
### 安装 Python 环境
58+
Python 版本需要为 3.10 及以上。
59+
60+
::: details 如果还未安装 Python 环境,点击查看安装方式
2561
[Python官网](https://www.python.org/)下载系统对应的 Python,建议使用 3.11 及以上版本,最低支持 3.10 版本。
2662

2763
若下载速度缓慢,建议使用国内[华为云镜像源](https://mirrors.huaweicloud.com/python/)下载。
@@ -34,15 +70,16 @@
3470
```bash
3571
pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
3672
```
73+
:::
3774

3875
### 克隆仓库
39-
若已安装 git,执行以下命令克隆仓库即可
76+
若已安装 git,执行以下命令克隆仓库
4077
```bash
4178
git clone https://github.com/ScottSloan/Bili23-Downloader.git
4279
cd Bili23-Downloader
4380
```
4481

45-
若系统未安装 git,请下载 tar.gz 格式源码并解压,进入到 requirements.txt 同一级目录。
82+
若系统未安装 git,请下载上方 tar.gz 格式源码并解压,进入到 requirements.txt 同一级目录。
4683

4784
### 安装依赖
4885
执行下面的命令一键安装所需依赖:
@@ -60,7 +97,7 @@ pip install -r requirements.txt
6097

6198
用户也可以手动安装:
6299
```bash
63-
pip install wxPython qrcode[pil]==7.4.2 requests
100+
pip install wxPython>=4.2.0 qrcode[pil]==7.4.2 requests>=2.30.0
64101
```
65102

66103
### 运行程序

doc/doc/license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 开源许可
22
本项目在 MIT License 许可协议下进行发布
33

4-
wbi 签名以及部分接口参考 [SocialSisterYi/bilibili-API-collect](https://github.com/SocialSisterYi/bilibili-API-collect)
4+
wbi 签名以及部分接口参考 [SocialSisterYi/bilibili-API-collect](https://github.com/SocialSisterYi/bilibili-API-collect)
55
编译版提供的 FFmpeg 来源于 [gyan.dev](https://www.gyan.dev/ffmpeg/builds/)

doc/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
{
2+
"name": "bili23_downloader_docs",
3+
"version": "1.55.0",
24
"scripts": {
35
"docs:dev": "vitepress dev",
46
"docs:build": "vitepress build",
57
"docs:preview": "vitepress preview"
68
},
9+
"author": "Scott Sloan",
10+
"license": "MIT",
711
"dependencies": {
812
"vitepress": "^1.6.3",
913
"vue": "^3.5.13"

0 commit comments

Comments
 (0)