mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2026-03-22 06:57:16 +08:00
perf: 更新项目默认配置参数
1. 更新项目 README 2. 更新默认 UserAgent 3. 默认图片格式修改为 JPEG 4. 修正项目描述错误
This commit is contained in:
@@ -158,7 +158,7 @@ class CLI:
|
||||
"--image_format",
|
||||
"-if",
|
||||
"choice",
|
||||
_("图文作品文件下载格式,支持:PNG、WEBP"),
|
||||
_("图文作品文件下载格式,支持:PNG、WEBP、JPEG、HEIC、AUTO"),
|
||||
),
|
||||
("--live_download", "-ld", "bool", _("动态图片下载开关")),
|
||||
("--download_record", "-dr", "bool", _("作品下载记录开关")),
|
||||
@@ -279,7 +279,9 @@ class CLI:
|
||||
@option(
|
||||
"--image_format",
|
||||
"-if",
|
||||
type=Choice(["png", "PNG", "webp", "WEBP"]),
|
||||
type=Choice(
|
||||
["png", "PNG", "webp", "WEBP", "jpeg", "JPEG", "heic", "HEIC", "auto", "AUTO"]
|
||||
),
|
||||
)
|
||||
@option(
|
||||
"--live_download",
|
||||
|
||||
Reference in New Issue
Block a user