-
-
Notifications
You must be signed in to change notification settings - Fork 60
Develop #127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Develop #127
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
069a6cd
:bug: 修复章节名称带方括号识别库存异常
shadlc b5b2177
🐛 修复B站二维码登入请求412异常;以及子线程单独调用QMessageBox引起的parent错误
Zeal-L 773e7ca
:sparkles: 如果配置文件json解析异常,捕获并告知,然后正常启动,而不是抛错
shadlc 49c42e0
:art: 经过测试,完善对MacOS的支持
shadlc 0bfd907
:sparkles: cbz格式多作者识别优化
shadlc 75fffee
🎨 Linter 由原来的 black 改为 ruff
Zeal-L e597d84
🐛 Update setup.sh command in workflow
Zeal-L 3d2bc2c
✨ 添加 mac 环境下 的窗口检测(多开)
Zeal-L ad26bd0
🎨 在UI中添加exif的设置选项
Zeal-L bf3f5eb
✨ 实现 exif 设置相关逻辑;更新版权信息
Zeal-L bb79372
⬆️ 更新依赖
Zeal-L 7cfe25d
🐛尽力修正标题的错误替换
spr-equinox b579894
🐛修复一个运行时错误
spr-equinox 4af7a60
Merge pull request #122 from spr-equinox/fix-title
Zeal-L 0a67afd
🎨换用更好的写法
spr-equinox c6566f6
Merge pull request #123 from spr-equinox/fix-runtime-error
Zeal-L a11b9d7
修复BiliPlus Cookie (#126)
dataacat 655c49f
⬆️ 更新依赖
Zeal-L e16dcc7
✨ 为序号功能做好前置准备
Zeal-L 0075418
Merge branch 'main' of https://github.com/Zeal-L/BiliBili-Manga-Downl…
Zeal-L File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shadlc marked this conversation as resolved.
Show resolved
Hide resolved
|
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,39 @@ | ||
[tool.poetry] | ||
name = "bilibili-manga-downloader" | ||
version = "1.5.0" | ||
description = "一个好用的哔哩哔哩漫画下载器,拥有图形界面,支持关键词搜索漫画和二维码登入,黑科技下载未解锁章节,多线程下载,多种保存格式,本地漫画管理,一键检查更新!" | ||
authors = ["Zeal-L <zeal.liang@gmail.com>"] | ||
description = "一个好用的哔哩哔哩漫画下载器,拥有图形界面,支持关键词搜索漫画和二维码登入,黑科技下载未解锁章节,多线程下载,多种保存格式,本地漫画管理,一键检查更新!" | ||
license = "AGPL-3.0" | ||
name = "bilibili-manga-downloader" | ||
readme = "README.md" | ||
version = "1.5.1" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.12,<3.13" | ||
beautifulsoup4 = "^4.12.3" | ||
piexif = "^1.1.3" | ||
pillow = "10.2.0" | ||
py7zr = "^0.20.8" | ||
pypdf2 = "^3.0.1" | ||
pyside6 = "^6.6.0" | ||
requests = "^2.31.0" | ||
retrying = "^1.3.4" | ||
pillow = "^10.1.0" | ||
pypdf = "^4.0.2" | ||
pypinyin = "^0.49.0" | ||
qt-material = "^2.14" | ||
beautifulsoup4 = "^4.12.2" | ||
pyside6 = "^6.6.2" | ||
python = ">=3.12,<3.13" | ||
qrcode = "^7.4.2" | ||
qt-material = "^2.14" | ||
requests = "^2.31.0" | ||
retrying = "^1.3.4" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
auto-py-to-exe = "^2.42.0" | ||
pyinstaller = "^6.4.0" | ||
rich = "^13.7.0" | ||
ruff = "^0.2.2" | ||
|
||
[[tool.poetry.source]] | ||
name = "mirrors" | ||
url = "https://pypi.tuna.tsinghua.edu.cn/simple/" | ||
priority = "supplemental" | ||
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
rich = "^13.7.0" | ||
pylint = "^3.0.2" | ||
pyinstaller = "^6.2.0" | ||
auto-py-to-exe = "^2.42.0" | ||
url = "https://pypi.tuna.tsinghua.edu.cn/simple/" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
requires = ["poetry-core"] | ||
|
||
[tool.black] | ||
line-length = 100 | ||
[tool.ruff] | ||
line-length = 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.