add community qr code

This commit is contained in:
wanxp 2023-06-20 10:02:12 +08:00
parent 32fa165eb8
commit ace218402c
7 changed files with 16 additions and 0 deletions

@ -136,6 +136,14 @@
7. 进入Obsidian插件中心重新加载当前插件 7. 进入Obsidian插件中心重新加载当前插件
8. 享受开发吧 8. 享受开发吧
## 交流社群
<img src="doc/img/obsidian-douban-qq-qr_code.svg" width="300px">
<img src="doc/img/obsidian-douban-discord-qr_code.svg" width="300px">
## 免责声明 ## 免责声明
1. 本程序没有爬取任何书影音等内容,只供技术研究使用。没有侵犯书影音作者版权和豆瓣官方利益。如有任何侵权行为,请联系我删除。 1. 本程序没有爬取任何书影音等内容,只供技术研究使用。没有侵犯书影音作者版权和豆瓣官方利益。如有任何侵权行为,请联系我删除。
2. 本程序仅供学习交流使用。 2. 本程序仅供学习交流使用。

@ -132,6 +132,11 @@ If you want some features or have any questions about this plugin, create issues
6. Go to your Obsidian plugin center reload this plugin 6. Go to your Obsidian plugin center reload this plugin
7. Enjoy your develop 7. Enjoy your develop
## Community
<img src="img/obsidian-douban-discord-qr_code.svg" width="300px">
<img src="img/obsidian-douban-qq-qr_code.svg" width="300px">
## Disclaimer ## Disclaimer
1. This program does not crawl any content such as books and videos, and is only for technical research purposes. It does not violate the copyright of authors of books and videos or the official interests of Douban. If there is any infringement, please contact me to delete it. 1. This program does not crawl any content such as books and videos, and is only for technical research purposes. It does not violate the copyright of authors of books and videos or the official interests of Douban. If there is any infringement, please contact me to delete it.
2. This program is for learning and communication only, and cannot be used for commercial purposes. Otherwise, the consequences will be at your own risk. 2. This program is for learning and communication only, and cannot be used for commercial purposes. Otherwise, the consequences will be at your own risk.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 356 KiB

@ -486,6 +486,7 @@ export default abstract class DoubanAbstractLoadHandler<T extends DoubanSubject>
abstract getHighQuantityImageUrl(fileName:string):string; abstract getHighQuantityImageUrl(fileName:string):string;
private async humanCheck(html:any, url:string):Promise<any> { private async humanCheck(html:any, url:string):Promise<any> {
this.doubanPlugin.settingsManager.debug(html);
if (html && html.indexOf("<title>禁止访问</title>") != -1) { if (html && html.indexOf("<title>禁止访问</title>") != -1) {
const loginModel = new DoubanHumanCheckModel(url); const loginModel = new DoubanHumanCheckModel(url);
await loginModel.load(); await loginModel.load();