mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2026-03-22 06:57:16 +08:00
feat(app): 发布 2.7 版本
This commit is contained in:
@@ -61,7 +61,7 @@ class Index(Screen):
|
||||
),
|
||||
Input(placeholder=_("多个链接之间使用空格分隔")),
|
||||
HorizontalScroll(
|
||||
Button(_("下载无水印作品文件"), id="deal"),
|
||||
Button(_("下载作品文件"), id="deal"),
|
||||
Button(_("读取剪贴板"), id="paste"),
|
||||
Button(_("清空输入框"), id="reset"),
|
||||
),
|
||||
|
||||
@@ -105,6 +105,7 @@ class Manager:
|
||||
cookies=self.cookie_str_to_dict(cookie),
|
||||
timeout=timeout,
|
||||
verify=False,
|
||||
http2=True,
|
||||
follow_redirects=True,
|
||||
mounts={
|
||||
"http://": AsyncHTTPTransport(proxy=self.proxy),
|
||||
|
||||
@@ -2,7 +2,7 @@ from pathlib import Path
|
||||
|
||||
VERSION_MAJOR = 2
|
||||
VERSION_MINOR = 7
|
||||
VERSION_BETA = True
|
||||
VERSION_BETA = False
|
||||
__VERSION__ = f"{VERSION_MAJOR}.{VERSION_MINOR}.{'beta' if VERSION_BETA else 'stable'}"
|
||||
ROOT = Path(__file__).resolve().parent.parent.parent.joinpath("Volume")
|
||||
ROOT.mkdir(exist_ok=True)
|
||||
|
||||
Reference in New Issue
Block a user