url
stringlengths 51
54
| repository_url
stringclasses 1
value | labels_url
stringlengths 65
68
| comments_url
stringlengths 60
63
| events_url
stringlengths 58
61
| html_url
stringlengths 39
44
| id
int64 447M
1.71B
| node_id
stringlengths 18
32
| number
int64 1
3.09k
| title
stringlengths 1
194
| user
dict | labels
list | state
stringclasses 2
values | locked
bool 2
classes | assignee
dict | assignees
list | milestone
dict | comments
sequence | created_at
timestamp[s] | updated_at
timestamp[s] | closed_at
timestamp[s] | author_association
stringclasses 4
values | active_lock_reason
stringclasses 3
values | body
stringlengths 0
41.8k
⌀ | reactions
dict | timeline_url
stringlengths 60
63
| performed_via_github_app
null | state_reason
stringclasses 2
values | draft
bool 2
classes | pull_request
dict | is_pull_request
bool 2
classes |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
https://api.github.com/repos/gedoor/legado/issues/2977 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2977/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2977/comments | https://api.github.com/repos/gedoor/legado/issues/2977/events | https://github.com/gedoor/legado/issues/2977 | 1,666,709,857 | I_kwDOCzQSM85jV_lh | 2,977 | 远程书籍放入书架报错 | {
"login": "kokpk",
"id": 37227634,
"node_id": "MDQ6VXNlcjM3MjI3NjM0",
"avatar_url": "https://avatars.githubusercontent.com/u/37227634?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/kokpk",
"html_url": "https://github.com/kokpk",
"followers_url": "https://api.github.com/users/kokpk/followers",
"following_url": "https://api.github.com/users/kokpk/following{/other_user}",
"gists_url": "https://api.github.com/users/kokpk/gists{/gist_id}",
"starred_url": "https://api.github.com/users/kokpk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/kokpk/subscriptions",
"organizations_url": "https://api.github.com/users/kokpk/orgs",
"repos_url": "https://api.github.com/users/kokpk/repos",
"events_url": "https://api.github.com/users/kokpk/events{/privacy}",
"received_events_url": "https://api.github.com/users/kokpk/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"大概知道了原因,都看到书籍了以为WebDav肯定是配置正常的。但为什么报错日志导入依然是以http的形式+80端口去访问呢。我明明配置的https+自定义端口的啊。。",
"你用的什么webdav",
"> 你用的什么webdav\r\n\r\n是hectorqin/reader自带的webdav。我看了下好像是Nginx反向代理代理的的问题。但我是按照作者的官方文档写的。\r\nproxy_set_header Host $host;改成proxy_set_header Host $http_host可以以自定义端口去请求。但还是以http去请求的。\r\n如果加上作者的if ($server_port !~ 445){\r\n rewrite ^(/.*)$ https://$host$1 permanent;\r\n }\r\n error_page 497 https://$host$request_uri; 强制https又会以默认的443端口去请求。求大佬指导。445是我Nginx内开的这个容器端口。我是公网域名+自定义端口转发到Nginx容器内445端口反代到reader容器的本地端口4396的。",
"我目前的Nginx是这样的:\r\nserver {\r\n server_name localhost;\r\n #开启ssl解除注释\r\n listen 445 ssl;\r\n ssl_certificate /etc/nginx/conf.d/证书crt;\r\n ssl_certificate_key /etc/nginx/conf.d/证书.key;\r\n ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;\r\n ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;\r\n ssl_prefer_server_ciphers on;\r\n ssl_session_cache shared:SSL:10m;\r\n\r\n gzip on; #开启gzip压缩\r\n gzip_min_length 1k; #设置对数据启用压缩的最少字节数\r\n gzip_buffers 4 16k;\r\n gzip_http_version 1.0;\r\n gzip_comp_level 6; #设置数据的压缩等级,等级为1-9,压缩比从小到大\r\n gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml; #设置需要压缩的数据格式\r\n gzip_vary on;\r\n\r\n client_max_body_size 50m; #允许上传50MB文件,上传本地书籍需要修改此项大小.如nginx主配置文件已添加,删除此行并修改主配置即可\r\n\r\n location / {\r\n proxy_pass http://192.168.2.217:4396; #端口自行修改为映射端口\r\n proxy_http_version 1.1;\r\n proxy_cache_bypass $http_upgrade;\r\n proxy_set_header Upgrade $http_upgrade;\r\n proxy_set_header Connection \"upgrade\";\r\n proxy_set_header Host $http_host;\r\n proxy_set_header X-Real-IP $remote_addr;\r\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\r\n proxy_set_header X-Forwarded-Proto :https;\r\n proxy_set_header X-Forwarded-Host $host;\r\n proxy_set_header X-Forwarded-Port $server_port;\r\n }\r\n}",
"目前改成这样就是自定义端口是对了但始终是以http去请求的。所以报400 Bad Request错误如果改成官方一样的\r\n有if ($server_port !~ 445){\r\nrewrite ^(/.*)$ https://$host$1 permanent;\r\n}\r\nerror_page 497 https://$host$request_uri\r\nproxy_set_header Host $host;这样的就会报导入错误连接超时会以https去请求但端口始终是443",
"你重定向到https的时候指定一下端口",
"> 你重定向到https的时候指定一下端口\r\n\r\n请问这个咋写啊?我是小白~",
"你试试这个:\r\nerror_page 497 https://$http_host$request_uri",
"> 你试试这个: error_page 497 https://$http_host$request_uri\r\n\r\n改成这样就变成以80端口去请求了。显示连接超时。",
"server {\r\n server_name localhost;\r\n #开启ssl解除注释\r\n listen 445 ssl;\r\n ssl_certificate /etc/nginx/conf.d/证书.crt;\r\n ssl_certificate_key /etc/nginx/conf.d/证书.key;\r\n ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;\r\n ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;\r\n ssl_prefer_server_ciphers on;\r\n ssl_session_cache shared:SSL:10m;\r\n if ($server_port !~ 445){\r\n rewrite ^(/.*)$ https://$host$1 permanent;\r\n }\r\n error_page 497 https://$http_host$request_uri;\r\n\r\n gzip on; #开启gzip压缩\r\n gzip_min_length 1k; #设置对数据启用压缩的最少字节数\r\n gzip_buffers 4 16k;\r\n gzip_http_version 1.0;\r\n gzip_comp_level 6; #设置数据的压缩等级,等级为1-9,压缩比从小到大\r\n gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml; #设置需要压缩的数据格式\r\n gzip_vary on;\r\n\r\n client_max_body_size 50m; #允许上传50MB文件,上传本地书籍需要修改此项大小.如nginx主配置文件已添加,删除此行并修改主配置即可\r\n\r\n location / {\r\n proxy_pass http://192.168.2.217:4396; #端口自行修改为映射端口\r\n proxy_http_version 1.1;\r\n proxy_cache_bypass $http_upgrade;\r\n proxy_set_header Upgrade $http_upgrade;\r\n proxy_set_header Connection \"upgrade\";\r\n proxy_set_header Host $host;\r\n proxy_set_header X-Real-IP $remote_addr;\r\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\r\n proxy_set_header X-Forwarded-Proto :https;\r\n proxy_set_header X-Forwarded-Host $host;\r\n proxy_set_header X-Forwarded-Port $server_port;\r\n }\r\n}",
"你现在不是端口对,但却是http吗?",
"> 你现在不是端口对,但却是http吗?\r\n\r\n端口对但却是http话要改成这样:\r\nserver {\r\n server_name localhost;\r\n #开启ssl解除注释\r\n listen 445 ssl;\r\n ssl_certificate /etc/nginx/conf.d/证书.crt;\r\n ssl_certificate_key /etc/nginx/conf.d/证书.key;\r\n ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;\r\n ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;\r\n ssl_prefer_server_ciphers on;\r\n ssl_session_cache shared:SSL:10m;\r\n\r\n gzip on; #开启gzip压缩\r\n gzip_min_length 1k; #设置对数据启用压缩的最少字节数\r\n gzip_buffers 4 16k;\r\n gzip_http_version 1.0;\r\n gzip_comp_level 6; #设置数据的压缩等级,等级为1-9,压缩比从小到大\r\n gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml; #设置需要压缩的数据格式\r\n gzip_vary on;\r\n\r\n client_max_body_size 50m; #允许上传50MB文件,上传本地书籍需要修改此项大小.如nginx主配置文件已添加,删除此行并修改主配置即可\r\n\r\n location / {\r\n proxy_pass http://192.168.2.217:4396; #端口自行修改为映射端口\r\n proxy_http_version 1.1;\r\n proxy_cache_bypass $http_upgrade;\r\n proxy_set_header Upgrade $http_upgrade;\r\n proxy_set_header Connection \"upgrade\";\r\n proxy_set_header Host $http_host;\r\n proxy_set_header X-Real-IP $remote_addr;\r\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\r\n proxy_set_header X-Forwarded-Proto :https;\r\n proxy_set_header X-Forwarded-Host $host;\r\n proxy_set_header X-Forwarded-Port $server_port;\r\n }\r\n}\r\n",
"在这个里面加入你说的error_page 497 https://$http_host$request_uri这句话容器就报错起不来了。",
"你再把我这句加上去不行吗",
"你在哪加的",
"server {\r\n server_name localhost;\r\n #开启ssl解除注释\r\n listen 445 ssl;\r\n ssl_certificate /etc/nginx/conf.d/证书.crt;\r\n ssl_certificate_key /etc/nginx/conf.d/证书.key;\r\n ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;\r\n ssl_ciphers EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;\r\n ssl_prefer_server_ciphers on;\r\n ssl_session_cache shared:SSL:10m;\r\n error_page 497 https://$http_host$request_uri #加这里的。\r\n\r\n gzip on; #开启gzip压缩\r\n gzip_min_length 1k; #设置对数据启用压缩的最少字节数\r\n gzip_buffers 4 16k;\r\n gzip_http_version 1.0;\r\n gzip_comp_level 6; #设置数据的压缩等级,等级为1-9,压缩比从小到大\r\n gzip_types text/plain text/css text/javascript application/json application/javascript application/x-javascript application/xml; #设置需要压缩的数据格式\r\n gzip_vary on;\r\n\r\n client_max_body_size 50m; #允许上传50MB文件,上传本地书籍需要修改此项大小.如nginx主配置文件已添加,删除此行并修改主配置即可\r\n\r\n location / {\r\n proxy_pass http://192.168.2.217:4396; #端口自行修改为映射端口\r\n proxy_http_version 1.1;\r\n proxy_cache_bypass $http_upgrade;\r\n proxy_set_header Upgrade $http_upgrade;\r\n proxy_set_header Connection \"upgrade\";\r\n proxy_set_header Host $http_host;\r\n proxy_set_header X-Real-IP $remote_addr;\r\n proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\r\n proxy_set_header X-Forwarded-Proto :https;\r\n proxy_set_header X-Forwarded-Host $host;\r\n proxy_set_header X-Forwarded-Port $server_port;\r\n }\r\n}\r\n",
"那个rewrite也加上去,把host改成http_host",
"\r\n\r\n\r\n> 那个rewrite也加上去,把host改成http_host\r\n\r\n大佬直接加error_page 497 https://$http_host$request_uri 这句就好了。。非常感谢我刚才看了下我是 ; 掉了。。"
] | 2023-04-13T16:04:23 | 2023-04-17T12:00:27 | 2023-04-17T12:00:27 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
远程书籍选择书籍点放入书架提示导入出错。日志显示404:Not Found
### 复现步骤 / How to reproduce
日志:
导入出错
WebDav地址/书籍名称.txt
404:Not Found
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.040420
### Android版本 / Android version
Android13
### 机型 / Model
小米13 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2977/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2977/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2976 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2976/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2976/comments | https://api.github.com/repos/gedoor/legado/issues/2976/events | https://github.com/gedoor/legado/issues/2976 | 1,665,981,099 | I_kwDOCzQSM85jTNqr | 2,976 | 小说源真实更新章节后,APP无法拉取到新章节!!有录屏,请大神下载录屏,观看分析问题。 | {
"login": "zhangweildlh",
"id": 62597291,
"node_id": "MDQ6VXNlcjYyNTk3Mjkx",
"avatar_url": "https://avatars.githubusercontent.com/u/62597291?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zhangweildlh",
"html_url": "https://github.com/zhangweildlh",
"followers_url": "https://api.github.com/users/zhangweildlh/followers",
"following_url": "https://api.github.com/users/zhangweildlh/following{/other_user}",
"gists_url": "https://api.github.com/users/zhangweildlh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zhangweildlh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zhangweildlh/subscriptions",
"organizations_url": "https://api.github.com/users/zhangweildlh/orgs",
"repos_url": "https://api.github.com/users/zhangweildlh/repos",
"events_url": "https://api.github.com/users/zhangweildlh/events{/privacy}",
"received_events_url": "https://api.github.com/users/zhangweildlh/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"此问题不只是这一本小说,也不是只有这一个小说源\r\n是很多本小说,几个小说源都存在问题",
"这是书源的问题,不会修复的话就换源凑合着用,或者不用这些源",
"重新搜索书籍/重新获取目录url\r\n可以在刷新目录之前使用,有些书源书籍地址和目录url会变\r\n```\r\njava.reGetBook()\r\njava.refreshTocUrl()\r\n```",
"> 重新搜索书籍/重新获取目录url 可以在刷新目录之前使用,有些书源书籍地址和目录url会变\r\n> \r\n> ```\r\n> java.reGetBook()\r\n> java.refreshTocUrl()\r\n> ```\r\n\r\n我觉得您说得是正解。应该不是书源有问题,因为这些书源是可以搜索到书籍,换源到其他,然后换回来后,就可以看到新章节了。应该就是您说的,目录url变了。\r\n请问能从APP层面解决吗"
] | 2023-04-13T08:40:50 | 2023-04-14T01:30:21 | 2023-04-13T23:23:05 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
前段时间有反映:小说源更新章节了,但APP拉取不到新的章节。必须更换其他小说源,然后再次更换回此小说源;APP才能够拉取到新的章节。
作者有回应:怀疑小说源为“伪更新”
本次我录制了视频。小说源是真实更新的。不是伪更新!
**************************************************
【例子】背景
小说名:灵境行者
小说源:读书阁网1
最新章节:第三百六十七章 帮派成员团聚
No 367
### 复现步骤 / How to reproduce
【例子】问题
一、小说源:【读书阁网1】
1、在书架界面,下拉刷新;显示最新章节为第三百六十六 无痕大师的遗产 (No 366)
2、进入阅读界面,点出菜单,选择“更新目录”;依然显示最新章节是No 366
3、阅读界面,进行换源操作;可以看到【读书阁网1】显示最新章节是No 367,此时不换源,直接刷新,依然看不到这个新章节
4、接着第3步的操作,随便换一个其他小说源(哪怕这个小说源的章节只有100章);退出阅读界面,再次进入阅读界面,再次换源,换回【读书阁网1】;此时,能够看到新章节No 367!!!能够阅读此章节了!!!
录制的视频,下载地址:坚果云 [https://www.jianguoyun.com/p/DU7fM74Q5eC5CxjA3YIFIAA](url)
坚果云 https://www.jianguoyun.com/p/DU7fM74Q5eC5CxjA3YIFIAA
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.032923
### Android版本 / Android version
Android 10
### 机型 / Model
CC9e | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2976/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2976/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2975 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2975/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2975/comments | https://api.github.com/repos/gedoor/legado/issues/2975/events | https://github.com/gedoor/legado/issues/2975 | 1,665,074,736 | I_kwDOCzQSM85jPwYw | 2,975 | 滑动翻页朗读时,几个很反人类的体验 | {
"login": "xlggit",
"id": 96988153,
"node_id": "U_kgDOBcfr-Q",
"avatar_url": "https://avatars.githubusercontent.com/u/96988153?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/xlggit",
"html_url": "https://github.com/xlggit",
"followers_url": "https://api.github.com/users/xlggit/followers",
"following_url": "https://api.github.com/users/xlggit/following{/other_user}",
"gists_url": "https://api.github.com/users/xlggit/gists{/gist_id}",
"starred_url": "https://api.github.com/users/xlggit/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/xlggit/subscriptions",
"organizations_url": "https://api.github.com/users/xlggit/orgs",
"repos_url": "https://api.github.com/users/xlggit/repos",
"events_url": "https://api.github.com/users/xlggit/events{/privacy}",
"received_events_url": "https://api.github.com/users/xlggit/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | open | false | null | [] | null | [] | 2023-04-12T18:50:56 | 2023-04-12T18:55:47 | null | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
1,朗读本段时,因为本段通常不在屏幕的居中位置,比如在靠近底部的地方,用户此时会向上滑动屏幕,让眼睛不至于俯视那么累。
但是,当本段朗读完,开始读下一段时,页面居然会返回到滑动屏幕之前的位置,让眼睛继续俯视,主打一个累,惊吓。
就不能让朗读和翻页两个功能分离吗
2滚动翻页朗读时,不能点击某段落,就朗读某段落吗,看小说软件我老是长按复制文本有什么用,摘抄吗,我知道这个复制功能能关闭。
我就是想,点哪里,就能听哪里
3滚动翻页时,滑动屏幕的动画太生硬了,像掉帧一样,能不能优化一下,做到像pdf一样丝滑跟手
4能不能添加个功能,读到哪段,就让哪段自动处于屏幕中间,也省的来回滑动屏幕,手动让朗读段居中了
5滑动翻页时,语音朗读明显是按照默认翻页分段的,经常会出现,一段话,前半段是红色表示正在朗读,后半段是黑色,意思是下一段。可这明明就是一段话啊。
切换成默认翻页一看,哦,这前后半段不在一页上。
可是在滑动翻页下,红半段,黑半段,看着就很难受
能否在滑动翻页时,将书文字重排,排成无缝连接的一整页,让一段话别分两段了
### 期望实现方式 / How to implement
滑动翻页时,整本书文字重排,弄成真一页,像一卷卫生纸一样,一个pdf一样。
朗读某段时,某段自动居中,这个功能宜设置成用户可自行关闭
朗读下一段时,不改变已滑动屏幕的位置,即使甚至是,被朗读段已滑出屏幕外了
### 附加信息 / Additions
我是阅读的老用户了,在b站上还打过call,滑动翻页是我最喜欢的翻页方式,这些体验不好的功能,我原本想更新不易,后来作者肯定会逐步优化,但现在感觉作者没有意识到这样体验不好的地方,也没人提。
还是要感谢作者,这是个好软件,群策群力,吃水不忘挖井人
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2975/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2975/timeline | null | null | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2973 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2973/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2973/comments | https://api.github.com/repos/gedoor/legado/issues/2973/events | https://github.com/gedoor/legado/issues/2973 | 1,663,789,685 | I_kwDOCzQSM85jK2p1 | 2,973 | 能否添加判断章节是否为空的功能 | {
"login": "dxh8286239",
"id": 10695558,
"node_id": "MDQ6VXNlcjEwNjk1NTU4",
"avatar_url": "https://avatars.githubusercontent.com/u/10695558?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dxh8286239",
"html_url": "https://github.com/dxh8286239",
"followers_url": "https://api.github.com/users/dxh8286239/followers",
"following_url": "https://api.github.com/users/dxh8286239/following{/other_user}",
"gists_url": "https://api.github.com/users/dxh8286239/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dxh8286239/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dxh8286239/subscriptions",
"organizations_url": "https://api.github.com/users/dxh8286239/orgs",
"repos_url": "https://api.github.com/users/dxh8286239/repos",
"events_url": "https://api.github.com/users/dxh8286239/events{/privacy}",
"received_events_url": "https://api.github.com/users/dxh8286239/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | open | false | null | [] | null | [
"我也觉得这功能不错,换源显示响应时间和字数。但是UI不知道应该怎么样",
"很多时候,伪更新不是内容为空,而是有1.5~2页的内容,然后(正在手打中... ...)",
"很多小说网的章节都是显示“正在手打中,请稍后”,很烦人\r\n\r\n能不能正则表达式新增一个功能:章节包含以下内容,则删除该章节,不在目录中显示",
"<img width = 360 height = 640 src = https://user-images.githubusercontent.com/22561041/233816310-bb8b0d13-2fad-42fe-b11e-8b790243a756.png>\r\n尝试性的做了下, UI是这样的",
"> <img width = 360 height = 640 src = https://user-images.githubusercontent.com/22561041/233816310-bb8b0d13-2fad-42fe-b11e-8b790243a756.png>\n> 尝试性的做了下, UI是这样的\n\n是否可以加个功能,在章节字数少于x字的情况下,不显示这个章节?x是自定义的字数。因为在更新的头几天,很多章节都只有前面的几十字。",
"> > <img alt=\"\" width=\"360\" height=\"640\" src=\"https://user-images.githubusercontent.com/22561041/233816310-bb8b0d13-2fad-42fe-b11e-8b790243a756.png\">\r\n> > 尝试性的做了下, UI是这样的\r\n> \r\n> 是否可以加个功能,在章节字数少于x字的情况下,不显示这个章节?x是自定义的字数。因为在更新的头几天,很多章节都只有前面的几十字。\r\n\r\n好主意,但是我不知道UI应该怎么样,不然你给一个示意图",
"> > > <img alt=\"\" width=\"360\" height=\"640\" src=\"https://user-images.githubusercontent.com/22561041/233816310-bb8b0d13-2fad-42fe-b11e-8b790243a756.png\">\r\n> > > 尝试性的做了下, UI是这样的\r\n> > \r\n> > \r\n> > 是否可以加个功能,在章节字数少于x字的情况下,不显示这个章节?x是自定义的字数。因为在更新的头几天,很多章节都只有前面的几十字。\r\n> \r\n> 好主意,但是我不知道UI应该怎么样,不然你给一个示意图\r\n\r\n个人觉得这个UI可以的。简单明了的表示出新章节总字数。很容易就判断是否为“伪更新”。谢谢作者大神了!",
"我先把显示字数的PR https://github.com/gedoor/legado/pull/3063 加了,免得拖太久。\r\n\r\n后面的按照字数过滤和排序,我添加了[project](https://github.com/h11128/legado/projects/2#card-89118368),有时间就可以做。UI我有个大概的想法,但是还是想看看有没有更好的 @tangshg "
] | 2023-04-12T05:08:31 | 2023-05-07T23:04:02 | null | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
小说的章节好多都是空章节,换源很难找到有内容的站点,需要一个一个点开尝试,太过浪费时间
### 期望实现方式 / How to implement
能否通过判断网页文本大小的方法,删除空白章节的源
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2973/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2973/timeline | null | null | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2971 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2971/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2971/comments | https://api.github.com/repos/gedoor/legado/issues/2971/events | https://github.com/gedoor/legado/pull/2971 | 1,663,480,210 | PR_kwDOCzQSM85OE5h- | 2,971 | 修复从书籍详情目录页进入指定章节时自动跳转到同步章节 | {
"login": "h11128",
"id": 22561041,
"node_id": "MDQ6VXNlcjIyNTYxMDQx",
"avatar_url": "https://avatars.githubusercontent.com/u/22561041?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/h11128",
"html_url": "https://github.com/h11128",
"followers_url": "https://api.github.com/users/h11128/followers",
"following_url": "https://api.github.com/users/h11128/following{/other_user}",
"gists_url": "https://api.github.com/users/h11128/gists{/gist_id}",
"starred_url": "https://api.github.com/users/h11128/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/h11128/subscriptions",
"organizations_url": "https://api.github.com/users/h11128/orgs",
"repos_url": "https://api.github.com/users/h11128/repos",
"events_url": "https://api.github.com/users/h11128/events{/privacy}",
"received_events_url": "https://api.github.com/users/h11128/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-04-12T01:10:02 | 2023-04-12T06:04:50 | 2023-04-12T06:04:49 | CONTRIBUTOR | null | 从目录页进入不同章节时,不应该自动同步
bug:
https://user-images.githubusercontent.com/22561041/231321195-77d7c29d-121b-42a4-a15d-6e631787a421.mp4
fix:
https://user-images.githubusercontent.com/22561041/231321216-6ab7dddb-0079-49b6-80bd-667e14bdd3a3.mp4
| {
"url": "https://api.github.com/repos/gedoor/legado/issues/2971/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2971/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2971",
"html_url": "https://github.com/gedoor/legado/pull/2971",
"diff_url": "https://github.com/gedoor/legado/pull/2971.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2971.patch",
"merged_at": "2023-04-12T06:04:49"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2968 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2968/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2968/comments | https://api.github.com/repos/gedoor/legado/issues/2968/events | https://github.com/gedoor/legado/pull/2968 | 1,661,692,871 | PR_kwDOCzQSM85N-4IT | 2,968 | 优化搜索历史显示 | {
"login": "h11128",
"id": 22561041,
"node_id": "MDQ6VXNlcjIyNTYxMDQx",
"avatar_url": "https://avatars.githubusercontent.com/u/22561041?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/h11128",
"html_url": "https://github.com/h11128",
"followers_url": "https://api.github.com/users/h11128/followers",
"following_url": "https://api.github.com/users/h11128/following{/other_user}",
"gists_url": "https://api.github.com/users/h11128/gists{/gist_id}",
"starred_url": "https://api.github.com/users/h11128/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/h11128/subscriptions",
"organizations_url": "https://api.github.com/users/h11128/orgs",
"repos_url": "https://api.github.com/users/h11128/repos",
"events_url": "https://api.github.com/users/h11128/events{/privacy}",
"received_events_url": "https://api.github.com/users/h11128/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-04-11T03:01:20 | 2023-04-11T04:32:17 | 2023-04-11T04:32:17 | CONTRIBUTOR | null | 只有正在搜索或者已经有搜索历史的时候,不显示搜索提示,其他条件默认显示搜索提示。
当前
https://user-images.githubusercontent.com/22561041/231044872-1845665e-eed0-46d9-823f-efc7188cd119.mp4
改动后
https://user-images.githubusercontent.com/22561041/231044936-1e0dff2a-3b8c-412d-8d4e-e9acaf34d005.mp4
| {
"url": "https://api.github.com/repos/gedoor/legado/issues/2968/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2968/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2968",
"html_url": "https://github.com/gedoor/legado/pull/2968",
"diff_url": "https://github.com/gedoor/legado/pull/2968.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2968.patch",
"merged_at": "2023-04-11T04:32:17"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2967 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2967/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2967/comments | https://api.github.com/repos/gedoor/legado/issues/2967/events | https://github.com/gedoor/legado/issues/2967 | 1,661,125,765 | I_kwDOCzQSM85jAsSF | 2,967 | Webdav对于非ssl地址支持 | {
"login": "Easedge",
"id": 9009588,
"node_id": "MDQ6VXNlcjkwMDk1ODg=",
"avatar_url": "https://avatars.githubusercontent.com/u/9009588?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Easedge",
"html_url": "https://github.com/Easedge",
"followers_url": "https://api.github.com/users/Easedge/followers",
"following_url": "https://api.github.com/users/Easedge/following{/other_user}",
"gists_url": "https://api.github.com/users/Easedge/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Easedge/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Easedge/subscriptions",
"organizations_url": "https://api.github.com/users/Easedge/orgs",
"repos_url": "https://api.github.com/users/Easedge/repos",
"events_url": "https://api.github.com/users/Easedge/events{/privacy}",
"received_events_url": "https://api.github.com/users/Easedge/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"本来就是不验证证书的",
"> 本来就是不验证证书的\n\n原来是这样子,那您对于这种同步失败的原因有没有什么经验,非常感谢",
"发下日志",
"> 发下日志\n\n日志显示错误代码:401 unauthorized ",
"用户名或密码错误",
"> 用户名或密码错误\n\n我又严谨的尝试了几次,发现还是错误代码401,而我的其他软件在ios上使用webdav服务是可以正常同步的",
"> > 用户名或密码错误\n> \n> 我又严谨的尝试了几次,发现还是错误代码401,而我的其他软件在ios上使用webdav服务是可以正常同步的\n\n排除了网络因素,排除了我部署的服务不能正常使用的因素,排除了中英文输入法的因素排除了是否需要在地址后面加80端口的因素",
"有没有用nginx之类的软件做反向代理?",
"> 有没有用nginx之类的软件做反向代理?\n\n无,webdav是直接运行的docker镜像,映射到局域网80端口",
"你用其他的webdav客户端(不是浏览器)可以使用吗?",
"> 你用其他的webdav客户端(不是浏览器)可以使用吗?\n\n我在iOS端使用笔记软件通过webdav同步,是可以正常使用的",
"那这个webdav是用什么搭建的",
"> 那这个webdav是用什么搭建的\n\n使用docker镜像搭建的局域网端口映射,镜像仓库是dockerhub的bytemark/webdav\n\n🔗https://hub.docker.com/r/bytemark/webdav\n",
"阅读只支持Basic Authentication,你的AUTH_TYPE应该是设置了Digest所以导致一直401",
"> 阅读只支持Basic Authentication,你的AUTH_TYPE应该是设置了Digest所以导致一直401\n\n非常感谢,我需要调整docker镜像里面的哪些参数还是需要换一个webdav镜像",
"AUTH_TYPE改成Basic应该就可以了",
"> AUTH_TYPE改成Basic应该就可以了\n\n好的,谢谢,那我close了"
] | 2023-04-10T17:52:48 | 2023-04-12T04:01:16 | 2023-04-12T04:01:16 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
本地自建webdav服务端一般没有ssl的证书验证支持,因为目前非ssl会同步出错,所以提出这个请求
### 期望实现方式 / How to implement
希望能够添加一个区别的选项(例如untrust验证选项)来支持自建的webdav的连接
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2967/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2967/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2966 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2966/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2966/comments | https://api.github.com/repos/gedoor/legado/issues/2966/events | https://github.com/gedoor/legado/issues/2966 | 1,660,782,958 | I_kwDOCzQSM85i_Ylu | 2,966 | 无法正常导入txt文件!当文件名以 # 开头 | {
"login": "jamesfu1978",
"id": 46924239,
"node_id": "MDQ6VXNlcjQ2OTI0MjM5",
"avatar_url": "https://avatars.githubusercontent.com/u/46924239?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jamesfu1978",
"html_url": "https://github.com/jamesfu1978",
"followers_url": "https://api.github.com/users/jamesfu1978/followers",
"following_url": "https://api.github.com/users/jamesfu1978/following{/other_user}",
"gists_url": "https://api.github.com/users/jamesfu1978/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jamesfu1978/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jamesfu1978/subscriptions",
"organizations_url": "https://api.github.com/users/jamesfu1978/orgs",
"repos_url": "https://api.github.com/users/jamesfu1978/repos",
"events_url": "https://api.github.com/users/jamesfu1978/events{/privacy}",
"received_events_url": "https://api.github.com/users/jamesfu1978/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"书架右上角三点日志,点一下LoadTocError那条",
"java.io.FileNotFoundException: /storage/emulated/0/Download/txt (Is a directory)\r\n\tat java.io.FileInputStream.open0(Native Method)\r\n\tat java.io.FileInputStream.open(FileInputStream.java:200)\r\n\tat java.io.FileInputStream.<init>(FileInputStream.java:150)\r\n\tat io.legado.app.model.localBook.LocalBook.getBookInputStream(LocalBook.kt:39)\r\n\tat io.legado.app.model.localBook.TextFile.getChapterList(TextFile.kt:61)\r\n\tat io.legado.app.model.localBook.TextFile$Companion.getChapterList(TextFile.kt:24)\r\n\tat io.legado.app.model.localBook.LocalBook.getChapterList(LocalBook.kt:54)\r\n\tat io.legado.app.ui.book.read.ReadBookViewModel$loadChapterList$1.invokeSuspend(ReadBookViewModel.kt:130)\r\n\tat io.legado.app.ui.book.read.ReadBookViewModel$loadChapterList$1.invoke(Unknown Source:8)\r\n\tat io.legado.app.ui.book.read.ReadBookViewModel$loadChapterList$1.invoke(Unknown Source:4)\r\n\tat io.legado.app.base.BaseViewModel$execute$1.invokeSuspend(BaseViewModel.kt:24)\r\n\tat io.legado.app.base.BaseViewModel$execute$1.invoke(Unknown Source:8)\r\n\tat io.legado.app.base.BaseViewModel$execute$1.invoke(Unknown Source:4)\r\n\tat io.legado.app.help.coroutine.Coroutine$executeBlock$2.invokeSuspend(Coroutine.kt:200)\r\n\tat kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33)\r\n\tat kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:106)\r\n\tat kotlinx.coroutines.internal.LimitedDispatcher.run(LimitedDispatcher.kt:42)\r\n\tat kotlinx.coroutines.scheduling.TaskImpl.run(Tasks.kt:95)\r\n\tat kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:570)\r\n\tat kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:749)\r\n\tat kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:677)\r\n\tat kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:664)\r\n",
"你这阅读不是最新版啊",
"ok,已经升级了,问题不见了,早知道就不恢复之前备份了。。。"
] | 2023-04-10T13:24:01 | 2023-04-10T13:40:40 | 2023-04-10T13:40:40 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
由于某种原因,可能是我的设置有所更改,导致只要文件名以 # 开头的txt文件都无法正常导入,它会将该文件识别为包含该文件的文件夹 ,比如 download/#都市《隐杀》.txt 就无法导入,因为APP会将将该路径识别为 download文件夹并提示你这是个文件夹。
报错提示:LoadTocError:/...../0/Download (Is a direcory)
PS:之前在默认设置下是可以正常导入以 # 开头的TXT文件的。但由于后来进行了一些设置,具体就是导入了一些规则,导致该BUG的出现
### 复现步骤 / How to reproduce
PS:之前在默认设置下是可以正常导入以 # 开头的TXT文件的。但由于后来进行了一些设置,具体就是导入了一些规则,导致该BUG的出现
1.使用 阅读 无法正常导入以 # 开头的txt文件
报错提示:LoadTocError:/...../0/Download (Is a direcory)
2.这种txt文件也无法用 阅读 正常打开
报错提示:LoadTocError:/...../0/Download (Is a direcory)
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.22.050215
### Android版本 / Android version
Android8.0.0
### 机型 / Model
MI6 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2966/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2966/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2965 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2965/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2965/comments | https://api.github.com/repos/gedoor/legado/issues/2965/events | https://github.com/gedoor/legado/issues/2965 | 1,660,617,945 | I_kwDOCzQSM85i-wTZ | 2,965 | 希望订阅源界面列表布局实现图片长宽自适应 | {
"login": "logique233",
"id": 34376539,
"node_id": "MDQ6VXNlcjM0Mzc2NTM5",
"avatar_url": "https://avatars.githubusercontent.com/u/34376539?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/logique233",
"html_url": "https://github.com/logique233",
"followers_url": "https://api.github.com/users/logique233/followers",
"following_url": "https://api.github.com/users/logique233/following{/other_user}",
"gists_url": "https://api.github.com/users/logique233/gists{/gist_id}",
"starred_url": "https://api.github.com/users/logique233/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/logique233/subscriptions",
"organizations_url": "https://api.github.com/users/logique233/orgs",
"repos_url": "https://api.github.com/users/logique233/repos",
"events_url": "https://api.github.com/users/logique233/events{/privacy}",
"received_events_url": "https://api.github.com/users/logique233/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | open | false | null | [] | null | [
"希望订阅源界面列表布局实现图片长宽自适应 "
] | 2023-04-10T11:01:53 | 2023-04-22T03:04:15 | null | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
希望订阅源界面列表布局实现图片长宽能够自适应。
![image](https://user-images.githubusercontent.com/34376539/230889349-2953bdc7-fd3e-448a-bbd5-26e04a9ee197.png)
现有的布局图片尺寸是固定的,希望可以实现图片自适应
### 期望实现方式 / How to implement
现有的布局图片尺寸是固定的,希望可以实现图片自适应,或者添加一个图片尺寸自适应的布局,在订阅源界面列表界面。
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2965/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2965/timeline | null | null | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2964 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2964/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2964/comments | https://api.github.com/repos/gedoor/legado/issues/2964/events | https://github.com/gedoor/legado/issues/2964 | 1,660,439,560 | I_kwDOCzQSM85i-EwI | 2,964 | 三星one ui 5.1 rss 看视频画面不动 | {
"login": "woodwen",
"id": 49469927,
"node_id": "MDQ6VXNlcjQ5NDY5OTI3",
"avatar_url": "https://avatars.githubusercontent.com/u/49469927?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/woodwen",
"html_url": "https://github.com/woodwen",
"followers_url": "https://api.github.com/users/woodwen/followers",
"following_url": "https://api.github.com/users/woodwen/following{/other_user}",
"gists_url": "https://api.github.com/users/woodwen/gists{/gist_id}",
"starred_url": "https://api.github.com/users/woodwen/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/woodwen/subscriptions",
"organizations_url": "https://api.github.com/users/woodwen/orgs",
"repos_url": "https://api.github.com/users/woodwen/repos",
"events_url": "https://api.github.com/users/woodwen/events{/privacy}",
"received_events_url": "https://api.github.com/users/woodwen/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 2527793356,
"node_id": "MDU6TGFiZWwyNTI3NzkzMzU2",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%BF%BD%E7%95%A5",
"name": "忽略",
"color": "AAAAAA",
"default": false,
"description": "与本工程无关"
}
] | closed | false | null | [] | null | [
"三星手机同样问题, 可能和加载的webview没有开启硬件加速有关, 导致无法解析高码率视频流",
"> 三星手机同样问题, 可能和加载的webview没有开启硬件加速有关, 导致无法解析高码率视频流\r\n\r\n我这发现了解决方法,降低webview版本到初始化版本,在设置-应用中搜索webview 卸载安装的 webview更新,就可以解决这个问题,目前已正常,你也可以尝试下看看",
"这是看书软件,你看啥视频啊,小伙子节制啊",
"> > 三星手机同样问题, 可能和加载的webview没有开启硬件加速有关, 导致无法解析高码率视频流\r\n> \r\n> 我这发现了解决方法,降低webview版本到初始化版本,在设置-应用中搜索webview 卸载安装的 webview更新,就可以解决这个问题,目前已正常,你也可以尝试下看看\r\n\r\n实测有效,什么原理呀? 黑人问号",
"> > > 三星手机同样问题, 可能和加载的webview没有开启硬件加速有关, 导致无法解析高码率视频流\r\n> > \r\n> > \r\n> > 我这发现了解决方法,降低webview版本到初始化版本,在设置-应用中搜索webview 卸载安装的 webview更新,就可以解决这个问题,目前已正常,你也可以尝试下看看\r\n> \r\n> 实测有效,什么原理呀? 黑人问号\r\n\r\n盲推一波应该是新的webview的属性可能和久的不大一样,所以要在AndroidManifest.xml的标注字段可能要加,具体的需要看安卓 webview 的更新文档",
"感谢,解决了一个很久的问题"
] | 2023-04-10T08:29:39 | 2023-04-26T02:55:40 | 2023-04-26T02:54:13 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
手机:三星23U
系统版本:one ui 5.1
阅读版本:3.23.040420
问题:点击订阅,可以看视频的rss订阅,比如 APP电影,看视频画面不动
### 复现步骤 / How to reproduce
点击订阅,可以看视频的rss订阅,比如 APP电影,看视频画面不动
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.040420
### Android版本 / Android version
Android 13
### 机型 / Model
三星S23U | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2964/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2964/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2963 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2963/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2963/comments | https://api.github.com/repos/gedoor/legado/issues/2963/events | https://github.com/gedoor/legado/pull/2963 | 1,660,235,989 | PR_kwDOCzQSM85N597I | 2,963 | Bump peter-evans/create-pull-request from 4 to 5 | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4422959940,
"node_id": "LA_kwDOCzQSM88AAAABB6EDRA",
"url": "https://api.github.com/repos/gedoor/legado/labels/github_actions",
"name": "github_actions",
"color": "000000",
"default": false,
"description": "Pull requests that update GitHub Actions code"
}
] | closed | false | null | [] | null | [] | 2023-04-10T05:02:26 | 2023-04-10T09:10:25 | 2023-04-10T09:10:17 | CONTRIBUTOR | null | Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 4 to 5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/peter-evans/create-pull-request/releases">peter-evans/create-pull-request's releases</a>.</em></p>
<blockquote>
<h2>Create Pull Request v5.0.0</h2>
<h2>Behaviour changes</h2>
<ul>
<li>The action will no longer leave the local repository checked out on the pull request <code>branch</code>. Instead, it will leave the repository checked out on the branch or commit that it was when the action started.</li>
<li>When using <code>add-paths</code>, uncommitted changes will no longer be destroyed. They will be stashed and restored at the end of the action run.</li>
</ul>
<h2>What's new</h2>
<ul>
<li>Adds input <code>body-path</code>, the path to a file containing the pull request body.</li>
<li>At the end of the action run the local repository is now checked out on the branch or commit that it was when the action started.</li>
<li>Any uncommitted tracked or untracked changes are now stashed and restored at the end of the action run. Currently, this can only occur when using the <code>add-paths</code> input, which allows for changes to not be committed. Previously, any uncommitted changes would be destroyed.</li>
<li>The proxy implementation has been revised but is not expected to have any change in behaviour. It continues to support the standard environment variables <code>http_proxy</code>, <code>https_proxy</code> and <code>no_proxy</code>.</li>
<li>Now sets the git <code>safe.directory</code> configuration for the local repository path. The configuration is removed when the action completes. Fixes issue <a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1170">peter-evans/create-pull-request#1170</a>.</li>
<li>Now determines the git directory path using the <code>git rev-parse --git-dir</code> command. This allows users with custom repository configurations to use the action.</li>
<li>Improved handling of the <code>team-reviewers</code> input and associated errors.</li>
</ul>
<h2>News</h2>
<p>:trophy: create-pull-request won <a href="https://twitter.com/peterevans0/status/1638463617686470657?s=20">an award</a> for "awesome action" at the Open Source Awards at GitHub Universe. Thank you for your support and for making create-pull-request one of the top used actions. Please give it a :star:, or even <a href="https://github.com/sponsors/peter-evans">buy me a coffee</a>.</p>
<h2>What's Changed</h2>
<ul>
<li>v5 by <a href="https://github.com/peter-evans"><code>@peter-evans</code></a> in <a href="https://redirect.github.com/peter-evans/create-pull-request/pull/1792">peter-evans/create-pull-request#1792</a></li>
<li>15 dependency updates by <a href="https://github.com/dependabot"><code>@dependabot</code></a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/peter-evans/create-pull-request/compare/v4.2.4...v5.0.0">https://github.com/peter-evans/create-pull-request/compare/v4.2.4...v5.0.0</a></p>
<h2>Create Pull Request v4.2.4</h2>
<p>⚙️ Patches some recent security vulnerabilities.</p>
<h2>What's Changed</h2>
<ul>
<li>Update concepts-guidelines.md by <a href="https://github.com/chrisbruford"><code>@chrisbruford</code></a> in <a href="https://redirect.github.com/peter-evans/create-pull-request/pull/1610">peter-evans/create-pull-request#1610</a></li>
<li>58 dependency updates by <a href="https://github.com/dependabot"><code>@dependabot</code></a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/chrisbruford"><code>@chrisbruford</code></a> made their first contribution in <a href="https://redirect.github.com/peter-evans/create-pull-request/pull/1610">peter-evans/create-pull-request#1610</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/peter-evans/create-pull-request/compare/v4.2.3...v4.2.4">https://github.com/peter-evans/create-pull-request/compare/v4.2.3...v4.2.4</a></p>
<h2>Create Pull Request v4.2.3</h2>
<h2>What's Changed</h2>
<ul>
<li>fix: add check for missing token input by <a href="https://github.com/peter-evans"><code>@peter-evans</code></a> in <a href="https://redirect.github.com/peter-evans/create-pull-request/pull/1324">peter-evans/create-pull-request#1324</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/peter-evans/create-pull-request/compare/v4.2.2...v4.2.3">https://github.com/peter-evans/create-pull-request/compare/v4.2.2...v4.2.3</a></p>
<h2>Create Pull Request v4.2.2</h2>
<h2>What's Changed</h2>
<ul>
<li>fix: support github server url for pushing to fork by <a href="https://github.com/peter-evans"><code>@peter-evans</code></a> in <a href="https://redirect.github.com/peter-evans/create-pull-request/pull/1318">peter-evans/create-pull-request#1318</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/peter-evans/create-pull-request/commit/5b4a9f6a9e2af26e5f02351490b90d01eb8ec1e5"><code>5b4a9f6</code></a> v5 (<a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1792">#1792</a>)</li>
<li><a href="https://github.com/peter-evans/create-pull-request/commit/1847e5d1d66115e99988ff4ccbe629ae5b14820b"><code>1847e5d</code></a> build(deps-dev): bump eslint from 8.36.0 to 8.37.0 (<a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1803">#1803</a>)</li>
<li><a href="https://github.com/peter-evans/create-pull-request/commit/c246f7e9126aba0f1cc780a7133429d9771e9b66"><code>c246f7e</code></a> build(deps-dev): bump <code>@typescript-eslint/parser</code> from 5.57.0 to 5.57.1 (<a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1801">#1801</a>)</li>
<li><a href="https://github.com/peter-evans/create-pull-request/commit/2dd2b11b09f0b3bf86c25cf615e4bbe624f80314"><code>2dd2b11</code></a> build(deps-dev): bump eslint-import-resolver-typescript (<a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1802">#1802</a>)</li>
<li><a href="https://github.com/peter-evans/create-pull-request/commit/05d5a3c3f9506f8628125834beec3993d3eada67"><code>05d5a3c</code></a> build(deps-dev): bump <code>@types/node</code> from 18.15.10 to 18.15.11 (<a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1800">#1800</a>)</li>
<li><a href="https://github.com/peter-evans/create-pull-request/commit/21479f22fcc890fd56c1b5a47d47162fa907dddc"><code>21479f2</code></a> build(deps-dev): bump ts-jest from 29.0.5 to 29.1.0 (<a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1799">#1799</a>)</li>
<li><a href="https://github.com/peter-evans/create-pull-request/commit/36a56dac0739df8d3d8ebb9e6e41026ba248ec27"><code>36a56da</code></a> build(deps-dev): bump <code>@typescript-eslint/parser</code> from 5.56.0 to 5.57.0 (<a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1768">#1768</a>)</li>
<li><a href="https://github.com/peter-evans/create-pull-request/commit/b7f0c9773b3f9bd0eb8d00cc963aceb9da2345e5"><code>b7f0c97</code></a> build(deps-dev): bump prettier from 2.8.6 to 2.8.7 (<a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1767">#1767</a>)</li>
<li><a href="https://github.com/peter-evans/create-pull-request/commit/6a62596740af10ccfc9800db9f74c255f65c9055"><code>6a62596</code></a> build(deps): bump peter-evans/enable-pull-request-automerge from 2 to 3 (<a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1766">#1766</a>)</li>
<li><a href="https://github.com/peter-evans/create-pull-request/commit/d1ed29fe1ea9695e51f6bdda3db7211f3294d9d5"><code>d1ed29f</code></a> build(deps-dev): bump <code>@types/node</code> from 18.15.5 to 18.15.10 (<a href="https://redirect.github.com/peter-evans/create-pull-request/issues/1765">#1765</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/peter-evans/create-pull-request/compare/v4...v5">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=peter-evans/create-pull-request&package-manager=github_actions&previous-version=4&new-version=5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2963/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2963/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2963",
"html_url": "https://github.com/gedoor/legado/pull/2963",
"diff_url": "https://github.com/gedoor/legado/pull/2963.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2963.patch",
"merged_at": "2023-04-10T09:10:17"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2962 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2962/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2962/comments | https://api.github.com/repos/gedoor/legado/issues/2962/events | https://github.com/gedoor/legado/pull/2962 | 1,660,234,492 | PR_kwDOCzQSM85N59l6 | 2,962 | Bump androidx.core:core-ktx from 1.9.0 to 1.10.0 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-04-10T05:01:14 | 2023-04-10T09:09:59 | 2023-04-10T09:09:51 | CONTRIBUTOR | null | Bumps androidx.core:core-ktx from 1.9.0 to 1.10.0.
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.core:core-ktx&package-manager=gradle&previous-version=1.9.0&new-version=1.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2962/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2962/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2962",
"html_url": "https://github.com/gedoor/legado/pull/2962",
"diff_url": "https://github.com/gedoor/legado/pull/2962.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2962.patch",
"merged_at": "2023-04-10T09:09:51"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2961 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2961/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2961/comments | https://api.github.com/repos/gedoor/legado/issues/2961/events | https://github.com/gedoor/legado/pull/2961 | 1,660,234,145 | PR_kwDOCzQSM85N59hG | 2,961 | Bump com.github.liuyueyi.quick-chinese-transfer:quick-transfer-core from 0.2.12 to 0.2.13 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-04-10T05:00:57 | 2023-04-10T09:09:37 | 2023-04-10T09:09:28 | CONTRIBUTOR | null | Bumps [com.github.liuyueyi.quick-chinese-transfer:quick-transfer-core](https://github.com/liuyueyi/quick-chinese-transfer) from 0.2.12 to 0.2.13.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/liuyueyi/quick-chinese-transfer/commit/21f49e69c967934cb53d674dd210d234713a141a"><code>21f49e6</code></a> fix: <a href="https://redirect.github.com/liuyueyi/quick-chinese-transfer/issues/15">#15</a> 繁简转换问题修复</li>
<li>See full diff in <a href="https://github.com/liuyueyi/quick-chinese-transfer/compare/0.2.12...0.2.13">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.liuyueyi.quick-chinese-transfer:quick-transfer-core&package-manager=gradle&previous-version=0.2.12&new-version=0.2.13)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2961/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2961/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2961",
"html_url": "https://github.com/gedoor/legado/pull/2961",
"diff_url": "https://github.com/gedoor/legado/pull/2961.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2961.patch",
"merged_at": "2023-04-10T09:09:28"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2960 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2960/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2960/comments | https://api.github.com/repos/gedoor/legado/issues/2960/events | https://github.com/gedoor/legado/issues/2960 | 1,659,858,911 | I_kwDOCzQSM85i72_f | 2,960 | 小爱同学朗读功能朗读4个字的段落会跳过 | {
"login": "yhan219",
"id": 12593660,
"node_id": "MDQ6VXNlcjEyNTkzNjYw",
"avatar_url": "https://avatars.githubusercontent.com/u/12593660?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yhan219",
"html_url": "https://github.com/yhan219",
"followers_url": "https://api.github.com/users/yhan219/followers",
"following_url": "https://api.github.com/users/yhan219/following{/other_user}",
"gists_url": "https://api.github.com/users/yhan219/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yhan219/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yhan219/subscriptions",
"organizations_url": "https://api.github.com/users/yhan219/orgs",
"repos_url": "https://api.github.com/users/yhan219/repos",
"events_url": "https://api.github.com/users/yhan219/events{/privacy}",
"received_events_url": "https://api.github.com/users/yhan219/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"我卸载后重新装过,依然有这个问题。切换了书源也是同样的。但是没有网络的时候,不使用小爱,阅读就正常了",
"这是你用的TTS软件有问题,你换个别的就行了",
"系统默认用的是小爱。抓了下包有加密,也看不出什么问题。重启了手机好了,很奇怪。有时间再研究下",
"我也遇到这个问题了,不是tts的问题,我换过微软、谷歌和自带的小爱都存在这个问题,我感觉是升级miui14之后出现的。"
] | 2023-04-09T12:24:32 | 2023-04-23T06:40:15 | 2023-04-09T13:16:54 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
小米手机使用系统阅读(小爱),阅读到4个字或者少于4个字的段落,会停顿一下跳过这个段落。
### 复现步骤 / How to reproduce
一个小米手机
随便选一个小说
阅读一个少于4个字的段落
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.040420
### Android版本 / Android version
Android 13
### 机型 / Model
小米 Mi10 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2960/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2960/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2959 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2959/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2959/comments | https://api.github.com/repos/gedoor/legado/issues/2959/events | https://github.com/gedoor/legado/issues/2959 | 1,659,839,695 | I_kwDOCzQSM85i7yTP | 2,959 | 能加个订阅源广告屏蔽吗 | {
"login": "javacainiaoa",
"id": 46554798,
"node_id": "MDQ6VXNlcjQ2NTU0Nzk4",
"avatar_url": "https://avatars.githubusercontent.com/u/46554798?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/javacainiaoa",
"html_url": "https://github.com/javacainiaoa",
"followers_url": "https://api.github.com/users/javacainiaoa/followers",
"following_url": "https://api.github.com/users/javacainiaoa/following{/other_user}",
"gists_url": "https://api.github.com/users/javacainiaoa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/javacainiaoa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/javacainiaoa/subscriptions",
"organizations_url": "https://api.github.com/users/javacainiaoa/orgs",
"repos_url": "https://api.github.com/users/javacainiaoa/repos",
"events_url": "https://api.github.com/users/javacainiaoa/events{/privacy}",
"received_events_url": "https://api.github.com/users/javacainiaoa/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"已经有了,白名单、黑名单、注入Js都可以"
] | 2023-04-09T11:13:04 | 2023-04-17T11:56:09 | 2023-04-17T11:56:09 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
加个订阅源广告屏蔽
### 期望实现方式 / How to implement
/
### 附加信息 / Additions
/
### 效果演示 / Demo
/ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2959/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2959/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2958 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2958/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2958/comments | https://api.github.com/repos/gedoor/legado/issues/2958/events | https://github.com/gedoor/legado/issues/2958 | 1,659,744,589 | I_kwDOCzQSM85i7bFN | 2,958 | 平板双页需要优化 | {
"login": "havoscc",
"id": 76244706,
"node_id": "MDQ6VXNlcjc2MjQ0NzA2",
"avatar_url": "https://avatars.githubusercontent.com/u/76244706?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/havoscc",
"html_url": "https://github.com/havoscc",
"followers_url": "https://api.github.com/users/havoscc/followers",
"following_url": "https://api.github.com/users/havoscc/following{/other_user}",
"gists_url": "https://api.github.com/users/havoscc/gists{/gist_id}",
"starred_url": "https://api.github.com/users/havoscc/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/havoscc/subscriptions",
"organizations_url": "https://api.github.com/users/havoscc/orgs",
"repos_url": "https://api.github.com/users/havoscc/repos",
"events_url": "https://api.github.com/users/havoscc/events{/privacy}",
"received_events_url": "https://api.github.com/users/havoscc/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | open | false | null | [] | null | [
"第一个你自己改下边距,你都设置成0了那肯定是这样的啊",
"改了正文边距,果然顺眼多了,只是什么时候能安排上横屏双翻页啊",
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-04-09T04:30:44 | 2023-05-11T01:54:44 | null | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
第一是对双页模式优化,可以借鉴一下掌阅的横屏双翻页的文字布局之类的
![Screenshot_2023-04-09-10-41-55-389_io legado app release](https://user-images.githubusercontent.com/76244706/230754438-19810ac2-fdfb-4132-ae70-96c15a4090d2.jpg)
第二是双页的仿真翻页动画也需要优化,类似掌阅那种横屏双翻页
### 期望实现方式 / How to implement
参考掌阅的横屏模式
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2958/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2958/timeline | null | null | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2957 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2957/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2957/comments | https://api.github.com/repos/gedoor/legado/issues/2957/events | https://github.com/gedoor/legado/issues/2957 | 1,659,421,956 | I_kwDOCzQSM85i6MUE | 2,957 | 在主页添加一个 快捷备份 按钮 | {
"login": "wazk9595",
"id": 84953699,
"node_id": "MDQ6VXNlcjg0OTUzNjk5",
"avatar_url": "https://avatars.githubusercontent.com/u/84953699?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/wazk9595",
"html_url": "https://github.com/wazk9595",
"followers_url": "https://api.github.com/users/wazk9595/followers",
"following_url": "https://api.github.com/users/wazk9595/following{/other_user}",
"gists_url": "https://api.github.com/users/wazk9595/gists{/gist_id}",
"starred_url": "https://api.github.com/users/wazk9595/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wazk9595/subscriptions",
"organizations_url": "https://api.github.com/users/wazk9595/orgs",
"repos_url": "https://api.github.com/users/wazk9595/repos",
"events_url": "https://api.github.com/users/wazk9595/events{/privacy}",
"received_events_url": "https://api.github.com/users/wazk9595/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | open | false | null | [] | null | [
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-04-08T06:52:33 | 2023-05-11T01:54:45 | null | NONE | null | ### 确认 / Assignments
- [x] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
因为在工作和家里用的手机不一样,所以经常要同步,但是有的时候就会忘了同步。不如直接在主页上方再添加一个同步的云图标,比较方便,也更容易看到,谢谢
### 期望实现方式 / How to implement
在首页书架的搜索旁边添加一个备份按钮
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
![photo_2023-04-08_14-52-11](https://user-images.githubusercontent.com/84953699/230707809-fe3b0a60-03f7-4ccd-8963-4a12e3827c52.jpg)
大概差不多就是这样子 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2957/reactions",
"total_count": 1,
"+1": 0,
"-1": 0,
"laugh": 1,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2957/timeline | null | null | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2956 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2956/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2956/comments | https://api.github.com/repos/gedoor/legado/issues/2956/events | https://github.com/gedoor/legado/issues/2956 | 1,659,381,880 | I_kwDOCzQSM85i6Ch4 | 2,956 | web书籍 | {
"login": "Xwite",
"id": 82232510,
"node_id": "MDQ6VXNlcjgyMjMyNTEw",
"avatar_url": "https://avatars.githubusercontent.com/u/82232510?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Xwite",
"html_url": "https://github.com/Xwite",
"followers_url": "https://api.github.com/users/Xwite/followers",
"following_url": "https://api.github.com/users/Xwite/following{/other_user}",
"gists_url": "https://api.github.com/users/Xwite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Xwite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Xwite/subscriptions",
"organizations_url": "https://api.github.com/users/Xwite/orgs",
"repos_url": "https://api.github.com/users/Xwite/repos",
"events_url": "https://api.github.com/users/Xwite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Xwite/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [] | 2023-04-08T04:33:06 | 2023-04-08T11:29:43 | 2023-04-08T11:29:43 | COLLABORATOR | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
- [ ] 自动暗黑模式
- [ ] 优化阅读在线书籍逻辑
- [ ] 添加后端ip设置?
- [ ] ~~过时浏览器兼容~~
> Edge ≥ 79 Firefox ≥ 78 Chrome ≥ 64 Safari ≥ 12
### 期望实现方式 / How to implement
*
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2956/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2956/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2955 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2955/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2955/comments | https://api.github.com/repos/gedoor/legado/issues/2955/events | https://github.com/gedoor/legado/pull/2955 | 1,658,768,958 | PR_kwDOCzQSM85N1hP1 | 2,955 | modules 添加web | {
"login": "Xwite",
"id": 82232510,
"node_id": "MDQ6VXNlcjgyMjMyNTEw",
"avatar_url": "https://avatars.githubusercontent.com/u/82232510?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Xwite",
"html_url": "https://github.com/Xwite",
"followers_url": "https://api.github.com/users/Xwite/followers",
"following_url": "https://api.github.com/users/Xwite/following{/other_user}",
"gists_url": "https://api.github.com/users/Xwite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Xwite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Xwite/subscriptions",
"organizations_url": "https://api.github.com/users/Xwite/orgs",
"repos_url": "https://api.github.com/users/Xwite/repos",
"events_url": "https://api.github.com/users/Xwite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Xwite/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-04-07T12:45:27 | 2023-04-07T13:58:03 | 2023-04-07T13:58:03 | COLLABORATOR | null | web书源和书架合一 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2955/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2955/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2955",
"html_url": "https://github.com/gedoor/legado/pull/2955",
"diff_url": "https://github.com/gedoor/legado/pull/2955.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2955.patch",
"merged_at": "2023-04-07T13:58:03"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2953 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2953/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2953/comments | https://api.github.com/repos/gedoor/legado/issues/2953/events | https://github.com/gedoor/legado/issues/2953 | 1,656,661,465 | I_kwDOCzQSM85ivqXZ | 2,953 | cloudflare提供了名为Privacy Pass的验证方式,集成到阅读会不会有用? | {
"login": "daiaji",
"id": 25875791,
"node_id": "MDQ6VXNlcjI1ODc1Nzkx",
"avatar_url": "https://avatars.githubusercontent.com/u/25875791?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/daiaji",
"html_url": "https://github.com/daiaji",
"followers_url": "https://api.github.com/users/daiaji/followers",
"following_url": "https://api.github.com/users/daiaji/following{/other_user}",
"gists_url": "https://api.github.com/users/daiaji/gists{/gist_id}",
"starred_url": "https://api.github.com/users/daiaji/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/daiaji/subscriptions",
"organizations_url": "https://api.github.com/users/daiaji/orgs",
"repos_url": "https://api.github.com/users/daiaji/repos",
"events_url": "https://api.github.com/users/daiaji/events{/privacy}",
"received_events_url": "https://api.github.com/users/daiaji/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"WebView不支持",
"不知道能不能通过发送HTTP请求的方式用PrivacyPass。"
] | 2023-04-06T04:55:53 | 2023-05-11T07:47:40 | 2023-04-17T11:55:56 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
基本上是在浏览器上用于过cloudflare的验证,感觉阅读也能用上。
### 期望实现方式 / How to implement
https://github.com/privacypass/challenge-bypass-extension
### 附加信息 / Additions
印象中如果你触发了一次cloudflare的验证码,Privacy Pass扩展会在你搞对验证码之后收集令牌方便你下次再和验证码对付上时能直接过 。
![图片](https://user-images.githubusercontent.com/25875791/231408492-7e8956f5-bafa-4040-8fe6-27c43b4c3c3c.png)
官方那边也是说默认这个是开启的。
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2953/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2953/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2952 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2952/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2952/comments | https://api.github.com/repos/gedoor/legado/issues/2952/events | https://github.com/gedoor/legado/issues/2952 | 1,656,649,547 | I_kwDOCzQSM85ivndL | 2,952 | 书评与书单功能 | {
"login": "XiaoXiaoYanHe",
"id": 36267320,
"node_id": "MDQ6VXNlcjM2MjY3MzIw",
"avatar_url": "https://avatars.githubusercontent.com/u/36267320?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/XiaoXiaoYanHe",
"html_url": "https://github.com/XiaoXiaoYanHe",
"followers_url": "https://api.github.com/users/XiaoXiaoYanHe/followers",
"following_url": "https://api.github.com/users/XiaoXiaoYanHe/following{/other_user}",
"gists_url": "https://api.github.com/users/XiaoXiaoYanHe/gists{/gist_id}",
"starred_url": "https://api.github.com/users/XiaoXiaoYanHe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/XiaoXiaoYanHe/subscriptions",
"organizations_url": "https://api.github.com/users/XiaoXiaoYanHe/orgs",
"repos_url": "https://api.github.com/users/XiaoXiaoYanHe/repos",
"events_url": "https://api.github.com/users/XiaoXiaoYanHe/events{/privacy}",
"received_events_url": "https://api.github.com/users/XiaoXiaoYanHe/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | open | false | null | [] | null | [
"附加信息里的弱需求是我联想着玩的,个人只需要“书籍信息界面直接看到弃书理由”",
"你可以直接写在简介里",
"> 你可以直接写在简介里\r\n\r\n原来换源不简介更新。想要专门书评分隔,方便美观点(弱气)",
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-04-06T04:37:10 | 2023-05-11T01:54:47 | null | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
看书大多三章弃,印象浅,放在“回收”分组避免重读。
在“食之无味”分组再次搜索到、书荒回头翻找,进入书签多点四下。
想在书籍信息界面直接看到弃书理由
### 期望实现方式 / How to implement
在 书籍信息-编辑书籍信息-内容简介 的下面添加书评编辑
### 附加信息 / Additions
弱需求:“书单分享”添加文本或图片方式导出,弥补链接有效期短、文件分享麻烦。
并入书签,给予书评标记,方便批量查看管理。
打分,按评分排序。方便偶尔的书荒找书。
书单导入导出时可选,看到12月讨论。
跟书源一样可选,加入时自动换源,没源给个书名作者放着。 简单粗暴我喜欢。
或者 (自动 新建分组 分享者定义ID 在线更新 全部添加)即
临时建立书单分组或挂载界面,可以放书评,点击搜索,挑选完取消分组。实现麻烦,挑书可以慢慢来。
两方案用点击搜索和自动换源都方便。自动换源怕一次百本导入,换不看的书略不爽。选择权交给用户?
实现前者书单网站干碎小半,能挂载分享者的链接或更进一步——读取百度阿里大众网盘分享的文本文件大概能干没,不过太麻烦,没必要。
### 效果演示 / Demo
书单分享格式
《书名》作者 :匿名 【10分】
书评内容
——————华丽分割线===---
《书名》作者 :匿名
【五星】书评内容
| {
"url": "https://api.github.com/repos/gedoor/legado/issues/2952/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2952/timeline | null | null | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2951 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2951/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2951/comments | https://api.github.com/repos/gedoor/legado/issues/2951/events | https://github.com/gedoor/legado/issues/2951 | 1,655,334,159 | I_kwDOCzQSM85iqmUP | 2,951 | tocUrl多链接支持 | {
"login": "Chen-Yuanmeng",
"id": 118530431,
"node_id": "U_kgDOBxChfw",
"avatar_url": "https://avatars.githubusercontent.com/u/118530431?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Chen-Yuanmeng",
"html_url": "https://github.com/Chen-Yuanmeng",
"followers_url": "https://api.github.com/users/Chen-Yuanmeng/followers",
"following_url": "https://api.github.com/users/Chen-Yuanmeng/following{/other_user}",
"gists_url": "https://api.github.com/users/Chen-Yuanmeng/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Chen-Yuanmeng/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Chen-Yuanmeng/subscriptions",
"organizations_url": "https://api.github.com/users/Chen-Yuanmeng/orgs",
"repos_url": "https://api.github.com/users/Chen-Yuanmeng/repos",
"events_url": "https://api.github.com/users/Chen-Yuanmeng/events{/privacy}",
"received_events_url": "https://api.github.com/users/Chen-Yuanmeng/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"有目录下一页规则",
"嗯谢谢,我刚入门,离入土早着呢……\r\n\r\n\r\n---原始邮件---\r\n发件人: ***@***.***>\r\n发送时间: 2023年4月5日(周三) 晚上6:17\r\n收件人: ***@***.***>;\r\n抄送: ***@***.******@***.***>;\r\n主题: Re: [gedoor/legado] tocUrl多链接支持 (Issue #2951)\r\n\r\n\r\n\r\n\r\n \r\n有目录下一页规则\r\n \r\n—\r\nReply to this email directly, view it on GitHub, or unsubscribe.\r\nYou are receiving this because you authored the thread.Message ID: ***@***.***>",
"请问下一页规则到底怎么填啊。我发现了这样的规则,麻烦帮忙看看应该怎么填:\r\n\r\n![image](https://user-images.githubusercontent.com/12446554/230420774-ae6e4433-da30-4fc8-96b8-31bb5275a0d1.png)\r\n\r\n谢谢!\r\n\r\n麻烦是中间有个...,所以不知道该怎么使用{{page}}来构建这些缺失的页,请大佬指点以下。",
"> 请问下一页规则到底怎么填啊。我发现\r\n\r\n这个应该填的是“下一页”按钮指向的链接,从你这个代码好像看不出来有没有下一页"
] | 2023-04-05T10:15:31 | 2023-04-07T05:21:36 | 2023-04-07T05:21:36 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
书源里面,目录URL规则`tocUrl`只支持单个url,希望可以支持多个url,这样可以支持目录分好几页展示的网站
### 期望实现方式 / How to implement
如类似发现中的`page`关键字标识
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2951/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2951/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2950 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2950/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2950/comments | https://api.github.com/repos/gedoor/legado/issues/2950/events | https://github.com/gedoor/legado/issues/2950 | 1,654,860,226 | I_kwDOCzQSM85ioynC | 2,950 | 希望缓存报错之后在缓存导出列表中显示出来 | {
"login": "zousizhe",
"id": 37259360,
"node_id": "MDQ6VXNlcjM3MjU5MzYw",
"avatar_url": "https://avatars.githubusercontent.com/u/37259360?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zousizhe",
"html_url": "https://github.com/zousizhe",
"followers_url": "https://api.github.com/users/zousizhe/followers",
"following_url": "https://api.github.com/users/zousizhe/following{/other_user}",
"gists_url": "https://api.github.com/users/zousizhe/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zousizhe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zousizhe/subscriptions",
"organizations_url": "https://api.github.com/users/zousizhe/orgs",
"repos_url": "https://api.github.com/users/zousizhe/repos",
"events_url": "https://api.github.com/users/zousizhe/events{/privacy}",
"received_events_url": "https://api.github.com/users/zousizhe/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | closed | false | null | [] | null | [
"去日志那里看看",
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-04-05T03:09:44 | 2023-05-11T01:54:48 | 2023-05-11T01:54:48 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
目前会弹出个字幕报错,但是一闪而过,之后就看不到了,也不知道是哪本小说出了什么问题,缓存列表任务里也没显示出来
### 期望实现方式 / How to implement
错误结果在缓存导出列表当中显示出来
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2950/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2950/timeline | null | not_planned | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2949 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2949/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2949/comments | https://api.github.com/repos/gedoor/legado/issues/2949/events | https://github.com/gedoor/legado/issues/2949 | 1,654,858,771 | I_kwDOCzQSM85ioyQT | 2,949 | 希望能在缓存之后统计章节字数,方便识别一些网站的空章节 | {
"login": "zousizhe",
"id": 37259360,
"node_id": "MDQ6VXNlcjM3MjU5MzYw",
"avatar_url": "https://avatars.githubusercontent.com/u/37259360?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zousizhe",
"html_url": "https://github.com/zousizhe",
"followers_url": "https://api.github.com/users/zousizhe/followers",
"following_url": "https://api.github.com/users/zousizhe/following{/other_user}",
"gists_url": "https://api.github.com/users/zousizhe/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zousizhe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zousizhe/subscriptions",
"organizations_url": "https://api.github.com/users/zousizhe/orgs",
"repos_url": "https://api.github.com/users/zousizhe/repos",
"events_url": "https://api.github.com/users/zousizhe/events{/privacy}",
"received_events_url": "https://api.github.com/users/zousizhe/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | open | false | null | [] | null | [
"非常需要这个功能"
] | 2023-04-05T03:07:03 | 2023-04-12T05:03:13 | null | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
有时候是网站有问题导致缓存空白章节,之后导出来也不知道是空章节
### 期望实现方式 / How to implement
希望能在缓存之后的目录列表后面加个字数统计,如果有字数异常就能看出缓存内容有异常
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2949/reactions",
"total_count": 1,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 1,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2949/timeline | null | null | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2948 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2948/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2948/comments | https://api.github.com/repos/gedoor/legado/issues/2948/events | https://github.com/gedoor/legado/issues/2948 | 1,654,853,455 | I_kwDOCzQSM85iow9P | 2,948 | 哪个主题启用了都不知道,也没个标识 | {
"login": "zousizhe",
"id": 37259360,
"node_id": "MDQ6VXNlcjM3MjU5MzYw",
"avatar_url": "https://avatars.githubusercontent.com/u/37259360?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zousizhe",
"html_url": "https://github.com/zousizhe",
"followers_url": "https://api.github.com/users/zousizhe/followers",
"following_url": "https://api.github.com/users/zousizhe/following{/other_user}",
"gists_url": "https://api.github.com/users/zousizhe/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zousizhe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zousizhe/subscriptions",
"organizations_url": "https://api.github.com/users/zousizhe/orgs",
"repos_url": "https://api.github.com/users/zousizhe/repos",
"events_url": "https://api.github.com/users/zousizhe/events{/privacy}",
"received_events_url": "https://api.github.com/users/zousizhe/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | closed | false | null | [] | null | [
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-04-05T03:01:35 | 2023-05-11T01:54:49 | 2023-05-11T01:54:49 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
都不知道目前使用的是哪个软件主题,排版主题就能区分出当前使用
### 期望实现方式 / How to implement
希望在启用的主题那里打个勾
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2948/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2948/timeline | null | not_planned | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2947 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2947/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2947/comments | https://api.github.com/repos/gedoor/legado/issues/2947/events | https://github.com/gedoor/legado/issues/2947 | 1,654,851,360 | I_kwDOCzQSM85iowcg | 2,947 | 希望还原时可以选择还原的项目,大多数时候都不想把所有设置都还原 | {
"login": "zousizhe",
"id": 37259360,
"node_id": "MDQ6VXNlcjM3MjU5MzYw",
"avatar_url": "https://avatars.githubusercontent.com/u/37259360?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zousizhe",
"html_url": "https://github.com/zousizhe",
"followers_url": "https://api.github.com/users/zousizhe/followers",
"following_url": "https://api.github.com/users/zousizhe/following{/other_user}",
"gists_url": "https://api.github.com/users/zousizhe/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zousizhe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zousizhe/subscriptions",
"organizations_url": "https://api.github.com/users/zousizhe/orgs",
"repos_url": "https://api.github.com/users/zousizhe/repos",
"events_url": "https://api.github.com/users/zousizhe/events{/privacy}",
"received_events_url": "https://api.github.com/users/zousizhe/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | closed | false | null | [] | null | [
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-04-05T02:58:47 | 2023-05-11T01:54:50 | 2023-05-11T01:54:50 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
平时没那么多还原需求,只想还原一两项,不想搞乱其他设置,像书架与书源之类的
### 期望实现方式 / How to implement
取消恢复忽略列表,改成还原时勾选还原项目,书架书源那些都分开选择
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2947/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2947/timeline | null | not_planned | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2946 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2946/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2946/comments | https://api.github.com/repos/gedoor/legado/issues/2946/events | https://github.com/gedoor/legado/issues/2946 | 1,654,847,485 | I_kwDOCzQSM85iovf9 | 2,946 | 目前在书架管理搜索简介功能进不了详情,看不到简介,导致这功能很鸡肋 | {
"login": "zousizhe",
"id": 37259360,
"node_id": "MDQ6VXNlcjM3MjU5MzYw",
"avatar_url": "https://avatars.githubusercontent.com/u/37259360?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zousizhe",
"html_url": "https://github.com/zousizhe",
"followers_url": "https://api.github.com/users/zousizhe/followers",
"following_url": "https://api.github.com/users/zousizhe/following{/other_user}",
"gists_url": "https://api.github.com/users/zousizhe/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zousizhe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zousizhe/subscriptions",
"organizations_url": "https://api.github.com/users/zousizhe/orgs",
"repos_url": "https://api.github.com/users/zousizhe/repos",
"events_url": "https://api.github.com/users/zousizhe/events{/privacy}",
"received_events_url": "https://api.github.com/users/zousizhe/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | closed | false | null | [] | null | [
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-04-05T02:52:31 | 2023-05-11T01:54:50 | 2023-05-11T01:54:50 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
可以在书架管理查找简介里的内容,但是无法从这个界面进去,进不了详情,就根本看不到内容,也无法定位到这本小说,如果想找到这本小说,只能新建一个书架移过去。
### 期望实现方式 / How to implement
希望能直接从这个界面进小说或者加个定位跳转功能。
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2946/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2946/timeline | null | not_planned | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2945 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2945/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2945/comments | https://api.github.com/repos/gedoor/legado/issues/2945/events | https://github.com/gedoor/legado/issues/2945 | 1,654,220,297 | I_kwDOCzQSM85imWYJ | 2,945 | 之前好像有个从选中文字开始朗读的功能,被拿掉了吗 | {
"login": "ll8456",
"id": 114177096,
"node_id": "U_kgDOBs40SA",
"avatar_url": "https://avatars.githubusercontent.com/u/114177096?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ll8456",
"html_url": "https://github.com/ll8456",
"followers_url": "https://api.github.com/users/ll8456/followers",
"following_url": "https://api.github.com/users/ll8456/following{/other_user}",
"gists_url": "https://api.github.com/users/ll8456/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ll8456/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ll8456/subscriptions",
"organizations_url": "https://api.github.com/users/ll8456/orgs",
"repos_url": "https://api.github.com/users/ll8456/repos",
"events_url": "https://api.github.com/users/ll8456/events{/privacy}",
"received_events_url": "https://api.github.com/users/ll8456/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"长按文字选择菜单可以切换模式"
] | 2023-04-04T16:41:02 | 2023-04-17T12:05:03 | 2023-04-17T12:05:03 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
长按选中文字后,就从那里开始朗读
### 期望实现方式 / How to implement
长按选中文字后,就从那里开始朗读
### 附加信息 / Additions
长按选中文字后,就从那里开始朗读
### 效果演示 / Demo
长按选中文字后,就从那里开始朗读 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2945/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2945/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2944 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2944/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2944/comments | https://api.github.com/repos/gedoor/legado/issues/2944/events | https://github.com/gedoor/legado/issues/2944 | 1,653,908,755 | I_kwDOCzQSM85ilKUT | 2,944 | 刷新书架后,未读标志加红强调的逻辑有问题。 | {
"login": "zealousfool",
"id": 12507338,
"node_id": "MDQ6VXNlcjEyNTA3MzM4",
"avatar_url": "https://avatars.githubusercontent.com/u/12507338?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zealousfool",
"html_url": "https://github.com/zealousfool",
"followers_url": "https://api.github.com/users/zealousfool/followers",
"following_url": "https://api.github.com/users/zealousfool/following{/other_user}",
"gists_url": "https://api.github.com/users/zealousfool/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zealousfool/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zealousfool/subscriptions",
"organizations_url": "https://api.github.com/users/zealousfool/orgs",
"repos_url": "https://api.github.com/users/zealousfool/repos",
"events_url": "https://api.github.com/users/zealousfool/events{/privacy}",
"received_events_url": "https://api.github.com/users/zealousfool/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | closed | false | null | [] | null | [
"刷新多次的话会有问题",
"> 刷新多次的话会有问题\r\n\r\n我经常连续刷新,会出什么问题吗?",
"你再刷新一下就全都不会高亮了",
"> 你再刷新一下就全都不会高亮了\r\n\r\n不会,连续刷新还是高亮的。我用的应该是最新版本3.23.040118",
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-04-04T13:34:51 | 2023-05-11T01:54:51 | 2023-05-11T01:54:51 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
![image](https://user-images.githubusercontent.com/12507338/229807946-d8b02f76-32b9-4a5c-b4b3-23440e98c0fd.png)
现在的逻辑是:刷新后,有新增章节的,未读标志才变红强调。
但是变红强调后的未读标志,在没有点开阅读前,是永久变红强调的。(对于强迫症不太友好qaq)
逻辑应该是:本次刷新后,有新增章节的,未读标志才变红强调。没有新增章节的,取消其变红强调的未读标志。
也可以新增一条比如:刷新后可选择额外的显示标志:新增0章,新增2章
### 期望实现方式 / How to implement
逻辑应该是:本次刷新后,有新增章节的,未读标志才变红强调。没有新增章节的,取消其变红强调的未读标志。
也可以新增一条比如:刷新后可选择额外的显示标志:新增0章,新增2章
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2944/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2944/timeline | null | not_planned | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2943 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2943/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2943/comments | https://api.github.com/repos/gedoor/legado/issues/2943/events | https://github.com/gedoor/legado/issues/2943 | 1,651,712,507 | I_kwDOCzQSM85icyH7 | 2,943 | 小说内容不能正确显示 | {
"login": "ohtfbbxy33",
"id": 70877968,
"node_id": "MDQ6VXNlcjcwODc3OTY4",
"avatar_url": "https://avatars.githubusercontent.com/u/70877968?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ohtfbbxy33",
"html_url": "https://github.com/ohtfbbxy33",
"followers_url": "https://api.github.com/users/ohtfbbxy33/followers",
"following_url": "https://api.github.com/users/ohtfbbxy33/following{/other_user}",
"gists_url": "https://api.github.com/users/ohtfbbxy33/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ohtfbbxy33/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ohtfbbxy33/subscriptions",
"organizations_url": "https://api.github.com/users/ohtfbbxy33/orgs",
"repos_url": "https://api.github.com/users/ohtfbbxy33/repos",
"events_url": "https://api.github.com/users/ohtfbbxy33/events{/privacy}",
"received_events_url": "https://api.github.com/users/ohtfbbxy33/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | false | null | [] | null | [
"你文件没传上来,可以把epub改zip传",
"> 你的文件没有传上来,可以把epub改zip传\r\n没注意到没上传过来\r\n[穆斯林的葬礼 (霍达 [霍达]) (Z-Library).zip](https://github.com/gedoor/legado/files/11143975/Z-Library.zip)\r\n\r\n",
"\r\n```html\r\n<body id=\"fragmentId\">\r\n....\r\n\r\n</body>\r\n```",
"我想说更新了3.23.040420虽然内容可以显示了,但是很影响体验。\r\n这个bug是把同样的内容重复显示了。",
"![微信图片_20230405150159](https://user-images.githubusercontent.com/70877968/230005639-b2341db9-b727-4177-99f8-78565b6e34b7.jpg)\r\n![微信图片_20230405150208](https://user-images.githubusercontent.com/70877968/230005663-165cbc46-1c55-49fc-b8c5-98591f3d69ec.jpg)\r\n",
"@821938089 能来看看么",
"测试版修了"
] | 2023-04-03T09:43:46 | 2023-04-05T10:07:56 | 2023-04-04T03:36:31 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
不显示小说内容,用lithium可以正常看,我把不能看的这个后缀epub改成png上传上来了,好几次出现这种从zlibrary下下来的出现这种情况,我之前都以为是资源的问题。
![微信图片_20230403173513](https://user-images.githubusercontent.com/70877968/229473111-fb340d62-41a5-484f-8011-f3d6f156e289.jpg)
![微信图片_20230403173521](https://user-images.githubusercontent.com/70877968/229473120-d80b3c0e-f266-4fa9-b1b3-f28d3a53e5c5.jpg)
### 复现步骤 / How to reproduce
正常添加打开就不能正常显示
![Uploading 穆斯林的葬礼 (霍达 [霍达]) (Z-Library).png…]()
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.040118
### Android版本 / Android version
11
### 机型 / Model
xperia1 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2943/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2943/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2942 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2942/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2942/comments | https://api.github.com/repos/gedoor/legado/issues/2942/events | https://github.com/gedoor/legado/issues/2942 | 1,651,369,394 | I_kwDOCzQSM85ibeWy | 2,942 | 正版书源购买成功后能否实现自动刷新目录以及当前章节内容 | {
"login": "Glavor",
"id": 32591808,
"node_id": "MDQ6VXNlcjMyNTkxODA4",
"avatar_url": "https://avatars.githubusercontent.com/u/32591808?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Glavor",
"html_url": "https://github.com/Glavor",
"followers_url": "https://api.github.com/users/Glavor/followers",
"following_url": "https://api.github.com/users/Glavor/following{/other_user}",
"gists_url": "https://api.github.com/users/Glavor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Glavor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Glavor/subscriptions",
"organizations_url": "https://api.github.com/users/Glavor/orgs",
"repos_url": "https://api.github.com/users/Glavor/repos",
"events_url": "https://api.github.com/users/Glavor/events{/privacy}",
"received_events_url": "https://api.github.com/users/Glavor/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"ok",
"我改成js返回true就刷新目录和正文"
] | 2023-04-03T05:39:02 | 2023-04-04T03:22:55 | 2023-04-04T03:22:55 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
正版书源购买成功后可以在购买操作的 js 代码内实现自动刷新目录以及当前章节内容。
### 期望实现方式 / How to implement
```
...
var option = { method: "POST", body: JSON.stringify(body) };
var url = "https://weread.qq.com/web/pay/buyChapters," + JSON.stringify(option);
var rep = JSON.parse(java.ajax(url));
rep.succ ? java.longToast(`购买成功!\n价格 ${rep.price} 余额 ${rep.balance}`) : java.longToast("购买失败!");
```
这是我自己写的书源的购买操作的一部分,能否在判定购买成功后通过调用函数或其他方式实现自动刷新目录以及当前章节内容。
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2942/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2942/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2941 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2941/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2941/comments | https://api.github.com/repos/gedoor/legado/issues/2941/events | https://github.com/gedoor/legado/pull/2941 | 1,651,348,244 | PR_kwDOCzQSM85Nc8R6 | 2,941 | Bump org.apache.commons:commons-compress from 1.22 to 1.23.0 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [
"@dependabot ignore this minor version",
"OK, I won't notify you about version 1.23.x again, unless you re-open this PR. 😢"
] | 2023-04-03T05:12:41 | 2023-04-03T06:28:36 | 2023-04-03T06:28:31 | CONTRIBUTOR | null | Bumps org.apache.commons:commons-compress from 1.22 to 1.23.0.
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-compress&package-manager=gradle&previous-version=1.22&new-version=1.23.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2941/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2941/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2941",
"html_url": "https://github.com/gedoor/legado/pull/2941",
"diff_url": "https://github.com/gedoor/legado/pull/2941.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2941.patch",
"merged_at": null
} | true |
https://api.github.com/repos/gedoor/legado/issues/2940 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2940/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2940/comments | https://api.github.com/repos/gedoor/legado/issues/2940/events | https://github.com/gedoor/legado/pull/2940 | 1,651,345,677 | PR_kwDOCzQSM85Nc7ta | 2,940 | Bump com.android.tools:desugar_jdk_libs_nio from 2.0.2 to 2.0.3 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-04-03T05:10:26 | 2023-04-03T09:40:13 | 2023-04-03T09:40:03 | CONTRIBUTOR | null | Bumps [com.android.tools:desugar_jdk_libs_nio](https://github.com/google/desugar_jdk_libs) from 2.0.2 to 2.0.3.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/google/desugar_jdk_libs/blob/master/CHANGELOG.md">com.android.tools:desugar_jdk_libs_nio's changelog</a>.</em></p>
<blockquote>
<h2>Version 2.0.3 <em>(2023-03-29)</em></h2>
<ul>
<li>Improved lint information including fields.</li>
<li>Update to Android U APIs.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/google/desugar_jdk_libs/commits">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.android.tools:desugar_jdk_libs_nio&package-manager=gradle&previous-version=2.0.2&new-version=2.0.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2940/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2940/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2940",
"html_url": "https://github.com/gedoor/legado/pull/2940",
"diff_url": "https://github.com/gedoor/legado/pull/2940.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2940.patch",
"merged_at": "2023-04-03T09:40:03"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2939 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2939/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2939/comments | https://api.github.com/repos/gedoor/legado/issues/2939/events | https://github.com/gedoor/legado/issues/2939 | 1,651,317,236 | I_kwDOCzQSM85ibRn0 | 2,939 | 图片 img 的 src 链接获取错误 | {
"login": "Glavor",
"id": 32591808,
"node_id": "MDQ6VXNlcjMyNTkxODA4",
"avatar_url": "https://avatars.githubusercontent.com/u/32591808?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Glavor",
"html_url": "https://github.com/Glavor",
"followers_url": "https://api.github.com/users/Glavor/followers",
"following_url": "https://api.github.com/users/Glavor/following{/other_user}",
"gists_url": "https://api.github.com/users/Glavor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Glavor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Glavor/subscriptions",
"organizations_url": "https://api.github.com/users/Glavor/orgs",
"repos_url": "https://api.github.com/users/Glavor/repos",
"events_url": "https://api.github.com/users/Glavor/events{/privacy}",
"received_events_url": "https://api.github.com/users/Glavor/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"阅读的图片标签匹配比较宽松,有可能会出错,你可以先自己处理一下\r\n\r\n参考:\r\n```js\r\nimg@src\r\n@js:\r\nresult.split(\"\\n\").map(src => `<img src=\"${src}\">`).join(\"\\n\")\r\n```"
] | 2023-04-03T04:39:48 | 2023-04-04T03:22:40 | 2023-04-04T03:22:40 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
原始内容:
```
<img class="wr_img" wco="365" alt src="https://res.weread.qq.com/wrepub/CB_695233_logo.png" data-w="1280px" data-ratio="1.389" style="width:3.5em">
```
阅读处理后链接错误:
```
<img src="https://weread.qq.com/wrwebsimplenjlogic/1.389">
```
### 复现步骤 / How to reproduce
如上,手动把 `data-w="1280px" data-ratio="1.389"` 这两个去掉后就正确了
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.040118
### Android版本 / Android version
Android 13
### 机型 / Model
小米 11 Pro | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2939/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2939/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2938 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2938/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2938/comments | https://api.github.com/repos/gedoor/legado/issues/2938/events | https://github.com/gedoor/legado/pull/2938 | 1,651,183,652 | PR_kwDOCzQSM85NcZJs | 2,938 | Bump cronet from 111.0.5563.115 to 112.0.5615.47 | {
"login": "gedoor",
"id": 22701807,
"node_id": "MDQ6VXNlcjIyNzAxODA3",
"avatar_url": "https://avatars.githubusercontent.com/u/22701807?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gedoor",
"html_url": "https://github.com/gedoor",
"followers_url": "https://api.github.com/users/gedoor/followers",
"following_url": "https://api.github.com/users/gedoor/following{/other_user}",
"gists_url": "https://api.github.com/users/gedoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gedoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gedoor/subscriptions",
"organizations_url": "https://api.github.com/users/gedoor/orgs",
"repos_url": "https://api.github.com/users/gedoor/repos",
"events_url": "https://api.github.com/users/gedoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/gedoor/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-04-03T01:32:11 | 2023-04-03T09:39:51 | 2023-04-03T09:39:50 | OWNER | null | Changes in the [Git log](https://chromium.googlesource.com/chromium/src/+log/111.0.5563.115..112.0.5615.47) | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2938/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2938/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2938",
"html_url": "https://github.com/gedoor/legado/pull/2938",
"diff_url": "https://github.com/gedoor/legado/pull/2938.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2938.patch",
"merged_at": "2023-04-03T09:39:50"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2937 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2937/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2937/comments | https://api.github.com/repos/gedoor/legado/issues/2937/events | https://github.com/gedoor/legado/issues/2937 | 1,650,910,194 | I_kwDOCzQSM85iZuPy | 2,937 | 将下载的单章小说合并成txt并导出 | {
"login": "wwchun1314",
"id": 13567851,
"node_id": "MDQ6VXNlcjEzNTY3ODUx",
"avatar_url": "https://avatars.githubusercontent.com/u/13567851?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/wwchun1314",
"html_url": "https://github.com/wwchun1314",
"followers_url": "https://api.github.com/users/wwchun1314/followers",
"following_url": "https://api.github.com/users/wwchun1314/following{/other_user}",
"gists_url": "https://api.github.com/users/wwchun1314/gists{/gist_id}",
"starred_url": "https://api.github.com/users/wwchun1314/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wwchun1314/subscriptions",
"organizations_url": "https://api.github.com/users/wwchun1314/orgs",
"repos_url": "https://api.github.com/users/wwchun1314/repos",
"events_url": "https://api.github.com/users/wwchun1314/events{/privacy}",
"received_events_url": "https://api.github.com/users/wwchun1314/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"有这个功能,书架右上角三点里面有个缓存导出"
] | 2023-04-02T11:26:38 | 2023-04-03T03:26:34 | 2023-04-03T03:26:34 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
将下载的单章小说合并成txt并导出
### 期望实现方式 / How to implement
将下载的单章小说合并成txt并导出
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2937/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2937/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2935 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2935/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2935/comments | https://api.github.com/repos/gedoor/legado/issues/2935/events | https://github.com/gedoor/legado/issues/2935 | 1,650,613,103 | I_kwDOCzQSM85iYltv | 2,935 | Possibility to use opds catalogues | {
"login": "Rorschach1010",
"id": 45569353,
"node_id": "MDQ6VXNlcjQ1NTY5MzUz",
"avatar_url": "https://avatars.githubusercontent.com/u/45569353?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Rorschach1010",
"html_url": "https://github.com/Rorschach1010",
"followers_url": "https://api.github.com/users/Rorschach1010/followers",
"following_url": "https://api.github.com/users/Rorschach1010/following{/other_user}",
"gists_url": "https://api.github.com/users/Rorschach1010/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Rorschach1010/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Rorschach1010/subscriptions",
"organizations_url": "https://api.github.com/users/Rorschach1010/orgs",
"repos_url": "https://api.github.com/users/Rorschach1010/repos",
"events_url": "https://api.github.com/users/Rorschach1010/events{/privacy}",
"received_events_url": "https://api.github.com/users/Rorschach1010/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [
"legado only supports http protocol.\r\nWriting proper rules may be work for cailbre web.",
"Since I don't have a domain and don't use a reverse proxy, I use only the http protocol. So technically it should work.\n\nThe thing is, I can login within the app but I can't download the books so that the book is in my legado library with all the tags (author, series, Publisher...).\n\nMost of the in-app help is only in Chinese so I'm not sure if I'm missing something. Is there an English guide or wiki somewhere?",
"Do yoy know [CSS selector](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors) Xpath JsonPath?\r\nlegado use them to get elements from http response.\r\nuse `@` to extract text from elements.\r\n\r\n***\r\n```html\r\n<div class=\"bookList>\r\n <div class=\"book\">\r\n <div class=\"name\">BookName</div>\r\n ...\r\n </div>\r\n <div class=\"book\">\r\n ...\r\n</div>\r\n``` \r\n> `.bookList` extract all book elements\r\n`.name@text` extract its innerText `BookName`\r\n\r\n```json\r\n{\r\n\"books\": [\r\n {\"name\": \"bookName\"},\r\n ...\r\n ]\r\n}\r\n```\r\n> `$.books[*]` all bookItem\r\n`$.name` bookItem name `bookName`\r\n\r\n\r\nI do not know how cailbreWeb server response looks like.\r\nSo may be i can help if you show me the response throw network tab of browser devtools. Or you just do it.\r\n\r\n```json\r\n{\r\n \"bookSourceName\": \"CailbreWeb\",\r\n \"bookSourceType\": 0,\r\n \"bookSourceUrl\": \"<protocol>://<your server ip>\",\r\n \"customOrder\": 0,\r\n \"enabled\": true,\r\n \"enabledCookieJar\": true,\r\n \"enabledExplore\": true,\r\n \"enabledReview\": false,\r\n \"lastUpdateTime\": 0,\r\n \"respondTime\": 180000,\r\n \"ruleBookInfo\": {},\r\n \"ruleContent\": {},\r\n \"ruleExplore\": {},\r\n \"ruleReview\": {},\r\n \"ruleSearch\": {\r\n \"bookList\": \"selector which can extract book elements\",\r\n \"name\": \"selector which can extract bookName\"\r\n },\r\n \"ruleToc\": {},\r\n \"searchUrl\": \"<searchEntry>, {\\n \\\"body\\\": \\\"${key}\\\",\\n \\\"method\\\": \\\"POST\\\",\\n}\",\r\n \"weight\": 0\r\n}\r\n```",
" if you want to download file from server\r\nset source type to `File`\r\n`downloadUrlRule` extract file download urls\r\n"
] | 2023-04-01T19:32:27 | 2023-04-04T03:20:38 | 2023-04-02T06:14:37 | NONE | null | I have a calibre server and a calibre Web Server running. Both can be reached via the opds API.
Legado doesn't seem to be able to connect to opds. I tried the "add url" option but it says error.
Then I tried the source management. Seems like I can login through WebView inside legado but I couldn't download my books directly into legado.
Am I doing something wrong or is it not possible right now? | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2935/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2935/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2934 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2934/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2934/comments | https://api.github.com/repos/gedoor/legado/issues/2934/events | https://github.com/gedoor/legado/issues/2934 | 1,650,460,305 | I_kwDOCzQSM85iYAaR | 2,934 | 能有对特殊标记的txt的小说特殊解析吗? | {
"login": "TingTing1990",
"id": 51083586,
"node_id": "MDQ6VXNlcjUxMDgzNTg2",
"avatar_url": "https://avatars.githubusercontent.com/u/51083586?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/TingTing1990",
"html_url": "https://github.com/TingTing1990",
"followers_url": "https://api.github.com/users/TingTing1990/followers",
"following_url": "https://api.github.com/users/TingTing1990/following{/other_user}",
"gists_url": "https://api.github.com/users/TingTing1990/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TingTing1990/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TingTing1990/subscriptions",
"organizations_url": "https://api.github.com/users/TingTing1990/orgs",
"repos_url": "https://api.github.com/users/TingTing1990/repos",
"events_url": "https://api.github.com/users/TingTing1990/events{/privacy}",
"received_events_url": "https://api.github.com/users/TingTing1990/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527793356,
"node_id": "MDU6TGFiZWwyNTI3NzkzMzU2",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%BF%BD%E7%95%A5",
"name": "忽略",
"color": "AAAAAA",
"default": false,
"description": "与本工程无关"
}
] | open | false | null | [] | null | [
"大佬为啥打了忽略标签🤣,其实主要是为了统一给txt文本的小说在文件内定义元数据的方式",
"格式太小众了,你转成epub再用阅读打开就好"
] | 2023-04-01T12:51:43 | 2023-04-12T03:15:34 | null | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
这个是iOS上的一个阅读软件,有它自己的标记开放格式进行解析,类似MD,包括元数据、封面、目录等的自定义
https://www.ambibma.com/web/zs/
希望能增加对此格式的标记进行解析,在安卓上也希望能用到,谢谢!
### 期望实现方式 / How to implement
对特殊的标记(格式)的小说进行特殊解析
### 附加信息 / Additions
附上一个含有此标记格式的小说下载链接:
https://send.vis.ee/download/6c054f36c3dd036e/#r2qgIfG2YIGZsIackJQrOQ
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2934/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2934/timeline | null | null | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2933 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2933/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2933/comments | https://api.github.com/repos/gedoor/legado/issues/2933/events | https://github.com/gedoor/legado/issues/2933 | 1,650,388,967 | I_kwDOCzQSM85iXu_n | 2,933 | 书源以有新章节,APP无法获取、阅读 | {
"login": "zhangweildlh",
"id": 62597291,
"node_id": "MDQ6VXNlcjYyNTk3Mjkx",
"avatar_url": "https://avatars.githubusercontent.com/u/62597291?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zhangweildlh",
"html_url": "https://github.com/zhangweildlh",
"followers_url": "https://api.github.com/users/zhangweildlh/followers",
"following_url": "https://api.github.com/users/zhangweildlh/following{/other_user}",
"gists_url": "https://api.github.com/users/zhangweildlh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zhangweildlh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zhangweildlh/subscriptions",
"organizations_url": "https://api.github.com/users/zhangweildlh/orgs",
"repos_url": "https://api.github.com/users/zhangweildlh/repos",
"events_url": "https://api.github.com/users/zhangweildlh/events{/privacy}",
"received_events_url": "https://api.github.com/users/zhangweildlh/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527793356,
"node_id": "MDU6TGFiZWwyNTI3NzkzMzU2",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%BF%BD%E7%95%A5",
"name": "忽略",
"color": "AAAAAA",
"default": false,
"description": "与本工程无关"
}
] | closed | false | null | [] | null | [
"我这里有第344章,不过没有正文",
"那是假更新,检查下源站吧。可以考虑勾上加载目录",
"> 那是假更新,检查下源站吧。可以考虑勾上加载目录\r\n\r\n您好,我勾上“加载目录”后,问题依旧!",
"你没考虑过网站的问题?"
] | 2023-04-01T09:43:15 | 2023-04-01T10:48:02 | 2023-04-01T10:27:19 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
当前已选择的源,网络端已更新了新章节。但在书架、阅读界面中无法刷新出新章节。
### 复现步骤 / How to reproduce
在换源搜索中,发现当前已选择的源,网络端已更新了新章节。
[比如《灵境行者》书源为“读书阁网1”,网络已更新到第344章]
但在书架界面、阅读界面,无论是下拉刷新;或者阅读界面 点右上角三个小点,选择“目录更新”
都停留在第第343章!
![1](https://user-images.githubusercontent.com/62597291/229278579-46adec93-5b9f-458c-88e3-d457343bb94a.jpg)
![2](https://user-images.githubusercontent.com/62597291/229278591-a10aa1ac-6c15-4000-8307-87cb223ef60b.jpg)
![3](https://user-images.githubusercontent.com/62597291/229278595-dfa99fa8-2967-4cdb-bac1-927ff69f197b.jpg)
![4](https://user-images.githubusercontent.com/62597291/229278598-c12b526b-6512-4b11-ad76-b38c4383035c.jpg)
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.032923
### Android版本 / Android version
Android 10
### 机型 / Model
CC9e | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2933/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2933/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2932 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2932/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2932/comments | https://api.github.com/repos/gedoor/legado/issues/2932/events | https://github.com/gedoor/legado/issues/2932 | 1,647,775,115 | I_kwDOCzQSM85iNw2L | 2,932 | google版的测试包 安装时解析失败 | {
"login": "BangClieCC",
"id": 57783996,
"node_id": "MDQ6VXNlcjU3NzgzOTk2",
"avatar_url": "https://avatars.githubusercontent.com/u/57783996?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/BangClieCC",
"html_url": "https://github.com/BangClieCC",
"followers_url": "https://api.github.com/users/BangClieCC/followers",
"following_url": "https://api.github.com/users/BangClieCC/following{/other_user}",
"gists_url": "https://api.github.com/users/BangClieCC/gists{/gist_id}",
"starred_url": "https://api.github.com/users/BangClieCC/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/BangClieCC/subscriptions",
"organizations_url": "https://api.github.com/users/BangClieCC/orgs",
"repos_url": "https://api.github.com/users/BangClieCC/repos",
"events_url": "https://api.github.com/users/BangClieCC/events{/privacy}",
"received_events_url": "https://api.github.com/users/BangClieCC/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"google版本我调到最低版本8.0了",
"好的,谢谢作者!"
] | 2023-03-30T14:44:38 | 2023-03-31T12:18:40 | 2023-03-31T12:18:40 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
安卓7.1.1 google版的测试包 解析失败
### 复现步骤 / How to reproduce
安卓7.1.1 google版的测试包 安装时手机提示安装包解析失败
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.2303302112
### Android版本 / Android version
7.1.1
### 机型 / Model
vivoX7plus | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2932/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2932/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2931 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2931/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2931/comments | https://api.github.com/repos/gedoor/legado/issues/2931/events | https://github.com/gedoor/legado/issues/2931 | 1,647,155,581 | I_kwDOCzQSM85iLZl9 | 2,931 | 榜单列表能否显示字数? | {
"login": "focus2846",
"id": 6268423,
"node_id": "MDQ6VXNlcjYyNjg0MjM=",
"avatar_url": "https://avatars.githubusercontent.com/u/6268423?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/focus2846",
"html_url": "https://github.com/focus2846",
"followers_url": "https://api.github.com/users/focus2846/followers",
"following_url": "https://api.github.com/users/focus2846/following{/other_user}",
"gists_url": "https://api.github.com/users/focus2846/gists{/gist_id}",
"starred_url": "https://api.github.com/users/focus2846/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/focus2846/subscriptions",
"organizations_url": "https://api.github.com/users/focus2846/orgs",
"repos_url": "https://api.github.com/users/focus2846/repos",
"events_url": "https://api.github.com/users/focus2846/events{/privacy}",
"received_events_url": "https://api.github.com/users/focus2846/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527793356,
"node_id": "MDU6TGFiZWwyNTI3NzkzMzU2",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%BF%BD%E7%95%A5",
"name": "忽略",
"color": "AAAAAA",
"default": false,
"description": "与本工程无关"
}
] | closed | false | null | [] | null | [
"没有必要,徒增很多不必要的请求。\r\n源在书籍展示界面没有提供这个数据。如果需要这个可以在源里用js获取"
] | 2023-03-30T08:29:20 | 2023-03-30T12:37:18 | 2023-03-30T12:37:17 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
榜单列表能否显示字数?现在要点击进去才看得到
### 期望实现方式 / How to implement
榜单列表能否显示字数
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2931/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2931/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2930 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2930/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2930/comments | https://api.github.com/repos/gedoor/legado/issues/2930/events | https://github.com/gedoor/legado/pull/2930 | 1,647,089,903 | PR_kwDOCzQSM85NO92k | 2,930 | 滚动阅读时,多指触摸造成闪烁的问题 | {
"login": "jaredtech",
"id": 24695209,
"node_id": "MDQ6VXNlcjI0Njk1MjA5",
"avatar_url": "https://avatars.githubusercontent.com/u/24695209?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jaredtech",
"html_url": "https://github.com/jaredtech",
"followers_url": "https://api.github.com/users/jaredtech/followers",
"following_url": "https://api.github.com/users/jaredtech/following{/other_user}",
"gists_url": "https://api.github.com/users/jaredtech/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jaredtech/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jaredtech/subscriptions",
"organizations_url": "https://api.github.com/users/jaredtech/orgs",
"repos_url": "https://api.github.com/users/jaredtech/repos",
"events_url": "https://api.github.com/users/jaredtech/events{/privacy}",
"received_events_url": "https://api.github.com/users/jaredtech/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-03-30T07:45:56 | 2023-03-30T07:47:56 | 2023-03-30T07:47:56 | CONTRIBUTOR | null | 处理滚动阅读时多点触摸产生的闪烁问题 #2913 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2930/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2930/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2930",
"html_url": "https://github.com/gedoor/legado/pull/2930",
"diff_url": "https://github.com/gedoor/legado/pull/2930.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2930.patch",
"merged_at": "2023-03-30T07:47:55"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2929 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2929/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2929/comments | https://api.github.com/repos/gedoor/legado/issues/2929/events | https://github.com/gedoor/legado/issues/2929 | 1,646,977,923 | I_kwDOCzQSM85iKuOD | 2,929 | 分组下的所有书禁止更新 | {
"login": "XiaoXiaoYanHe",
"id": 36267320,
"node_id": "MDQ6VXNlcjM2MjY3MzIw",
"avatar_url": "https://avatars.githubusercontent.com/u/36267320?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/XiaoXiaoYanHe",
"html_url": "https://github.com/XiaoXiaoYanHe",
"followers_url": "https://api.github.com/users/XiaoXiaoYanHe/followers",
"following_url": "https://api.github.com/users/XiaoXiaoYanHe/following{/other_user}",
"gists_url": "https://api.github.com/users/XiaoXiaoYanHe/gists{/gist_id}",
"starred_url": "https://api.github.com/users/XiaoXiaoYanHe/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/XiaoXiaoYanHe/subscriptions",
"organizations_url": "https://api.github.com/users/XiaoXiaoYanHe/orgs",
"repos_url": "https://api.github.com/users/XiaoXiaoYanHe/repos",
"events_url": "https://api.github.com/users/XiaoXiaoYanHe/events{/privacy}",
"received_events_url": "https://api.github.com/users/XiaoXiaoYanHe/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"ok"
] | 2023-03-30T06:10:03 | 2023-04-01T09:32:37 | 2023-04-01T09:32:37 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
主要针对“完本”“回收”分组,滑到这俩分组小心翼翼的,偶尔两三次划拉到更新浑身难受。
“书架管理”的批量禁止能用,自动更好
### 期望实现方式 / How to implement
加入分组的书改为禁止更新 或者 禁止分组的下拉更新动作
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2929/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2929/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2928 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2928/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2928/comments | https://api.github.com/repos/gedoor/legado/issues/2928/events | https://github.com/gedoor/legado/issues/2928 | 1,644,916,526 | I_kwDOCzQSM85iC28u | 2,928 | 能否在小说换书源时给书源最新章节大小排序,然后添加最新章节字数大小的筛选设置 | {
"login": "javacainiaoa",
"id": 46554798,
"node_id": "MDQ6VXNlcjQ2NTU0Nzk4",
"avatar_url": "https://avatars.githubusercontent.com/u/46554798?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/javacainiaoa",
"html_url": "https://github.com/javacainiaoa",
"followers_url": "https://api.github.com/users/javacainiaoa/followers",
"following_url": "https://api.github.com/users/javacainiaoa/following{/other_user}",
"gists_url": "https://api.github.com/users/javacainiaoa/gists{/gist_id}",
"starred_url": "https://api.github.com/users/javacainiaoa/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/javacainiaoa/subscriptions",
"organizations_url": "https://api.github.com/users/javacainiaoa/orgs",
"repos_url": "https://api.github.com/users/javacainiaoa/repos",
"events_url": "https://api.github.com/users/javacainiaoa/events{/privacy}",
"received_events_url": "https://api.github.com/users/javacainiaoa/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | true | null | [] | null | [
"感觉不好实现,要在线字数判断",
"> 感觉不好实现,要在线字数判断\r\n\r\n实现确实比较麻烦,要找到每个书源的这本书的最新章节,然后获取字数判断,会比较耗时",
"Duplicate of #2973 "
] | 2023-03-29T02:08:04 | 2023-04-17T12:02:45 | 2023-04-17T12:02:33 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
在小说换书源时,由于小说源过多,而且良莠不齐,可以加上最新章节的大小排序,自动找到有最新章节的小说源,加上最新章节的字数筛选可以筛选掉那些更新的假的最新章节,或者只更新了一个章节名的
### 期望实现方式 / How to implement
在换小说源的右上角添加筛选的设置和排序的设置,最好能支持js表达式筛选
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
![Screenshot_2023-03-29-10-06-41-069_io legado app](https://user-images.githubusercontent.com/46554798/228407933-9b809696-75a6-4230-be43-dc5a41670849.jpg)
| {
"url": "https://api.github.com/repos/gedoor/legado/issues/2928/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2928/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2927 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2927/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2927/comments | https://api.github.com/repos/gedoor/legado/issues/2927/events | https://github.com/gedoor/legado/issues/2927 | 1,644,891,519 | I_kwDOCzQSM85iCw1_ | 2,927 | 能否添加音乐通知栏 | {
"login": "bwmgd",
"id": 40416231,
"node_id": "MDQ6VXNlcjQwNDE2MjMx",
"avatar_url": "https://avatars.githubusercontent.com/u/40416231?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bwmgd",
"html_url": "https://github.com/bwmgd",
"followers_url": "https://api.github.com/users/bwmgd/followers",
"following_url": "https://api.github.com/users/bwmgd/following{/other_user}",
"gists_url": "https://api.github.com/users/bwmgd/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bwmgd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bwmgd/subscriptions",
"organizations_url": "https://api.github.com/users/bwmgd/orgs",
"repos_url": "https://api.github.com/users/bwmgd/repos",
"events_url": "https://api.github.com/users/bwmgd/events{/privacy}",
"received_events_url": "https://api.github.com/users/bwmgd/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"新版本已经有了通知栏"
] | 2023-03-29T01:31:08 | 2023-04-24T03:11:21 | 2023-04-24T03:11:21 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
可以控制朗读的章节和段落
以及有声书的进度条和章节
### 期望实现方式 / How to implement
类似喜马拉雅和QQ音乐的音乐通知栏
### 附加信息 / Additions
可以同时添加桌面小部件
### 效果演示 / Demo
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2927/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2927/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2926 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2926/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2926/comments | https://api.github.com/repos/gedoor/legado/issues/2926/events | https://github.com/gedoor/legado/issues/2926 | 1,644,423,709 | I_kwDOCzQSM85iA-od | 2,926 | 最新版闪退 | {
"login": "sartonsh",
"id": 74254385,
"node_id": "MDQ6VXNlcjc0MjU0Mzg1",
"avatar_url": "https://avatars.githubusercontent.com/u/74254385?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/sartonsh",
"html_url": "https://github.com/sartonsh",
"followers_url": "https://api.github.com/users/sartonsh/followers",
"following_url": "https://api.github.com/users/sartonsh/following{/other_user}",
"gists_url": "https://api.github.com/users/sartonsh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/sartonsh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/sartonsh/subscriptions",
"organizations_url": "https://api.github.com/users/sartonsh/orgs",
"repos_url": "https://api.github.com/users/sartonsh/repos",
"events_url": "https://api.github.com/users/sartonsh/events{/privacy}",
"received_events_url": "https://api.github.com/users/sartonsh/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"收到\n\nsartonsh ***@***.***> 于 2023年3月29日周三 01:57写道:\n\n> 确认 / Assignments\n>\n> - 搜索现有issues,不存在相似或相关的issue / No similar or related issues\n> - 最新测试版 <https://kunfei.lanzoui.com/b0f810h4b>依然存在此问题 / Latest beta\n> app does not work\n> - 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is\n> not touched by hook frameworks, plugins etc\n>\n> 问题描述 / Describe Bugs\n>\n> 1.最新版安装后闪退,打不开程序。清除数据或者重新安装后可用。\n> 2.不能恢复备份。webdev会显示没有配置,本地备份会报错。\n> 3.换源时会闪退。\n> 4.某些书源不能使用。\n> 复现步骤 / How to reproduce\n>\n> 1.安装新版后闪退,打不开软件,没有日志。\n> 2.不能恢复备份3.换源会闪退\n> 4.某些书源不能使用\n> 书源{\n> \"bookSourceComment\": \"\",\n> \"bookSourceGroup\": \"☘️ 正版\",\n> \"bookSourceName\": \"☘️ 17K小说\",\n> \"bookSourceType\": 0,\n> \"bookSourceUrl\": \"https://www.17k.com\",\n> \"bookUrlPattern\": \"\",\n> \"customOrder\": 0,\n> \"enabled\": true,\n> \"enabledCookieJar\": false,\n> \"enabledExplore\": true,\n> \"enabledReview\": false,\n> \"exploreUrl\": \"[{\"title\":\"✵ 男 ♂ 榜\n> ✵\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"总收藏\",\"url\":\"/all/book/2_0_0_0_0_7_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"月收藏\",\"url\":\"/all/book/2_0_0_0_0_6_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"周收藏\",\"url\":\"/all/book/2_0_0_0_0_5_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"总点击\",\"url\":\"/all/book/2_0_0_0_0_4_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"月点击\",\"url\":\"/all/book/2_0_0_0_0_3_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"周点击\",\"url\":\"/all/book/2_0_0_0_0_2_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"总字数\",\"url\":\"/all/book/2_0_0_0_0_1_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 男 ♂ 生\n> ✵\",\"url\":\"/all/book/2_0_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"✵\n> 玄幻奇幻\n> ✵\",\"url\":\"/all/book/2_21_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"异世争霸\",\"url\":\"/all/book/2_21_115_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"魔法校园\",\"url\":\"/all/book/2_21_122_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"领主贵族\",\"url\":\"/all/book/2_21_123_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"西方奇幻\",\"url\":\"/all/book/2_21_1_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"东方玄幻\",\"url\":\"/all/book/2_21_8_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"异世大陆\",\"url\":\"/all/book/2_21_83_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"异术超能\",\"url\":\"/all/book/2_21_84_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 武侠仙侠\n> ✵\",\"url\":\"/all/book/2_24_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"洪荒封神\",\"url\":\"/all/book/2_24_85_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"现代异侠\",\"url\":\"/all/book/2_24_96_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"历史武侠\",\"url\":\"/all/book/2_24_124_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"奇幻修真\",\"url\":\"/all/book/2_24_82_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"国术古武\",\"url\":\"/all/book/2_24_125_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"传统武侠\",\"url\":\"/all/book/2_24_2_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"现代修真\",\"url\":\"/all/book/2_24_81_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"古典仙侠\",\"url\":\"/all/book/2_24_9_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 都市小说\n> ✵\",\"url\":\"/all/book/2_3_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"都市生活\",\"url\":\"/all/book/2_3_3_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"都市异能\",\"url\":\"/all/book/2_3_87_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"都市重生\",\"url\":\"/all/book/2_3_89_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"职场励志\",\"url\":\"/all/book/2_3_90_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"现实题材\",\"url\":\"/all/book/2_3_91_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"娱乐明星\",\"url\":\"/all/book/2_3_116_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"都市激战\",\"url\":\"/all/book/2_3_92_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"商业大亨\",\"url\":\"/all/book/2_3_117_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"校园风云\",\"url\":\"/all/book/2_3_118_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"乡村乡土\",\"url\":\"/all/book/2_3_119_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 历史军事\n> ✵\",\"url\":\"/all/book/2_22_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"历史穿越\",\"url\":\"/all/book/2_22_4_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"架空历史\",\"url\":\"/all/book/2_22_93_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"战争幻想\",\"url\":\"/all/book/2_22_11_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"军旅生涯\",\"url\":\"/all/book/2_22_94_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"历史传记\",\"url\":\"/all/book/2_22_120_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"战史风云\",\"url\":\"/all/book/2_22_126_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"谍战特工\",\"url\":\"/all/book/2_22_127_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 游戏竞技\n> ✵\",\"url\":\"/all/book/2_23_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"虚拟网游\",\"url\":\"/all/book/2_23_5_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"电子竞技\",\"url\":\"/all/book/2_23_12_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"游戏生涯\",\"url\":\"/all/book/2_23_14_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"篮球风云\",\"url\":\"/all/book/2_23_97_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"天下足球\",\"url\":\"/all/book/2_23_98_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"棋牌桌游\",\"url\":\"/all/book/2_23_99_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"游戏异界\",\"url\":\"/all/book/2_23_121_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"体育竞技\",\"url\":\"/all/book/2_23_100_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 科幻末世\n> ✵\",\"url\":\"/all/book/2_14_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"末世危机\",\"url\":\"/all/book/2_14_128_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"进化变异\",\"url\":\"/all/book/2_14_129_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"时空穿梭\",\"url\":\"/all/book/2_14_130_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"未来幻想\",\"url\":\"/all/book/2_14_6_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"古武机甲\",\"url\":\"/all/book/2_14_131_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"星际战争\",\"url\":\"/all/book/2_14_95_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"✵\n> 悬疑推理\n> ✵\",\"url\":\"/all/book/2_29_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"民间奇谈\",\"url\":\"/all/book/2_29_179_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"恐怖悬疑\",\"url\":\"/all/book/2_29_180_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"侦探推理\",\"url\":\"/all/book/2_29_181_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"探险揭秘\",\"url\":\"/all/book/2_29_182_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 轻小说\n> ✵\",\"url\":\"/all/book/2_30_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"搞笑幽默\",\"url\":\"/all/book/2_30_183_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"男生同人\",\"url\":\"/all/book/2_30_184_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"宅系小说\",\"url\":\"/all/book/2_30_185_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"萌系小说\",\"url\":\"/all/book/2_30_186_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"灵魂转换\",\"url\":\"/all/book/2_30_187_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 女 ♀ 榜\n> ✵\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"总收藏\",\"url\":\"/all/book/3_0_0_0_0_7_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"月收藏\",\"url\":\"/all/book/3_0_0_0_0_6_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"周收藏\",\"url\":\"/all/book/3_0_0_0_0_5_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"总点击\",\"url\":\"/all/book/3_0_0_0_0_4_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"月点击\",\"url\":\"/all/book/3_0_0_0_0_3_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"周点击\",\"url\":\"/all/book/3_0_0_0_0_2_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"总字数\",\"url\":\"/all/book/3_0_0_0_0_1_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 女 ♀ 生\n> ✵\",\"url\":\"/all/book/3_0_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"✵\n> 都市言情\n> ✵\",\"url\":\"/all/book/3_17_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"总裁豪门\",\"url\":\"/all/book/3_17_134_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"游戏情缘\",\"url\":\"/all/book/3_17_135_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"都市情缘\",\"url\":\"/all/book/3_17_136_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"现代重生\",\"url\":\"/all/book/3_17_166_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"娱乐明星\",\"url\":\"/all/book/3_17_167_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"民国旧影\",\"url\":\"/all/book/3_17_168_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"跨国情缘\",\"url\":\"/all/book/3_17_169_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"职场丽人\",\"url\":\"/all/book/3_17_16_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"婚恋爱情\",\"url\":\"/all/book/3_17_26_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"✵\n> 古装言情\n> ✵\",\"url\":\"/all/book/3_5_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"快意江湖\",\"url\":\"/all/book/3_5_132_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"架空历史\",\"url\":\"/all/book/3_5_133_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"古代重生\",\"url\":\"/all/book/3_5_139_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"前世今生\",\"url\":\"/all/book/3_5_140_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"经商种田\",\"url\":\"/all/book/3_5_165_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"宫廷贵族\",\"url\":\"/all/book/3_5_10_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"穿越时空\",\"url\":\"/all/book/3_5_22_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"家宅恩怨\",\"url\":\"/all/book/3_5_7_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 幻想言情\n> ✵\",\"url\":\"/all/book/3_18_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"玄幻仙侠\",\"url\":\"/all/book/3_18_137_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"异界魔法\",\"url\":\"/all/book/3_18_138_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"星际科幻\",\"url\":\"/all/book/3_18_170_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"灵异悬疑\",\"url\":\"/all/book/3_18_24_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"末世危机\",\"url\":\"/all/book/3_18_171_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"异能空间\",\"url\":\"/all/book/3_18_172_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"西方奇幻\",\"url\":\"/all/book/3_18_173_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"唯美纯爱\",\"url\":\"/all/book/3_18_437_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\\n{\"title\":\"✵\n> 浪漫青春\n> ✵\",\"url\":\"/all/book/3_20_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\\n{\"title\":\"网配快穿\",\"url\":\"/all/book/3_20_148_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"校园青春\",\"url\":\"/all/book/3_20_175_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"纯爱青春\",\"url\":\"/all/book/3_20_176_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\\n{\"title\":\"悲伤青春\",\"url\":\"/all/book/3_20_177_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.295}},\\n{\"title\":\"女生同人\",\"url\":\"/all/book/3_20_178_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.295}}]\",\n> \"header\": \"\",\n> \"lastUpdateTime\": 1666136268440,\n> \"loginUrl\": \"https://passport.17k.com/login\",\n> \"respondTime\": 39812,\n> \"ruleBookInfo\": {\n> \"author\": \".Author ***@***.***\",\n> \"coverUrl\": \"\",\n> \"init\": \"\",\n> \"intro\": \"\",\n> \"kind\": \"\",\n> \"lastChapter\": \"\",\n> \"name\": ***@***.***\",\n> \"tocUrl\": ***@***.*** <https://github.com/href>\",\n> \"wordCount\": \"\"\n> },\n> \"ruleContent\": {\n> \"content\": \".p ***@***.*** <https://github.com/html>\",\n> \"nextContentUrl\": \"\",\n> \"sourceRegex\": \"\",\n> \"webJs\": \"\"\n> },\n> \"ruleExplore\": {\n> \"author\": ***@***.***\",\n> \"bookList\": \".alltextlist\",\n> \"bookUrl\": ***@***.***\",\n> \"coverUrl\": ***@***.***\",\n> \"intro\": ***@***.***##(^|[。!?]+[”」)】]?)##$1\n> \",\n> \"kind\": ***@***.******@***.***##\\s.\n> *\", \"lastChapter\": ***@***.***##[\\((【].*?[求更谢乐发订合补加].\n>\n>\n>\n>\n>\n>\n> *?[】)\\)]\", \"name\": ***@***.***\", \"wordCount\": ***@***.***\" }, \"ruleReview\":\n> {}, \"ruleSearch\": { \"author\": \"author\", \"bookList\":\n> \".textlist!0\\n\\nresult.toArray().map(o=>{\\n var detail =\n> String(o.select('dt a').attr('href')).replace('//','https://');\\n var J =\n> org.jsoup.Jsoup.parse(java.ajax(detail));\\n return {\\n name: o.select('dt\n> a').text(),\\n author:String(o.select('.ls a').text()).replace('作者:',''),\\n\n> tags: String(o.select('.bq span:eq(1)').text()).replace('类别:',''),\\n num:\n> String(o.select('.bq span:eq(2)').text()).replace('字数:',''),\\n latest:\n> String(J.select('dl.NewsChapter a').last().text()).replace(/[\\((].*\n> [求更谢乐发订合补加].\n>\n>\n>\n>\n>\n>\n>\n>\n>\n>\n> *[)\\)]/,''),\\n intro:\n> String(o.select('li:eq(2)').text()).replace('简介:','').trim(),\\n cover:\n> o.select('img').attr('src'),\\n catalogUrl:\n> 'https://www.17k.com'+J.select('.read\n> <https://www.17k.com'+J.select('.read> a').attr('href')\\n }\\n});\\n\",\n> \"bookUrl\": \"catalogUrl\", \"coverUrl\": \"cover\", \"intro\": \"intro\", \"kind\":\n> \"tags\", \"lastChapter\": \"latest\", \"name\": \"name\", \"wordCount\": \"num\" },\n> \"ruleToc\": { \"chapterList\": \".Volume dd a\", \"chapterName\": \"text##[\\((【].*\n> ?[求更谢乐发订合补加].*?[】)\\)]\",\n> \"chapterUrl\": \"href\",\n> \"isVip\": ***@***.*** <https://github.com/js>\n> :result.select('span').hasClass('vip')\",\n> \"nextTocUrl\": \"\",\n> \"updateTime\": \"\"\n> },\n> \"searchUrl\": \"\n> https://search.17k.com/search.xhtml?c.q={{key}}&page={{page}}\",\n> \"weight\": 0\n> }\n> 这是调试是截图\n> [image: Screenshot_2023-03-29-01-29-45-690_阅读]\n> <https://user-images.githubusercontent.com/74254385/228326392-4c099ab9-0152-48fa-b2c5-fd323f46309a.png>\n> 确认 / Assignment\n>\n> - 已经提交复现所需要的附加资料 / Submit additions related with bugs\n>\n> 其他信息 / Additions\n>\n> *No response*\n> 日志提交 / Relevant log output\n>\n> *No response*\n> 阅读版本 / Legado version\n>\n> 3.22.032820\n> Android版本 / Android version\n>\n> 6\n> 机型 / Model\n>\n> sm919\n>\n> —\n> Reply to this email directly, view it on GitHub\n> <https://github.com/gedoor/legado/issues/2926>, or unsubscribe\n> <https://github.com/notifications/unsubscribe-auth/AFNGN35OOGUYQMEQBGCVM4TW6MQ7NANCNFSM6AAAAAAWK43BXY>\n> .\n> You are receiving this because you are subscribed to this thread.Message\n> ID: ***@***.***>\n>\n",
"试了下有些库不支持5.0和6.0了",
"恢复备份解决了,老系统该淘汰了",
"我试了下测试版,恢复备份还是有问题。webdev恢复会显示没有配置,本地恢复可以恢复。但杀掉后台重启程序会闪退,程序就打不开了。删除数据后可以打开程序,我试了下就填写webdev的账号,密码,然后杀后台重启也会闪退。",
"OK\r\n\r\nsartonsh ***@***.***> 于 2023年3月29日周三 20:24写道:\r\n\r\n>\r\n> 我试了下测试版,恢复备份还是有问题。webdev恢复会显示没有配置,本地恢复可以恢复。但杀掉后台重启程序会闪退,程序就打不开了。删除数据后可以打开程序,我试了下就填写webdev的账号,密码,然后杀后台重启也会闪退。\r\n>\r\n> —\r\n> Reply to this email directly, view it on GitHub\r\n> <https://github.com/gedoor/legado/issues/2926#issuecomment-1488506238>,\r\n> or unsubscribe\r\n> <https://github.com/notifications/unsubscribe-auth/AFNGN36YG2QNCFIZUNXMG2DW6QSY3ANCNFSM6AAAAAAWK43BXY>\r\n> .\r\n> You are receiving this because you commented.Message ID:\r\n> ***@***.***>\r\n>\r\n",
"最新版搞定了,谢谢大佬!"
] | 2023-03-28T17:56:58 | 2023-03-29T14:42:25 | 2023-03-29T14:42:25 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
1.最新版安装后闪退,打不开程序。清除数据或者重新安装后可用。
2.不能恢复备份。webdev会显示没有配置,本地备份会报错。
3.换源时会闪退。
4.某些书源不能使用。
### 复现步骤 / How to reproduce
1.安装新版后闪退,打不开软件,没有日志。
2.不能恢复备份
![Screenshot_2023-03-29-01-21-34-326_阅读](https://user-images.githubusercontent.com/74254385/228327142-bd925b2a-5167-4105-97a0-8bf847697e08.png)
![Screenshot_2023-03-29-01-21-37-831_阅读](https://user-images.githubusercontent.com/74254385/228327152-eb00041d-325b-42bc-be64-9dbaab23bba0.png)
3.换源会闪退
![Screenshot_2023-03-29-01-32-35-210_阅读](https://user-images.githubusercontent.com/74254385/228327261-82e71b16-675f-46c3-b08d-4cc2dcfec282.png)
4.某些书源不能使用
书源:
{
"bookSourceComment": "",
"bookSourceGroup": "☘️ 正版",
"bookSourceName": "☘️ 17K小说",
"bookSourceType": 0,
"bookSourceUrl": "https://www.17k.com",
"bookUrlPattern": "",
"customOrder": 0,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": true,
"enabledReview": false,
"exploreUrl": "[{\"title\":\"✵ 男 ♂ 榜 ✵\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"总收藏\",\"url\":\"/all/book/2_0_0_0_0_7_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月收藏\",\"url\":\"/all/book/2_0_0_0_0_6_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周收藏\",\"url\":\"/all/book/2_0_0_0_0_5_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总点击\",\"url\":\"/all/book/2_0_0_0_0_4_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击\",\"url\":\"/all/book/2_0_0_0_0_3_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击\",\"url\":\"/all/book/2_0_0_0_0_2_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总字数\",\"url\":\"/all/book/2_0_0_0_0_1_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 男 ♂ 生 ✵\",\"url\":\"/all/book/2_0_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"✵ 玄幻奇幻 ✵\",\"url\":\"/all/book/2_21_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"异世争霸\",\"url\":\"/all/book/2_21_115_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"魔法校园\",\"url\":\"/all/book/2_21_122_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"领主贵族\",\"url\":\"/all/book/2_21_123_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"西方奇幻\",\"url\":\"/all/book/2_21_1_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"东方玄幻\",\"url\":\"/all/book/2_21_8_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异世大陆\",\"url\":\"/all/book/2_21_83_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异术超能\",\"url\":\"/all/book/2_21_84_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 武侠仙侠 ✵\",\"url\":\"/all/book/2_24_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"洪荒封神\",\"url\":\"/all/book/2_24_85_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代异侠\",\"url\":\"/all/book/2_24_96_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史武侠\",\"url\":\"/all/book/2_24_124_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"奇幻修真\",\"url\":\"/all/book/2_24_82_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"国术古武\",\"url\":\"/all/book/2_24_125_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"传统武侠\",\"url\":\"/all/book/2_24_2_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代修真\",\"url\":\"/all/book/2_24_81_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"古典仙侠\",\"url\":\"/all/book/2_24_9_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 都市小说 ✵\",\"url\":\"/all/book/2_3_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"都市生活\",\"url\":\"/all/book/2_3_3_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市异能\",\"url\":\"/all/book/2_3_87_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市重生\",\"url\":\"/all/book/2_3_89_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"职场励志\",\"url\":\"/all/book/2_3_90_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现实题材\",\"url\":\"/all/book/2_3_91_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐明星\",\"url\":\"/all/book/2_3_116_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市激战\",\"url\":\"/all/book/2_3_92_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"商业大亨\",\"url\":\"/all/book/2_3_117_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园风云\",\"url\":\"/all/book/2_3_118_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"乡村乡土\",\"url\":\"/all/book/2_3_119_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 历史军事 ✵\",\"url\":\"/all/book/2_22_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"历史穿越\",\"url\":\"/all/book/2_22_4_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"架空历史\",\"url\":\"/all/book/2_22_93_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"战争幻想\",\"url\":\"/all/book/2_22_11_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"军旅生涯\",\"url\":\"/all/book/2_22_94_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"历史传记\",\"url\":\"/all/book/2_22_120_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"战史风云\",\"url\":\"/all/book/2_22_126_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"谍战特工\",\"url\":\"/all/book/2_22_127_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 游戏竞技 ✵\",\"url\":\"/all/book/2_23_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"虚拟网游\",\"url\":\"/all/book/2_23_5_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"电子竞技\",\"url\":\"/all/book/2_23_12_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏生涯\",\"url\":\"/all/book/2_23_14_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"篮球风云\",\"url\":\"/all/book/2_23_97_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"天下足球\",\"url\":\"/all/book/2_23_98_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"棋牌桌游\",\"url\":\"/all/book/2_23_99_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏异界\",\"url\":\"/all/book/2_23_121_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"体育竞技\",\"url\":\"/all/book/2_23_100_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 科幻末世 ✵\",\"url\":\"/all/book/2_14_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"末世危机\",\"url\":\"/all/book/2_14_128_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"进化变异\",\"url\":\"/all/book/2_14_129_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"时空穿梭\",\"url\":\"/all/book/2_14_130_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"未来幻想\",\"url\":\"/all/book/2_14_6_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古武机甲\",\"url\":\"/all/book/2_14_131_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"星际战争\",\"url\":\"/all/book/2_14_95_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"✵ 悬疑推理 ✵\",\"url\":\"/all/book/2_29_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"民间奇谈\",\"url\":\"/all/book/2_29_179_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"恐怖悬疑\",\"url\":\"/all/book/2_29_180_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"侦探推理\",\"url\":\"/all/book/2_29_181_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"探险揭秘\",\"url\":\"/all/book/2_29_182_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 轻小说 ✵\",\"url\":\"/all/book/2_30_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"搞笑幽默\",\"url\":\"/all/book/2_30_183_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"男生同人\",\"url\":\"/all/book/2_30_184_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"宅系小说\",\"url\":\"/all/book/2_30_185_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"萌系小说\",\"url\":\"/all/book/2_30_186_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"灵魂转换\",\"url\":\"/all/book/2_30_187_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 女 ♀ 榜 ✵\",\"url\":\"\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"总收藏\",\"url\":\"/all/book/3_0_0_0_0_7_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月收藏\",\"url\":\"/all/book/3_0_0_0_0_6_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周收藏\",\"url\":\"/all/book/3_0_0_0_0_5_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总点击\",\"url\":\"/all/book/3_0_0_0_0_4_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"月点击\",\"url\":\"/all/book/3_0_0_0_0_3_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"周点击\",\"url\":\"/all/book/3_0_0_0_0_2_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"总字数\",\"url\":\"/all/book/3_0_0_0_0_1_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 女 ♀ 生 ✵\",\"url\":\"/all/book/3_0_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"✵ 都市言情 ✵\",\"url\":\"/all/book/3_17_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"总裁豪门\",\"url\":\"/all/book/3_17_134_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"游戏情缘\",\"url\":\"/all/book/3_17_135_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"都市情缘\",\"url\":\"/all/book/3_17_136_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"现代重生\",\"url\":\"/all/book/3_17_166_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"娱乐明星\",\"url\":\"/all/book/3_17_167_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"民国旧影\",\"url\":\"/all/book/3_17_168_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"跨国情缘\",\"url\":\"/all/book/3_17_169_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"职场丽人\",\"url\":\"/all/book/3_17_16_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"婚恋爱情\",\"url\":\"/all/book/3_17_26_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"✵ 古装言情 ✵\",\"url\":\"/all/book/3_5_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"快意江湖\",\"url\":\"/all/book/3_5_132_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"架空历史\",\"url\":\"/all/book/3_5_133_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"古代重生\",\"url\":\"/all/book/3_5_139_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"前世今生\",\"url\":\"/all/book/3_5_140_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"经商种田\",\"url\":\"/all/book/3_5_165_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"宫廷贵族\",\"url\":\"/all/book/3_5_10_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"穿越时空\",\"url\":\"/all/book/3_5_22_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"家宅恩怨\",\"url\":\"/all/book/3_5_7_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 幻想言情 ✵\",\"url\":\"/all/book/3_18_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"玄幻仙侠\",\"url\":\"/all/book/3_18_137_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异界魔法\",\"url\":\"/all/book/3_18_138_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"星际科幻\",\"url\":\"/all/book/3_18_170_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"灵异悬疑\",\"url\":\"/all/book/3_18_24_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"末世危机\",\"url\":\"/all/book/3_18_171_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"异能空间\",\"url\":\"/all/book/3_18_172_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"西方奇幻\",\"url\":\"/all/book/3_18_173_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"唯美纯爱\",\"url\":\"/all/book/3_18_437_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.296}},\n{\"title\":\"✵ 浪漫青春 ✵\",\"url\":\"/all/book/3_20_0_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":1,\"layout_flexGrow\":1}},\n{\"title\":\"网配快穿\",\"url\":\"/all/book/3_20_148_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"校园青春\",\"url\":\"/all/book/3_20_175_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"纯爱青春\",\"url\":\"/all/book/3_20_176_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.25,\"layout_flexGrow\":1}},\n{\"title\":\"悲伤青春\",\"url\":\"/all/book/3_20_177_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.295}},\n{\"title\":\"女生同人\",\"url\":\"/all/book/3_20_178_0_0_0_0_1_{{page}}.html\",\"style\":{\"layout_flexBasisPercent\":0.295}}]",
"header": "",
"lastUpdateTime": 1666136268440,
"loginUrl": "https://passport.17k.com/login",
"respondTime": 39812,
"ruleBookInfo": {
"author": ".Author a@text",
"coverUrl": "",
"init": "",
"intro": "",
"kind": "",
"lastChapter": "",
"name": ".Title@text",
"tocUrl": "text.点击阅读@href",
"wordCount": ""
},
"ruleContent": {
"content": ".p p:not([class])@html",
"nextContentUrl": "",
"sourceRegex": "",
"webJs": ""
},
"ruleExplore": {
"author": "a.4@text",
"bookList": ".alltextlist",
"bookUrl": "a.3@href",
"coverUrl": "img@src",
"intro": "a.-2@text##(^|[。!?]+[”」)】]?)##$1<br>",
"kind": "a.5@text&&cite@text##\\s.*",
"lastChapter": "a.-1@text##[\\((【].*?[求更谢乐发订合补加].*?[】)\\)]",
"name": "a.3@text",
"wordCount": "code@text"
},
"ruleReview": {},
"ruleSearch": {
"author": "author",
"bookList": ".textlist!0\n<js>\nresult.toArray().map(o=>{\n var detail = String(o.select('dt a').attr('href')).replace('//','https://');\n var J = org.jsoup.Jsoup.parse(java.ajax(detail));\n return {\n name: o.select('dt a').text(),\n author:String(o.select('.ls a').text()).replace('作者:',''),\n tags: String(o.select('.bq span:eq(1)').text()).replace('类别:',''),\n num: String(o.select('.bq span:eq(2)').text()).replace('字数:',''),\n latest: String(J.select('dl.NewsChapter a').last().text()).replace(/[\\((].*[求更谢乐发订合补加].*[)\\)]/,''),\n intro: String(o.select('li:eq(2)').text()).replace('简介:','').trim(),\n cover: o.select('img').attr('src'),\n catalogUrl: 'https://www.17k.com'+J.select('.read a').attr('href')\n }\n});\n</js>",
"bookUrl": "catalogUrl",
"coverUrl": "cover",
"intro": "intro",
"kind": "tags",
"lastChapter": "latest",
"name": "name",
"wordCount": "num"
},
"ruleToc": {
"chapterList": ".Volume dd a",
"chapterName": "text##[\\((【].*?[求更谢乐发订合补加].*?[】)\\)]",
"chapterUrl": "href",
"isVip": "@js:result.select('span').hasClass('vip')",
"nextTocUrl": "",
"updateTime": ""
},
"searchUrl": "https://search.17k.com/search.xhtml?c.q={{key}}&page={{page}}",
"weight": 0
}
这是调试时截图
![Screenshot_2023-03-29-01-29-45-690_阅读](https://user-images.githubusercontent.com/74254385/228326392-4c099ab9-0152-48fa-b2c5-fd323f46309a.png)
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.22.032820
### Android版本 / Android version
6
### 机型 / Model
sm919 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2926/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2926/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2925 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2925/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2925/comments | https://api.github.com/repos/gedoor/legado/issues/2925/events | https://github.com/gedoor/legado/pull/2925 | 1,643,182,687 | PR_kwDOCzQSM85NB01k | 2,925 | dev | {
"login": "bysqh",
"id": 29378843,
"node_id": "MDQ6VXNlcjI5Mzc4ODQz",
"avatar_url": "https://avatars.githubusercontent.com/u/29378843?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/bysqh",
"html_url": "https://github.com/bysqh",
"followers_url": "https://api.github.com/users/bysqh/followers",
"following_url": "https://api.github.com/users/bysqh/following{/other_user}",
"gists_url": "https://api.github.com/users/bysqh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bysqh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bysqh/subscriptions",
"organizations_url": "https://api.github.com/users/bysqh/orgs",
"repos_url": "https://api.github.com/users/bysqh/repos",
"events_url": "https://api.github.com/users/bysqh/events{/privacy}",
"received_events_url": "https://api.github.com/users/bysqh/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-03-28T04:34:54 | 2023-03-28T04:39:35 | 2023-03-28T04:38:40 | NONE | null | null | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2925/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2925/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2925",
"html_url": "https://github.com/gedoor/legado/pull/2925",
"diff_url": "https://github.com/gedoor/legado/pull/2925.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2925.patch",
"merged_at": null
} | true |
https://api.github.com/repos/gedoor/legado/issues/2923 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2923/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2923/comments | https://api.github.com/repos/gedoor/legado/issues/2923/events | https://github.com/gedoor/legado/pull/2923 | 1,641,376,028 | PR_kwDOCzQSM85M7xff | 2,923 | Bump cn.hutool:hutool-crypto from 5.8.15 to 5.8.16 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-27T05:01:34 | 2023-03-27T08:25:09 | 2023-03-27T08:25:00 | CONTRIBUTOR | null | Bumps [cn.hutool:hutool-crypto](https://github.com/dromara/hutool) from 5.8.15 to 5.8.16.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/dromara/hutool/blob/v5-master/CHANGELOG.md">cn.hutool:hutool-crypto's changelog</a>.</em></p>
<blockquote>
<h1>5.8.16 (2023-03-26)</h1>
<h3>🐣新特性</h3>
<ul>
<li>【core 】 改进Calculator.conversion,兼容乘法符号省略写法(issue#2964@Github)</li>
<li>【core 】 改进XmlUtil.xmlToBean,支持xml转bean时父节点忽略大小写</li>
<li>【core 】 优化ArrayUtil的空判断(pr#2969@Github)</li>
<li>【extra 】 优化SpringUtil在非Spring环境下的异常(issue#2835@Github)</li>
<li>【core 】 StrUtil增加commonPrefix和commonSuffix方法(pr#3007@Github)</li>
<li>【core 】 NumberUtil增加重载parseXXX方法, 解析失败返回默认值(pr#3007@Github)</li>
<li>【core 】 FileUtil增加readLines重载,支持filter(pr#3006@Github)</li>
<li>【json 】 当用户选择ignoreError时,错误对象转JSON也忽略</li>
</ul>
<h3>🐞Bug修复</h3>
<ul>
<li>【crypto】 修复NoSuchMethodError未捕获问题(issue#2966@Github)</li>
<li>【poi 】 修复SXSSFWorkbook调用setComment时错位的问题(issue#I6MBS5@Gitee)</li>
<li>【core 】 修复BeanUtil.hasGetter没有跳过getClass方法的问题(issue#I6MBS5@Gitee)</li>
<li>【core 】 修复FileMagicNumber长度判断问题导致的越界异常(issue#I6MACI@Gitee)</li>
<li>【core 】 修复DateUtil针对ISO8601时间格式部分场景下的解析存在问题(issue#2981@Github)</li>
<li>【core 】 修复JSONUtil.toBean可能的空指针问题(issue#2987@Github)</li>
<li>【core 】 修复CalendarUtil.isSameMonth没有判断公元前导致不一致的问题(issue#3011@Github)</li>
<li>【core 】 修复WatchUtil createModify maxDepth传递后没有使用问题(issue#3005@Github)</li>
<li>【core 】 修复NullComparator反转无效问题(pr#964@Gitee)</li>
<li>【setting】 修复props.toBean 数组字段未赋值问题(issue#3008@Github)</li>
</ul>
<hr />
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a href="https://github.com/dromara/hutool/commits">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cn.hutool:hutool-crypto&package-manager=gradle&previous-version=5.8.15&new-version=5.8.16)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2923/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2923/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2923",
"html_url": "https://github.com/gedoor/legado/pull/2923",
"diff_url": "https://github.com/gedoor/legado/pull/2923.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2923.patch",
"merged_at": "2023-03-27T08:25:00"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2922 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2922/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2922/comments | https://api.github.com/repos/gedoor/legado/issues/2922/events | https://github.com/gedoor/legado/pull/2922 | 1,641,375,397 | PR_kwDOCzQSM85M7xWS | 2,922 | Bump com.jayway.jsonpath:json-path from 2.7.0 to 2.8.0 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-27T05:01:12 | 2023-03-27T08:18:43 | 2023-03-27T08:18:32 | CONTRIBUTOR | null | Bumps [com.jayway.jsonpath:json-path](https://github.com/jayway/JsonPath) from 2.7.0 to 2.8.0.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/json-path/JsonPath/commit/8a0d2fd594b4a1baab71132cf5ef74889b9976e5"><code>8a0d2fd</code></a> Fix archive signing</li>
<li><a href="https://github.com/json-path/JsonPath/commit/8bae57fcbc815d142982b1ccbd93e4cac65a0478"><code>8bae57f</code></a> Merge branch 'master' of github.com:json-path/JsonPath</li>
<li><a href="https://github.com/json-path/JsonPath/commit/08830e92f462cea4b047f118dcc6ea4511f1e9e4"><code>08830e9</code></a> Upgrade org.json:json from 20140107 to 20230227 (<a href="https://redirect.github.com/jayway/JsonPath/issues/907">#907</a>)</li>
<li><a href="https://github.com/json-path/JsonPath/commit/edf52aa6673879b4d2a6814fe1942efa37871950"><code>edf52aa</code></a> Release and fix docs</li>
<li><a href="https://github.com/json-path/JsonPath/commit/4a59845a74d3c1ee4c4d6485e27e0a0e4c290f8d"><code>4a59845</code></a> Revert to deprecated 'baseName'</li>
<li><a href="https://github.com/json-path/JsonPath/commit/1e6647bbce6cd75fdcd4bbdde16cefa33e3d9774"><code>1e6647b</code></a> Fix dependency issues in gradle build files</li>
<li><a href="https://github.com/json-path/JsonPath/commit/9a77472cc151bea1ec6d895450158791b2a1b2cc"><code>9a77472</code></a> Update dependencies</li>
<li><a href="https://github.com/json-path/JsonPath/commit/9729cb048b390b8db884ddc2c5b50afd82828c61"><code>9729cb0</code></a> Defines the pattern for taking item from collection of JSONArray by index (<a href="https://redirect.github.com/jayway/JsonPath/issues/842">#842</a>)</li>
<li><a href="https://github.com/json-path/JsonPath/commit/2eed3b9675d58ae6267e0ed3d42c86d3bb08d7cb"><code>2eed3b9</code></a> Fix description for sub-array index example in table (<a href="https://redirect.github.com/jayway/JsonPath/issues/861">#861</a>)</li>
<li><a href="https://github.com/json-path/JsonPath/commit/b9860126d44b62e095c9c447f71248bdc29932b3"><code>b986012</code></a> Update build.gradle (<a href="https://redirect.github.com/jayway/JsonPath/issues/866">#866</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/jayway/JsonPath/compare/json-path-2.7.0...json-path-2.8.0">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.jayway.jsonpath:json-path&package-manager=gradle&previous-version=2.7.0&new-version=2.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2922/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2922/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2922",
"html_url": "https://github.com/gedoor/legado/pull/2922",
"diff_url": "https://github.com/gedoor/legado/pull/2922.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2922.patch",
"merged_at": "2023-03-27T08:18:32"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2921 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2921/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2921/comments | https://api.github.com/repos/gedoor/legado/issues/2921/events | https://github.com/gedoor/legado/issues/2921 | 1,641,307,548 | I_kwDOCzQSM85h1F2c | 2,921 | ios版本有吗 | {
"login": "huahai547",
"id": 85392204,
"node_id": "MDQ6VXNlcjg1MzkyMjA0",
"avatar_url": "https://avatars.githubusercontent.com/u/85392204?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/huahai547",
"html_url": "https://github.com/huahai547",
"followers_url": "https://api.github.com/users/huahai547/followers",
"following_url": "https://api.github.com/users/huahai547/following{/other_user}",
"gists_url": "https://api.github.com/users/huahai547/gists{/gist_id}",
"starred_url": "https://api.github.com/users/huahai547/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/huahai547/subscriptions",
"organizations_url": "https://api.github.com/users/huahai547/orgs",
"repos_url": "https://api.github.com/users/huahai547/repos",
"events_url": "https://api.github.com/users/huahai547/events{/privacy}",
"received_events_url": "https://api.github.com/users/huahai547/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"没有",
"永远都不会有",
"ios有类似的看书嘛",
"> ios有类似的看书嘛\r\n\r\n有个类似的[yealico](https://apps.apple.com/cn/app/yealico/id1359000639)\r\n但体验并不好, 还有广告, 而且书源规则也不一样"
] | 2023-03-27T03:36:39 | 2023-04-17T12:02:00 | 2023-04-17T12:02:00 | NONE | null | ### 确认 / Assignments
- [ ] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
ios版本有吗
### 期望实现方式 / How to implement
ios版本有吗
### 附加信息 / Additions
ios版本有吗
### 效果演示 / Demo
ios版本有吗 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2921/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2921/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2920 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2920/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2920/comments | https://api.github.com/repos/gedoor/legado/issues/2920/events | https://github.com/gedoor/legado/issues/2920 | 1,641,273,681 | I_kwDOCzQSM85h09lR | 2,920 | 当使用有声书源听书时,锁屏再解锁后,目录回跳的问题 | {
"login": "borpubi",
"id": 28093885,
"node_id": "MDQ6VXNlcjI4MDkzODg1",
"avatar_url": "https://avatars.githubusercontent.com/u/28093885?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/borpubi",
"html_url": "https://github.com/borpubi",
"followers_url": "https://api.github.com/users/borpubi/followers",
"following_url": "https://api.github.com/users/borpubi/following{/other_user}",
"gists_url": "https://api.github.com/users/borpubi/gists{/gist_id}",
"starred_url": "https://api.github.com/users/borpubi/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/borpubi/subscriptions",
"organizations_url": "https://api.github.com/users/borpubi/orgs",
"repos_url": "https://api.github.com/users/borpubi/repos",
"events_url": "https://api.github.com/users/borpubi/events{/privacy}",
"received_events_url": "https://api.github.com/users/borpubi/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"发个视频看一下",
"需要同时打开 李跳跳 才会出现",
"点错了,锁屏录不到,看上去就像突然往前跳一样。\r\n\r\nhttps://user-images.githubusercontent.com/28093885/227830710-5ee0980b-8621-47ec-bd84-1a5ba03be7ff.mp4\r\n\r\n",
"将阅读加入李跳跳的黑名单里就行",
"已设置,果然没问题了。不过老版本 3.22.11XXXXX的没问题。\r\n\r\n",
"已设置,果然没问题了。不过老版本 3.22.11XXXXX的没问题。\r\n\r\n"
] | 2023-03-27T02:57:07 | 2023-03-27T07:22:27 | 2023-03-27T07:22:26 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
当使用有声书源听有声小说时,锁定屏幕,再重新解锁,会打乱光前正在听书的章节,拼命往前跳。
### 复现步骤 / How to reproduce
使用有声书源听书,听的过程中直接锁定屏幕,然后重新解锁即可触发。
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.031210 PRO
### Android版本 / Android version
Android 12
### 机型 / Model
IQOO 3 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2920/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2920/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2919 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2919/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2919/comments | https://api.github.com/repos/gedoor/legado/issues/2919/events | https://github.com/gedoor/legado/issues/2919 | 1,641,268,301 | I_kwDOCzQSM85h08RN | 2,919 | “恢复 webDav书源比本地新,是否恢复“ 恢复后,缓存/导出页面显示不正确。 | {
"login": "pinoren",
"id": 31525739,
"node_id": "MDQ6VXNlcjMxNTI1NzM5",
"avatar_url": "https://avatars.githubusercontent.com/u/31525739?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/pinoren",
"html_url": "https://github.com/pinoren",
"followers_url": "https://api.github.com/users/pinoren/followers",
"following_url": "https://api.github.com/users/pinoren/following{/other_user}",
"gists_url": "https://api.github.com/users/pinoren/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pinoren/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pinoren/subscriptions",
"organizations_url": "https://api.github.com/users/pinoren/orgs",
"repos_url": "https://api.github.com/users/pinoren/repos",
"events_url": "https://api.github.com/users/pinoren/events{/privacy}",
"received_events_url": "https://api.github.com/users/pinoren/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | closed | false | null | [] | null | [
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-03-27T02:49:39 | 2023-05-11T01:54:52 | 2023-05-11T01:54:52 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
“恢复 webDav书源比本地新,是否恢复“ 恢复后,缓存/导出页面显示不正确,需要重新做一次缓存操作退出再进入才能恢复。
并且此“恢复 webDav书源比本地新,是否恢复“,如果碰触了空白的地方,他就会消失,再想让他显示出来,就没有地方可选了,要等下一次机缘了。。。
不太明白这个提示是什么触发的,因为没有对webDAV的TXT书籍做任何更改操作,是否是我的理解有误?
另外,他恢复之后,我也没有看出来他进行了什么操作。
### 复现步骤 / How to reproduce
有时打开阅读APP的时候,会出现一个提示”恢复:webDav书源比本地新,是否恢复“,虽然我不清楚这个提示从何而来(WebDav里我的TXT书籍并没有更新过),但是如果点击了”确定“,则页面稍等片刻会刷新一下,此后再查看”缓存/导出“页面中之前缓存过的书籍,缓存进度均显示为0,如果启动一下开始缓存,此时缓存是无法进行的,但再退出一下APP,重新进入即可,此时缓存过的书籍数据显示都正常了。
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.032123
### Android版本 / Android version
12
### 机型 / Model
荣耀V40轻奢版、360 N6、华为nova4 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2919/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2919/timeline | null | not_planned | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2918 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2918/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2918/comments | https://api.github.com/repos/gedoor/legado/issues/2918/events | https://github.com/gedoor/legado/issues/2918 | 1,641,221,377 | I_kwDOCzQSM85h0w0B | 2,918 | 统一web书架和源编辑 | {
"login": "Xwite",
"id": 82232510,
"node_id": "MDQ6VXNlcjgyMjMyNTEw",
"avatar_url": "https://avatars.githubusercontent.com/u/82232510?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Xwite",
"html_url": "https://github.com/Xwite",
"followers_url": "https://api.github.com/users/Xwite/followers",
"following_url": "https://api.github.com/users/Xwite/following{/other_user}",
"gists_url": "https://api.github.com/users/Xwite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Xwite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Xwite/subscriptions",
"organizations_url": "https://api.github.com/users/Xwite/orgs",
"repos_url": "https://api.github.com/users/Xwite/repos",
"events_url": "https://api.github.com/users/Xwite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Xwite/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-03-27T01:54:20 | 2023-04-08T07:06:59 | 2023-04-08T07:06:59 | COLLABORATOR | null | - [x] 源编辑使用vite pina
- [x] bookshelf迁移到vue3 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2918/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2918/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2917 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2917/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2917/comments | https://api.github.com/repos/gedoor/legado/issues/2917/events | https://github.com/gedoor/legado/issues/2917 | 1,641,128,692 | I_kwDOCzQSM85h0aL0 | 2,917 | 实现web搜索添加书籍 | {
"login": "Xwite",
"id": 82232510,
"node_id": "MDQ6VXNlcjgyMjMyNTEw",
"avatar_url": "https://avatars.githubusercontent.com/u/82232510?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Xwite",
"html_url": "https://github.com/Xwite",
"followers_url": "https://api.github.com/users/Xwite/followers",
"following_url": "https://api.github.com/users/Xwite/following{/other_user}",
"gists_url": "https://api.github.com/users/Xwite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Xwite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Xwite/subscriptions",
"organizations_url": "https://api.github.com/users/Xwite/orgs",
"repos_url": "https://api.github.com/users/Xwite/repos",
"events_url": "https://api.github.com/users/Xwite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Xwite/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [] | 2023-03-26T22:56:09 | 2023-03-27T01:54:43 | 2023-03-27T01:54:43 | COLLABORATOR | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
- [x] 阅读提供搜索书籍 添加书架的api https://github.com/gedoor/legado/commit/2eaa295ad69bd7d24e0b595725f46d6a4ae7cf83
- [x] #2918
- [x] 更新api文档
refs #2888 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2917/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2917/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2915 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2915/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2915/comments | https://api.github.com/repos/gedoor/legado/issues/2915/events | https://github.com/gedoor/legado/issues/2915 | 1,640,864,187 | I_kwDOCzQSM85hzZm7 | 2,915 | NativeObject规则扩展和在线书籍导出 | {
"login": "Xwite",
"id": 82232510,
"node_id": "MDQ6VXNlcjgyMjMyNTEw",
"avatar_url": "https://avatars.githubusercontent.com/u/82232510?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Xwite",
"html_url": "https://github.com/Xwite",
"followers_url": "https://api.github.com/users/Xwite/followers",
"following_url": "https://api.github.com/users/Xwite/following{/other_user}",
"gists_url": "https://api.github.com/users/Xwite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Xwite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Xwite/subscriptions",
"organizations_url": "https://api.github.com/users/Xwite/orgs",
"repos_url": "https://api.github.com/users/Xwite/repos",
"events_url": "https://api.github.com/users/Xwite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Xwite/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527766232,
"node_id": "MDU6TGFiZWwyNTI3NzY2MjMy",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E4%B8%80%E8%88%AC",
"name": "一般",
"color": "b3e7f2",
"default": false,
"description": "B3.冷门功能无法使用,有空时再处理"
},
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | false | null | [] | null | [
"要不把列表变量弄到js里面吧",
"这样吗\r\n```js\r\nhttp://www.example.com/{{result.a}}.html\r\n// http://www.example.com/1.html\r\n```",
"嗯",
"话说我那个建议里的,当章节内容为空时,比如分卷章节,导出会是null,要不直接导出为空章节吧",
"![image](https://user-images.githubusercontent.com/22701807/227774130-56ca80d5-e031-4319-a27b-fcf8cb6110b4.png)\r\n改下这里,只有一个规则时走这个",
"![image](https://user-images.githubusercontent.com/22701807/227774219-0a923a8b-f9b3-4a50-ba3f-dcea59f12c2c.png)\r\n看看这样改有没有其它不好的影响",
"@xingluo233 这个我记得我改过了",
"> @xingluo233 这个我记得我改过了\n\n嗷嗷,好的",
"![image](https://user-images.githubusercontent.com/22701807/227775477-7c0abf0d-3b24-4d41-81a7-cb1f57112383.png)\r\n",
"这样好像可以了"
] | 2023-03-26T11:03:01 | 2023-03-26T14:21:49 | 2023-03-26T12:33:51 | COLLABORATOR | null | - [x] 导出本地文件时不应保留vip标识 #2682 https://github.com/gedoor/legado/commit/6f10337904a657cdb53bf9d011dfec4bc517b490
- [x] 列表规则为`NativeObject`时 只能以键值访问 #2914 https://github.com/gedoor/legado/commit/28d90203954d5912c5ac717733eb48b415e45611
```js
# 列表规则
<js>JSON.parse("{a:1,b:2}")</js>
# 其他规则
a // 返回 1
http://www.example.com/{{result.a}}.html
a##1##2 // 2
a@put:{a:a} // 1
```
| {
"url": "https://api.github.com/repos/gedoor/legado/issues/2915/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2915/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2914 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2914/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2914/comments | https://api.github.com/repos/gedoor/legado/issues/2914/events | https://github.com/gedoor/legado/issues/2914 | 1,640,774,010 | I_kwDOCzQSM85hzDl6 | 2,914 | 调试时详情页链接为搜索地址 | {
"login": "xingluo233",
"id": 54618947,
"node_id": "MDQ6VXNlcjU0NjE4OTQ3",
"avatar_url": "https://avatars.githubusercontent.com/u/54618947?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/xingluo233",
"html_url": "https://github.com/xingluo233",
"followers_url": "https://api.github.com/users/xingluo233/followers",
"following_url": "https://api.github.com/users/xingluo233/following{/other_user}",
"gists_url": "https://api.github.com/users/xingluo233/gists{/gist_id}",
"starred_url": "https://api.github.com/users/xingluo233/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/xingluo233/subscriptions",
"organizations_url": "https://api.github.com/users/xingluo233/orgs",
"repos_url": "https://api.github.com/users/xingluo233/repos",
"events_url": "https://api.github.com/users/xingluo233/events{/privacy}",
"received_events_url": "https://api.github.com/users/xingluo233/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"```js\r\n<js>\r\neval(String(source.bookSourceComment))\r\ndecrypt(result)\r\n</js>$.result.list\r\n```"
] | 2023-03-26T05:04:21 | 2023-03-26T06:39:12 | 2023-03-26T06:38:38 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
调试时,详情页的地址一直为搜索地址[书源](https://shuyuan.mgz6.cc/shuyuan/1e307f2d10604941777435f99137446b.json)
![Screenshot_2023-03-26-12-53-08-408_io legado app release](https://user-images.githubusercontent.com/54618947/227756262-2d135c56-eecd-4d2d-b96f-a386755f6257.jpg)
![Screenshot_2023-03-26-12-52-28-446_io legado app release](https://user-images.githubusercontent.com/54618947/227756265-2b426515-ed98-4b12-ae95-4102645a71bc.jpg)
当详情页url栏填写$.id时却不会出现这个问题,其他不管填什么都会这样
![Screenshot_2023-03-26-13-02-36-244_io legado app release](https://user-images.githubusercontent.com/54618947/227756351-6ef8b7ea-3585-4e4f-9805-47221dcb8fc5.jpg)
![Screenshot_2023-03-26-13-02-45-028_io legado app release](https://user-images.githubusercontent.com/54618947/227756356-6e8b0c80-f446-4b3e-b6d0-cb280c7204cf.jpg)
### 复现步骤 / How to reproduce
如上
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.032123
### Android版本 / Android version
Android 13
### 机型 / Model
Xiaomi 10 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2914/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2914/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2913 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2913/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2913/comments | https://api.github.com/repos/gedoor/legado/issues/2913/events | https://github.com/gedoor/legado/issues/2913 | 1,640,766,080 | I_kwDOCzQSM85hzBqA | 2,913 | 滚动阅读时,多手指触摸事件触发导致屏幕闪烁 | {
"login": "jaredtech",
"id": 24695209,
"node_id": "MDQ6VXNlcjI0Njk1MjA5",
"avatar_url": "https://avatars.githubusercontent.com/u/24695209?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jaredtech",
"html_url": "https://github.com/jaredtech",
"followers_url": "https://api.github.com/users/jaredtech/followers",
"following_url": "https://api.github.com/users/jaredtech/following{/other_user}",
"gists_url": "https://api.github.com/users/jaredtech/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jaredtech/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jaredtech/subscriptions",
"organizations_url": "https://api.github.com/users/jaredtech/orgs",
"repos_url": "https://api.github.com/users/jaredtech/repos",
"events_url": "https://api.github.com/users/jaredtech/events{/privacy}",
"received_events_url": "https://api.github.com/users/jaredtech/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"收到",
"> 收到\r\n\r\n不太理解为什么`ScrollPageDelegate`的这个方法\r\n```\r\n private fun onScroll(event: MotionEvent) {\r\n ......\r\n // Determine focal point\r\n var sumX = 0f\r\n var sumY = 0f\r\n val count: Int = event.pointerCount\r\n for (i in 0 until count) {\r\n if (skipIndex == i) continue\r\n sumX += event.getX(i)\r\n sumY += event.getY(i)\r\n }\r\n val div = if (pointerUp) count - 1 else count\r\n val focusX = sumX / div\r\n val focusY = sumY / div\r\n readView.setTouchPoint(sumX, sumY)\r\n ......\r\n }\r\n```\r\n要取多个触摸点的坐标的平均值,但造成闪烁(错误滚动到上一页)确实是因为这个计算方式,而如果只默认取第一个触摸的手指位置,则不会出现这样的问题\r\n```\r\n private fun onScroll(event: MotionEvent) {\r\n ......\r\n readView.setTouchPoint(event.getX(0), event.getY(0))\r\n if (!isMoved) {\r\n val deltaX = (event.getX(0) - startX).toInt()\r\n val deltaY = (event.getY(0) - startY).toInt()\r\n val distance = deltaX * deltaX + deltaY * deltaY\r\n isMoved = distance > readView.slopSquare\r\n }\r\n ......\r\n }\r\n```\r\n不知原来的代码有什么作用,就不pull代码了",
"这几天一直忙别的没顾得上,我看看,没问题我就直接照这个改了,之前的也忘了为啥那样写了",
"现在都是全面屏,握着手机的时候可能触碰到屏幕,这时另一只手滑动如果只取第一个触摸点就无法滑动了,原来的计算方法也有问题,我再想想"
] | 2023-03-26T04:26:56 | 2023-04-07T00:43:37 | 2023-04-07T00:43:37 | CONTRIBUTOR | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
滚动阅读的情况下,多手指触摸拖动屏幕,计算触碰点(`touchX touchY`)时使用多点的位置平均值可能导致触碰点不在当前视图中心导致闪烁。在大屏窄边框的设备单手握持的的情况下,滑动文字时,虎口经常误触导致触摸点重新计算发生闪烁,阅读效果不好。
### 复现步骤 / How to reproduce
滚动阅读情况下,向下滑动再同时点击任意阅读区域
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.032112
### Android版本 / Android version
Android 13
### 机型 / Model
Nubia Z50 Ultra | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2913/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2913/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2912 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2912/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2912/comments | https://api.github.com/repos/gedoor/legado/issues/2912/events | https://github.com/gedoor/legado/issues/2912 | 1,640,583,051 | I_kwDOCzQSM85hyU-L | 2,912 | 添加一个功能“在书籍的详情页面,下滑开源刷新本书籍” | {
"login": "liufuyou",
"id": 47191057,
"node_id": "MDQ6VXNlcjQ3MTkxMDU3",
"avatar_url": "https://avatars.githubusercontent.com/u/47191057?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/liufuyou",
"html_url": "https://github.com/liufuyou",
"followers_url": "https://api.github.com/users/liufuyou/followers",
"following_url": "https://api.github.com/users/liufuyou/following{/other_user}",
"gists_url": "https://api.github.com/users/liufuyou/gists{/gist_id}",
"starred_url": "https://api.github.com/users/liufuyou/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/liufuyou/subscriptions",
"organizations_url": "https://api.github.com/users/liufuyou/orgs",
"repos_url": "https://api.github.com/users/liufuyou/repos",
"events_url": "https://api.github.com/users/liufuyou/events{/privacy}",
"received_events_url": "https://api.github.com/users/liufuyou/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | false | null | [] | null | [
"图片,非常粗糙。\r\n大概是想这样实现的,很多时候,只想单独刷新一本书,不想刷新全部书籍\r\n想在书籍详情页,就可以完成刷新,这个操作,",
"非常感谢,Thanks♪(・ω・)ノ"
] | 2023-03-25T16:52:30 | 2023-03-26T03:29:34 | 2023-03-26T02:13:19 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No related requests
### 功能描述 / Features
在一本书的详情页面下滑,
可以把单独这本书刷新,
因为很多时候,我只想单独刷新一本书,而非是刷新所有书
每次都要去书籍详情页面点击更多,然后点击刷新,很不习惯,
添加一个功能,在书籍的详细页面下滑就可以完成刷新这个操作
### 期望实现方式 / How to implement
在单独一本书的详情页,下拉可以刷新这本书
### 附加信息 / Additions
_No response_
### 效果演示 / Demo
![image](https://user-images.githubusercontent.com/47191057/227730587-74c135c7-7e60-4758-8352-819c6916aa42.png)
| {
"url": "https://api.github.com/repos/gedoor/legado/issues/2912/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2912/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2911 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2911/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2911/comments | https://api.github.com/repos/gedoor/legado/issues/2911/events | https://github.com/gedoor/legado/pull/2911 | 1,640,434,297 | PR_kwDOCzQSM85M41q1 | 2,911 | Bump androidx.test.ext:junit from 1.1.3 to 1.1.5 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-25T08:43:13 | 2023-03-25T09:25:55 | 2023-03-25T09:25:47 | CONTRIBUTOR | null | Bumps androidx.test.ext:junit from 1.1.3 to 1.1.5.
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.test.ext:junit&package-manager=gradle&previous-version=1.1.3&new-version=1.1.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2911/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2911/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2911",
"html_url": "https://github.com/gedoor/legado/pull/2911",
"diff_url": "https://github.com/gedoor/legado/pull/2911.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2911.patch",
"merged_at": "2023-03-25T09:25:47"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2910 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2910/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2910/comments | https://api.github.com/repos/gedoor/legado/issues/2910/events | https://github.com/gedoor/legado/pull/2910 | 1,639,459,090 | PR_kwDOCzQSM85M1lLx | 2,910 | Bump cronet from 111.0.5563.57 to 111.0.5563.115 | {
"login": "gedoor",
"id": 22701807,
"node_id": "MDQ6VXNlcjIyNzAxODA3",
"avatar_url": "https://avatars.githubusercontent.com/u/22701807?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gedoor",
"html_url": "https://github.com/gedoor",
"followers_url": "https://api.github.com/users/gedoor/followers",
"following_url": "https://api.github.com/users/gedoor/following{/other_user}",
"gists_url": "https://api.github.com/users/gedoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gedoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gedoor/subscriptions",
"organizations_url": "https://api.github.com/users/gedoor/orgs",
"repos_url": "https://api.github.com/users/gedoor/repos",
"events_url": "https://api.github.com/users/gedoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/gedoor/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-03-24T14:04:12 | 2023-03-24T14:22:44 | 2023-03-24T14:22:43 | OWNER | null | Changes in the [Git log](https://chromium.googlesource.com/chromium/src/+log/111.0.5563.57..111.0.5563.115) | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2910/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2910/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2910",
"html_url": "https://github.com/gedoor/legado/pull/2910",
"diff_url": "https://github.com/gedoor/legado/pull/2910.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2910.patch",
"merged_at": "2023-03-24T14:22:43"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2909 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2909/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2909/comments | https://api.github.com/repos/gedoor/legado/issues/2909/events | https://github.com/gedoor/legado/issues/2909 | 1,639,443,368 | I_kwDOCzQSM85ht-uo | 2,909 | Error | {
"login": "tatacaw13",
"id": 124025926,
"node_id": "U_kgDOB2R8Rg",
"avatar_url": "https://avatars.githubusercontent.com/u/124025926?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tatacaw13",
"html_url": "https://github.com/tatacaw13",
"followers_url": "https://api.github.com/users/tatacaw13/followers",
"following_url": "https://api.github.com/users/tatacaw13/following{/other_user}",
"gists_url": "https://api.github.com/users/tatacaw13/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tatacaw13/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tatacaw13/subscriptions",
"organizations_url": "https://api.github.com/users/tatacaw13/orgs",
"repos_url": "https://api.github.com/users/tatacaw13/repos",
"events_url": "https://api.github.com/users/tatacaw13/events{/privacy}",
"received_events_url": "https://api.github.com/users/tatacaw13/received_events",
"type": "User",
"site_admin": false
} | [] | closed | true | null | [] | null | [
"fill out issue template https://github.com/gedoor/legado/issues/new?assignees=&labels=BUG&template=01-bugReport.yml"
] | 2023-03-24T13:56:30 | 2023-03-24T14:20:11 | 2023-03-24T14:18:39 | NONE | null | Unable to update the app or backup files. | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2909/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2909/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2908 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2908/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2908/comments | https://api.github.com/repos/gedoor/legado/issues/2908/events | https://github.com/gedoor/legado/pull/2908 | 1,638,728,709 | PR_kwDOCzQSM85MzHLt | 2,908 | Bump actions/stale from 7 to 8 | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4422959940,
"node_id": "LA_kwDOCzQSM88AAAABB6EDRA",
"url": "https://api.github.com/repos/gedoor/legado/labels/github_actions",
"name": "github_actions",
"color": "000000",
"default": false,
"description": "Pull requests that update GitHub Actions code"
}
] | closed | false | null | [] | null | [] | 2023-03-24T05:09:16 | 2023-03-24T05:43:18 | 2023-03-24T05:43:10 | CONTRIBUTOR | null | Bumps [actions/stale](https://github.com/actions/stale) from 7 to 8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/stale/releases">actions/stale's releases</a>.</em></p>
<blockquote>
<h2>v8.0.0</h2>
<p>:warning: This version contains breaking changes :warning:</p>
<h2>What's Changed</h2>
<ul>
<li>New option labels-to-remove-when-stale enables users to specify list of coma delimited labels that will be removed when the issue or PR becomes stale by <a href="https://github.com/panticmilos"><code>@panticmilos</code></a> <a href="https://redirect.github.com/actions/stale/issues/770">actions/stale#770</a></li>
<li>Skip deleting the branch in the upstream of a forked repo by <a href="https://github.com/dsame"><code>@dsame</code></a> <a href="https://redirect.github.com/actions/stale/pull/913">actions/stale#913</a></li>
<li>abort the build on the error by <a href="https://github.com/dsame"><code>@dsame</code></a> in <a href="https://redirect.github.com/actions/stale/pull/935">actions/stale#935</a></li>
</ul>
<h2>Breaking Changes</h2>
<ul>
<li>In this release we prevent scenarios when the build is not interrupted on some exceptions, which led to successful builds when they are supposed to fail</li>
</ul>
<h2>Example</h2>
<pre lang="yaml"><code>name: 'Remove labels when the issue or PR becomes stale'
on:
schedule:
- cron: '30 1 * * *'
<p>permissions:
pull-request: write</p>
<p>jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
labels-to-remove-when-stale: 'label1,label2'
</code></pre></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/actions/stale/blob/main/CHANGELOG.md">actions/stale's changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<h1>[7.0.0]</h1>
<p>:warning: Breaking change :warning:</p>
<ul>
<li>Allow daysBeforeStale options to be float by <a href="https://github.com/irega"><code>@irega</code></a> in <a href="https://redirect.github.com/actions/stale/pull/841">actions/stale#841</a></li>
<li>Use cache in check-dist.yml by <a href="https://github.com/jongwooo"><code>@jongwooo</code></a> in <a href="https://redirect.github.com/actions/stale/pull/876">actions/stale#876</a></li>
<li>fix print outputs step in existing workflows by <a href="https://github.com/irega"><code>@irega</code></a> in <a href="https://redirect.github.com/actions/stale/pull/859">actions/stale#859</a></li>
<li>Update issue and PR templates, add/delete workflow files by <a href="https://github.com/IvanZosimov"><code>@IvanZosimov</code></a> in <a href="https://redirect.github.com/actions/stale/pull/880">actions/stale#880</a></li>
<li>Update how stale handles exempt items by <a href="https://github.com/johnsudol"><code>@johnsudol</code></a> in <a href="https://redirect.github.com/actions/stale/pull/874">actions/stale#874</a></li>
</ul>
<h1>[6.0.1]</h1>
<p>Update <code>@actions/core</code> to v1.10.0 (<a href="https://redirect.github.com/actions/stale/pull/839">#839</a>)</p>
<h1>[6.0.0]</h1>
<p>:warning: Breaking change :warning:</p>
<p>Issues/PRs default <code>close-issue-reason</code> is now <code>not_planned</code>(<a href="https://redirect.github.com/actions/stale/issues/789">#789</a>)</p>
<h1>[5.1.0]</h1>
<p><a href="https://redirect.github.com/actions/stale/issues/696">Don't process stale issues right after they're marked stale</a>
[Add close-issue-reason option]<a href="https://redirect.github.com/actions/stale/pull/764">#764</a><a href="https://redirect.github.com/actions/stale/pull/772">#772</a>
Various dependabot/dependency updates</p>
<h2><a href="https://github.com/actions/stale/compare/v3.0.19...v4.1.0">4.1.0</a> (2021-07-14)</h2>
<h2>Features</h2>
<ul>
<li><a href="https://github.com/actions/stale/commit/9912fa74d1c01b5d6187793d97441019cbe325d0">Ability to exempt draft PRs</a></li>
</ul>
<h2><a href="https://github.com/actions/stale/compare/v3.0.19...v4.0.0">4.0.0</a> (2021-07-14)</h2>
<h3>Features</h3>
<ul>
<li><strong>options:</strong> simplify config by removing skip stale message options (<a href="https://redirect.github.com/actions/stale/issues/457">#457</a>) (<a href="https://github.com/actions/stale/commit/6ec637d238067ab8cc96c9289dcdac280bbd3f4a">6ec637d</a>), closes <a href="https://redirect.github.com/actions/stale/issues/405">#405</a> <a href="https://redirect.github.com/actions/stale/issues/455">#455</a></li>
<li><strong>output:</strong> print output parameters (<a href="https://redirect.github.com/actions/stale/issues/458">#458</a>) (<a href="https://github.com/actions/stale/commit/3e6d35b685f0b2fa1a69be893fa07d3d85e05ee0">3e6d35b</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>dry-run:</strong> forbid mutations in dry-run (<a href="https://redirect.github.com/actions/stale/issues/500">#500</a>) (<a href="https://github.com/actions/stale/commit/f1017f33dd159ea51366375120c3e6981d7c3097">f1017f3</a>), closes <a href="https://redirect.github.com/actions/stale/issues/499">#499</a></li>
<li><strong>logs:</strong> coloured logs (<a href="https://redirect.github.com/actions/stale/issues/465">#465</a>) (<a href="https://github.com/actions/stale/commit/5fbbfba142860ea6512549e96e36e3540c314132">5fbbfba</a>)</li>
<li><strong>operations:</strong> fail fast the current batch to respect the operations limit (<a href="https://redirect.github.com/actions/stale/issues/474">#474</a>) (<a href="https://github.com/actions/stale/commit/5f6f311ca6aa75babadfc7bac6edf5d85fa3f35d">5f6f311</a>), closes <a href="https://redirect.github.com/actions/stale/issues/466">#466</a></li>
<li><strong>label comparison</strong>: make label comparison case insensitive <a href="https://redirect.github.com/actions/stale/pull/517">#517</a>, closes <a href="https://redirect.github.com/actions/stale/pull/516">#516</a></li>
<li><strong>filtering comments by actor could have strange behavior</strong>: "stale" comments are now detected based on if the message is the stale message not <em>who</em> made the comment(<a href="https://redirect.github.com/actions/stale/pull/519">#519</a>), fixes <a href="https://redirect.github.com/actions/stale/pull/441">#441</a>, <a href="https://redirect.github.com/actions/stale/pull/509">#509</a>, <a href="https://redirect.github.com/actions/stale/pull/518">#518</a></li>
</ul>
<h3>Breaking Changes</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/actions/stale/commit/1160a2240286f5da8ec72b1c0816ce2481aabf84"><code>1160a22</code></a> Merge pull request <a href="https://redirect.github.com/actions/stale/issues/965">#965</a> from actions/dependabot/npm_and_yarn/prettier-2.8.6</li>
<li><a href="https://github.com/actions/stale/commit/5f7b3966457047e35f2989b4f3529d4fcbfd3bc8"><code>5f7b396</code></a> build(deps-dev): bump prettier from 2.8.4 to 2.8.6</li>
<li><a href="https://github.com/actions/stale/commit/b002e7ec857ceadb81a436f02fc2e21040190e0a"><code>b002e7e</code></a> Merge pull request <a href="https://redirect.github.com/actions/stale/issues/941">#941</a> from panticmilos/vmpantic/rebuild-dist-vercel-bump</li>
<li><a href="https://github.com/actions/stale/commit/52903732a4c3c9b1f232f1694ad0743bbfcef33c"><code>5290373</code></a> Rebuild dist after rebase</li>
<li><a href="https://github.com/actions/stale/commit/b006677dea6f2be4bde357abb1ccb22915272277"><code>b006677</code></a> Merge pull request <a href="https://redirect.github.com/actions/stale/issues/962">#962</a> from actions/dependabot/npm_and_yarn/jest-and-types/j...</li>
<li><a href="https://github.com/actions/stale/commit/4f29769aee0fc902940fb3af95c79e98e121683e"><code>4f29769</code></a> Merge pull request <a href="https://redirect.github.com/actions/stale/issues/961">#961</a> from actions/dependabot/npm_and_yarn/typescript-5.0.2</li>
<li><a href="https://github.com/actions/stale/commit/83453dd842477b1f93e2a366453b9d1c7540eb5b"><code>83453dd</code></a> build(deps-dev): bump jest and <code>@types/jest</code></li>
<li><a href="https://github.com/actions/stale/commit/79e8c046ed3b9e6a6d89b0453d22c3a2eb50c90f"><code>79e8c04</code></a> Merge pull request <a href="https://redirect.github.com/actions/stale/issues/960">#960</a> from actions/dependabot/npm_and_yarn/types/node-18.15.3</li>
<li><a href="https://github.com/actions/stale/commit/75d4d955acb83847572798f2ffd26ba259871e3c"><code>75d4d95</code></a> Remove labels on stale (<a href="https://redirect.github.com/actions/stale/issues/959">#959</a>)</li>
<li><a href="https://github.com/actions/stale/commit/fac2d41a881555a987df3dacc701e84d898c2aa5"><code>fac2d41</code></a> build(deps-dev): bump typescript from 4.9.4 to 5.0.2</li>
<li>Additional commits viewable in <a href="https://github.com/actions/stale/compare/v7...v8">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/stale&package-manager=github_actions&previous-version=7&new-version=8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2908/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2908/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2908",
"html_url": "https://github.com/gedoor/legado/pull/2908",
"diff_url": "https://github.com/gedoor/legado/pull/2908.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2908.patch",
"merged_at": "2023-03-24T05:43:10"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2907 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2907/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2907/comments | https://api.github.com/repos/gedoor/legado/issues/2907/events | https://github.com/gedoor/legado/pull/2907 | 1,638,727,247 | PR_kwDOCzQSM85MzG3I | 2,907 | Bump com.github.liuyueyi.quick-chinese-transfer:quick-transfer-core from 0.2.11 to 0.2.12 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-24T05:07:28 | 2023-03-24T05:42:51 | 2023-03-24T05:42:42 | CONTRIBUTOR | null | Bumps [com.github.liuyueyi.quick-chinese-transfer:quick-transfer-core](https://github.com/liuyueyi/quick-chinese-transfer) from 0.2.11 to 0.2.12.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/liuyueyi/quick-chinese-transfer/commit/905d09214b176b7fc8d2a412f48ca36ce36bfe78"><code>905d092</code></a> fix <a href="https://redirect.github.com/liuyueyi/quick-chinese-transfer/issues/14">#14</a> 修复那么繁转简问题</li>
<li>See full diff in <a href="https://github.com/liuyueyi/quick-chinese-transfer/compare/0.2.11...0.2.12">compare view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.liuyueyi.quick-chinese-transfer:quick-transfer-core&package-manager=gradle&previous-version=0.2.11&new-version=0.2.12)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2907/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2907/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2907",
"html_url": "https://github.com/gedoor/legado/pull/2907",
"diff_url": "https://github.com/gedoor/legado/pull/2907.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2907.patch",
"merged_at": "2023-03-24T05:42:42"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2906 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2906/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2906/comments | https://api.github.com/repos/gedoor/legado/issues/2906/events | https://github.com/gedoor/legado/pull/2906 | 1,636,860,427 | PR_kwDOCzQSM85Mszij | 2,906 | Bump androidx.activity:activity-ktx from 1.6.1 to 1.7.0 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-23T05:09:03 | 2023-03-23T05:47:50 | 2023-03-23T05:47:41 | CONTRIBUTOR | null | Bumps androidx.activity:activity-ktx from 1.6.1 to 1.7.0.
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.activity:activity-ktx&package-manager=gradle&previous-version=1.6.1&new-version=1.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2906/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2906/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2906",
"html_url": "https://github.com/gedoor/legado/pull/2906",
"diff_url": "https://github.com/gedoor/legado/pull/2906.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2906.patch",
"merged_at": "2023-03-23T05:47:41"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2905 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2905/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2905/comments | https://api.github.com/repos/gedoor/legado/issues/2905/events | https://github.com/gedoor/legado/pull/2905 | 1,636,860,255 | PR_kwDOCzQSM85MszgC | 2,905 | Bump androidx.fragment:fragment-ktx from 1.5.5 to 1.5.6 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-23T05:08:50 | 2023-03-23T05:46:59 | 2023-03-23T05:46:50 | CONTRIBUTOR | null | Bumps androidx.fragment:fragment-ktx from 1.5.5 to 1.5.6.
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.fragment:fragment-ktx&package-manager=gradle&previous-version=1.5.5&new-version=1.5.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2905/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2905/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2905",
"html_url": "https://github.com/gedoor/legado/pull/2905",
"diff_url": "https://github.com/gedoor/legado/pull/2905.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2905.patch",
"merged_at": "2023-03-23T05:46:50"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2904 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2904/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2904/comments | https://api.github.com/repos/gedoor/legado/issues/2904/events | https://github.com/gedoor/legado/pull/2904 | 1,636,860,102 | PR_kwDOCzQSM85Mszd4 | 2,904 | Bump org.apache.commons:commons-compress from 1.22 to 1.23.0 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-23T05:08:38 | 2023-03-23T05:46:47 | 2023-03-23T05:46:39 | CONTRIBUTOR | null | Bumps org.apache.commons:commons-compress from 1.22 to 1.23.0.
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.commons:commons-compress&package-manager=gradle&previous-version=1.22&new-version=1.23.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2904/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2904/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2904",
"html_url": "https://github.com/gedoor/legado/pull/2904",
"diff_url": "https://github.com/gedoor/legado/pull/2904.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2904.patch",
"merged_at": "2023-03-23T05:46:39"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2903 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2903/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2903/comments | https://api.github.com/repos/gedoor/legado/issues/2903/events | https://github.com/gedoor/legado/pull/2903 | 1,636,858,329 | PR_kwDOCzQSM85MszFR | 2,903 | Bump androidx.webkit:webkit from 1.6.0 to 1.6.1 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-23T05:06:26 | 2023-03-23T05:46:32 | 2023-03-23T05:46:24 | CONTRIBUTOR | null | Bumps androidx.webkit:webkit from 1.6.0 to 1.6.1.
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=androidx.webkit:webkit&package-manager=gradle&previous-version=1.6.0&new-version=1.6.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2903/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2903/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2903",
"html_url": "https://github.com/gedoor/legado/pull/2903",
"diff_url": "https://github.com/gedoor/legado/pull/2903.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2903.patch",
"merged_at": "2023-03-23T05:46:24"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2902 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2902/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2902/comments | https://api.github.com/repos/gedoor/legado/issues/2902/events | https://github.com/gedoor/legado/pull/2902 | 1,636,858,167 | PR_kwDOCzQSM85MszC- | 2,902 | Bump lifecycle_version from 2.6.0 to 2.6.1 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-23T05:06:15 | 2023-03-23T05:46:16 | 2023-03-23T05:46:08 | CONTRIBUTOR | null | Bumps `lifecycle_version` from 2.6.0 to 2.6.1.
Updates `androidx.lifecycle:lifecycle-common-java8` from 2.6.0 to 2.6.1
Updates `androidx.lifecycle:lifecycle-service` from 2.6.0 to 2.6.1
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2902/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2902/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2902",
"html_url": "https://github.com/gedoor/legado/pull/2902",
"diff_url": "https://github.com/gedoor/legado/pull/2902.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2902.patch",
"merged_at": "2023-03-23T05:46:08"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2901 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2901/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2901/comments | https://api.github.com/repos/gedoor/legado/issues/2901/events | https://github.com/gedoor/legado/issues/2901 | 1,635,765,164 | I_kwDOCzQSM85hf8us | 2,901 | 本地文件加载方式错误 | {
"login": "Pantyhose-X",
"id": 42504385,
"node_id": "MDQ6VXNlcjQyNTA0Mzg1",
"avatar_url": "https://avatars.githubusercontent.com/u/42504385?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Pantyhose-X",
"html_url": "https://github.com/Pantyhose-X",
"followers_url": "https://api.github.com/users/Pantyhose-X/followers",
"following_url": "https://api.github.com/users/Pantyhose-X/following{/other_user}",
"gists_url": "https://api.github.com/users/Pantyhose-X/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Pantyhose-X/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Pantyhose-X/subscriptions",
"organizations_url": "https://api.github.com/users/Pantyhose-X/orgs",
"repos_url": "https://api.github.com/users/Pantyhose-X/repos",
"events_url": "https://api.github.com/users/Pantyhose-X/events{/privacy}",
"received_events_url": "https://api.github.com/users/Pantyhose-X/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"txt目录规则是可以自定义的,不属于软件bug"
] | 2023-03-22T13:27:15 | 2023-03-23T13:46:21 | 2023-03-23T13:46:21 | CONTRIBUTOR | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
### 目录错误占用更多的空间。就不能提供一个禁止目录的选项? 正确的加载方式应该像 文本编辑器 那样加载并自动换行就行。
![Screenshot_20230322210306](https://user-images.githubusercontent.com/42504385/226916323-cafa39ef-8468-436d-87c8-1e29585f2229.jpg)
### 静读天下的加载
![Screenshot_20230322210316](https://user-images.githubusercontent.com/42504385/226916397-a0c721f7-17c4-4ee2-8f18-8c5bebd4c4a9.jpg)
### 复现步骤 / How to reproduce
1.添加本地 [慈悲道场水忏法科注.txt](https://github.com/gedoor/legado/files/11040317/default.txt) 这里是书籍,你可以重现这个错误
2.进入界面把字号 拉到0,更明显
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.032123
### Android版本 / Android version
Android 8.0
### 机型 / Model
huawei | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2901/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2901/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2900 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2900/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2900/comments | https://api.github.com/repos/gedoor/legado/issues/2900/events | https://github.com/gedoor/legado/issues/2900 | 1,635,727,027 | I_kwDOCzQSM85hfzaz | 2,900 | 通过“远程书籍”选择坚果云webdav目录下txt文件 点击 放入书架 提示导入错误 Permission Denies | {
"login": "moyunhaipatruus",
"id": 50136824,
"node_id": "MDQ6VXNlcjUwMTM2ODI0",
"avatar_url": "https://avatars.githubusercontent.com/u/50136824?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/moyunhaipatruus",
"html_url": "https://github.com/moyunhaipatruus",
"followers_url": "https://api.github.com/users/moyunhaipatruus/followers",
"following_url": "https://api.github.com/users/moyunhaipatruus/following{/other_user}",
"gists_url": "https://api.github.com/users/moyunhaipatruus/gists{/gist_id}",
"starred_url": "https://api.github.com/users/moyunhaipatruus/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/moyunhaipatruus/subscriptions",
"organizations_url": "https://api.github.com/users/moyunhaipatruus/orgs",
"repos_url": "https://api.github.com/users/moyunhaipatruus/repos",
"events_url": "https://api.github.com/users/moyunhaipatruus/events{/privacy}",
"received_events_url": "https://api.github.com/users/moyunhaipatruus/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [
"重新设置书籍保存目录",
"请问在哪里设置“书籍保存目录” ?完全没找到这个功能\n\n> 2023年3月22日 21:10,Horis ***@***.***> 写道:\n> \n> \n> 重新设置书籍保存目录\n> \n> —\n> Reply to this email directly, view it on GitHub <https://github.com/gedoor/legado/issues/2900#issuecomment-1479543323>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AL6QN6EPFMCNFRMSRYJBCUDW5L225ANCNFSM6AAAAAAWDZG6GM>.\n> You are receiving this because you authored the thread.\n> \n\n",
"其他设置->书籍保存位置"
] | 2023-03-22T13:03:19 | 2023-03-26T14:23:14 | 2023-03-26T14:23:14 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
通过“远程书籍”选择坚果云webdav目录下txt文件 点击 放入书架 提示导入错误 Permission Denies
### 复现步骤 / How to reproduce
通过“远程书籍”选择坚果云webdav目录下txt文件 点击 放入书架 提示导
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.032123
### Android版本 / Android version
Android 9
### 机型 / Model
文石 BOOX Poke4 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2900/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2900/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2899 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2899/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2899/comments | https://api.github.com/repos/gedoor/legado/issues/2899/events | https://github.com/gedoor/legado/issues/2899 | 1,635,190,838 | I_kwDOCzQSM85hdwg2 | 2,899 | 2.0拷贝单个书源到3.0出bug | {
"login": "ladia",
"id": 73186747,
"node_id": "MDQ6VXNlcjczMTg2NzQ3",
"avatar_url": "https://avatars.githubusercontent.com/u/73186747?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ladia",
"html_url": "https://github.com/ladia",
"followers_url": "https://api.github.com/users/ladia/followers",
"following_url": "https://api.github.com/users/ladia/following{/other_user}",
"gists_url": "https://api.github.com/users/ladia/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ladia/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ladia/subscriptions",
"organizations_url": "https://api.github.com/users/ladia/orgs",
"repos_url": "https://api.github.com/users/ladia/repos",
"events_url": "https://api.github.com/users/ladia/events{/privacy}",
"received_events_url": "https://api.github.com/users/ladia/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"OK\r\n\r\nladia ***@***.***> 于 2023年3月22日周三 15:10写道:\r\n\r\n> 确认 / Assignments\r\n>\r\n> - 搜索现有issues,不存在相似或相关的issue / No similar or related issues\r\n> - 最新测试版 <https://kunfei.lanzoui.com/b0f810h4b>依然存在此问题 / Latest beta\r\n> app does not work\r\n> - 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is\r\n> not touched by hook frameworks, plugins etc\r\n>\r\n> 问题描述 / Describe Bugs\r\n>\r\n> 更新了昨天的版本 2.0拷贝单个书源到3.0只能粘贴上书名和源url\r\n> 复现步骤 / How to reproduce\r\n>\r\n> 2.0拷贝单个书源 到3.0书源管理粘贴源,现在粘贴完只有书源名和书源url 之前粘贴除了默认打开cookiejar没问题\r\n> 下了最新版3.23.032212依然这样\r\n> 确认 / Assignment\r\n>\r\n> - 已经提交复现所需要的附加资料 / Submit additions related with bugs\r\n>\r\n> 其他信息 / Additions\r\n>\r\n> *No response*\r\n> 日志提交 / Relevant log output\r\n>\r\n> *No response*\r\n> 阅读版本 / Legado version\r\n>\r\n> 3.23.032123\r\n> Android版本 / Android version\r\n>\r\n> android11\r\n> 机型 / Model\r\n>\r\n> meizu18\r\n>\r\n> —\r\n> Reply to this email directly, view it on GitHub\r\n> <https://github.com/gedoor/legado/issues/2899>, or unsubscribe\r\n> <https://github.com/notifications/unsubscribe-auth/AFNGN3YRRAC2CADZR4KVMALW5KQYBANCNFSM6AAAAAAWDNMUB4>\r\n> .\r\n> You are receiving this because you are subscribed to this thread.Message\r\n> ID: ***@***.***>\r\n>\r\n",
"已修复"
] | 2023-03-22T07:10:44 | 2023-03-22T08:26:29 | 2023-03-22T08:26:29 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
更新了昨天的版本 2.0拷贝单个书源到3.0只能粘贴上书名和源url
### 复现步骤 / How to reproduce
2.0拷贝单个书源 到3.0书源管理粘贴源,现在粘贴完只有书源名和书源url 之前粘贴除了默认打开cookiejar没问题
下了最新版3.23.032212依然这样
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.032123
### Android版本 / Android version
android11
### 机型 / Model
meizu18 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2899/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2899/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2898 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2898/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2898/comments | https://api.github.com/repos/gedoor/legado/issues/2898/events | https://github.com/gedoor/legado/issues/2898 | 1,633,894,094 | I_kwDOCzQSM85hYz7O | 2,898 | http朗读在切换页面的时候会出现朗读错位 | {
"login": "lmst2",
"id": 29498103,
"node_id": "MDQ6VXNlcjI5NDk4MTAz",
"avatar_url": "https://avatars.githubusercontent.com/u/29498103?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lmst2",
"html_url": "https://github.com/lmst2",
"followers_url": "https://api.github.com/users/lmst2/followers",
"following_url": "https://api.github.com/users/lmst2/following{/other_user}",
"gists_url": "https://api.github.com/users/lmst2/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lmst2/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lmst2/subscriptions",
"organizations_url": "https://api.github.com/users/lmst2/orgs",
"repos_url": "https://api.github.com/users/lmst2/repos",
"events_url": "https://api.github.com/users/lmst2/events{/privacy}",
"received_events_url": "https://api.github.com/users/lmst2/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | closed | false | null | [] | null | [
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-03-21T13:09:19 | 2023-04-26T01:55:32 | 2023-04-26T01:55:32 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
在暂停朗读并切换页面之后再次恢复朗读会跳过第一句继续朗读原本暂停内容
### 复现步骤 / How to reproduce
随便找一页开始朗读,
在一句话朗读到一半的时候暂停,
然后翻页,再取消暂停。
期望:直接从切换的页面的第一句话开始朗读。
实际:高亮字体显示从该页面第一句话开始朗读,但是朗读的音频是朗读完之前暂停的半句话,之后从该页面第二句话开始朗读,第一句话相当于被跳过。
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
_No response_
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.031210
### Android版本 / Android version
Android 13
### 机型 / Model
小米11 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2898/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2898/timeline | null | not_planned | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2897 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2897/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2897/comments | https://api.github.com/repos/gedoor/legado/issues/2897/events | https://github.com/gedoor/legado/issues/2897 | 1,633,873,789 | I_kwDOCzQSM85hYu99 | 2,897 | [BUG]http朗读源在切换页面的时候会出现朗读错位 | {
"login": "lmst2",
"id": 29498103,
"node_id": "MDQ6VXNlcjI5NDk4MTAz",
"avatar_url": "https://avatars.githubusercontent.com/u/29498103?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lmst2",
"html_url": "https://github.com/lmst2",
"followers_url": "https://api.github.com/users/lmst2/followers",
"following_url": "https://api.github.com/users/lmst2/following{/other_user}",
"gists_url": "https://api.github.com/users/lmst2/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lmst2/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lmst2/subscriptions",
"organizations_url": "https://api.github.com/users/lmst2/orgs",
"repos_url": "https://api.github.com/users/lmst2/repos",
"events_url": "https://api.github.com/users/lmst2/events{/privacy}",
"received_events_url": "https://api.github.com/users/lmst2/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-03-21T12:59:58 | 2023-03-21T13:04:47 | 2023-03-21T13:04:47 | NONE | null | 复现方法:
随便找一页开始朗读,
在一句话朗读到一半的时候暂停,
然后翻页,再取消暂停。
期望:直接从切换的页面的第一句话开始朗读。
实际:高亮字体显示从该页面第一句话开始朗读,但是朗读的音频是朗读完之前暂停的半句话,之后从该页面第二句话开始朗读,第一句话相当于被跳过。
手机版本:小米11
系统版本:MIUI14
v14.0.23.3.13.DEV | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2897/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2897/timeline | null | not_planned | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2895 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2895/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2895/comments | https://api.github.com/repos/gedoor/legado/issues/2895/events | https://github.com/gedoor/legado/issues/2895 | 1,633,176,344 | I_kwDOCzQSM85hWEsY | 2,895 | [RhinoJS] 返回值不能为空 | {
"login": "Xwite",
"id": 82232510,
"node_id": "MDQ6VXNlcjgyMjMyNTEw",
"avatar_url": "https://avatars.githubusercontent.com/u/82232510?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Xwite",
"html_url": "https://github.com/Xwite",
"followers_url": "https://api.github.com/users/Xwite/followers",
"following_url": "https://api.github.com/users/Xwite/following{/other_user}",
"gists_url": "https://api.github.com/users/Xwite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Xwite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Xwite/subscriptions",
"organizations_url": "https://api.github.com/users/Xwite/orgs",
"repos_url": "https://api.github.com/users/Xwite/repos",
"events_url": "https://api.github.com/users/Xwite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Xwite/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | false | null | [] | null | [
"OK\n\nXwite ***@***.***> 于 2023年3月21日周二 11:49写道:\n\n> 确认 / Assignments\n>\n> - 搜索现有issues,不存在相似或相关的issue / No similar or related issues\n> - 最新测试版 <https://kunfei.lanzoui.com/b0f810h4b>依然存在此问题 / Latest beta\n> app does not work\n> - 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is\n> not touched by hook frameworks, plugins etc\n>\n> 问题描述 / Describe Bugs\n>\n> js必须有返回值,否则报错java.lang.NullPointerException\n> 复现步骤 / How to reproduce\n>\n> 1. 导入下面书源\n> 2. 点击调试\n>\n> 确认 / Assignment\n>\n> - 已经提交复现所需要的附加资料 / Submit additions related with bugs\n>\n> 其他信息 / Additions\n>\n> {\n> \"bookSourceName\": \"js非空返回值\",\n> \"bookSourceType\": 0,\n> \"bookSourceUrl\": \"https://baidu.cn\",\n> \"customOrder\": 0,\n> \"enabled\": true,\n> \"enabledCookieJar\": true,\n> \"enabledExplore\": true,\n> \"enabledReview\": false,\n> \"lastUpdateTime\": 1679370393370,\n> \"respondTime\": 180000,\n> \"ruleBookInfo\": {},\n> \"ruleContent\": {},\n> \"ruleExplore\": {},\n> \"ruleReview\": {},\n> \"ruleSearch\": {},\n> \"ruleToc\": {},\n> \"searchUrl\": \"<js>\\nnull\\n</js>\",\n> \"weight\": 0\n> }\n>\n> {\n> \"bookSourceName\": \"js非空返回值\",\n> \"bookSourceType\": 0,\n> \"bookSourceUrl\": \"https://baidu.cn/\",\n> \"customOrder\": 0,\n> \"enabled\": true,\n> \"enabledCookieJar\": true,\n> \"enabledExplore\": true,\n> \"enabledReview\": false,\n> \"lastUpdateTime\": 1679370473686,\n> \"respondTime\": 180000,\n> \"ruleBookInfo\": {},\n> \"ruleContent\": {},\n> \"ruleExplore\": {},\n> \"ruleReview\": {},\n> \"ruleSearch\": {},\n> \"ruleToc\": {},\n> \"searchUrl\": \"<js>\\n\\n</js>\",\n> \"weight\": 0\n> }\n>\n> 日志提交 / Relevant log output\n>\n> java.lang.NullPointerException: super.doTopCall(callable…cx, scope, thisObj, args) must not be null\n> \tat f5.f$b.a(RhinoScriptEngine.kt:7)\n> \tat f5.f$b.doTopCall(RhinoScriptEngine.kt:70)\n> \tat org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:8)\n> \tat org.mozilla.javascript.InterpretedFunction.exec(InterpretedFunction.java:23)\n> \tat org.mozilla.javascript.Context.evaluateReader(Context.java:7)\n> \tat e5.a.d(AbstractScriptEngine.java:75)\n>\n> java.lang.NullPointerException\n> \tat e5.a.d([AbstractScriptEngine.java:103](http://abstractscriptengine.java:103/))\n> \tat [io.legado.app](http://io.legado.app/).model.analyzeRule.AnalyzeUrl.evalJS(AnalyzeUrl.kt:96)\n>\n> 阅读版本 / Legado version\n>\n> 3.23.0321\n> Android版本 / Android version\n>\n> 12\n> 机型 / Model\n>\n> none\n>\n> —\n> Reply to this email directly, view it on GitHub\n> <https://github.com/gedoor/legado/issues/2895>, or unsubscribe\n> <https://github.com/notifications/unsubscribe-auth/AFNGN373KOOK2M2HQKNY4WTW5EQMZANCNFSM6AAAAAAWB4432E>\n> .\n> You are receiving this because you are subscribed to this thread.Message\n> ID: ***@***.***>\n>\n",
"修复了"
] | 2023-03-21T03:49:22 | 2023-03-21T04:45:38 | 2023-03-21T04:44:41 | COLLABORATOR | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
js必须有返回值,否则报错java.lang.NullPointerException
### 复现步骤 / How to reproduce
1. 导入下面书源
2. 点击调试
### 确认 / Assignment
- [X] 已经提交复现所需要的附加资料 / Submit additions related with bugs
### 其他信息 / Additions
```json
{
"bookSourceName": "js非空返回值",
"bookSourceType": 0,
"bookSourceUrl": "https://baidu.cn",
"customOrder": 0,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"enabledReview": false,
"lastUpdateTime": 1679370393370,
"respondTime": 180000,
"ruleBookInfo": {},
"ruleContent": {},
"ruleExplore": {},
"ruleReview": {},
"ruleSearch": {},
"ruleToc": {},
"searchUrl": "<js>\nnull\n</js>",
"weight": 0
}
```
```json
{
"bookSourceName": "js非空返回值",
"bookSourceType": 0,
"bookSourceUrl": "https://baidu.cn/",
"customOrder": 0,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"enabledReview": false,
"lastUpdateTime": 1679370473686,
"respondTime": 180000,
"ruleBookInfo": {},
"ruleContent": {},
"ruleExplore": {},
"ruleReview": {},
"ruleSearch": {},
"ruleToc": {},
"searchUrl": "<js>\n\n</js>",
"weight": 0
}
```
### 日志提交 / Relevant log output
```
java.lang.NullPointerException: super.doTopCall(callable…cx, scope, thisObj, args) must not be null
at f5.f$b.a(RhinoScriptEngine.kt:7)
at f5.f$b.doTopCall(RhinoScriptEngine.kt:70)
at org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:8)
at org.mozilla.javascript.InterpretedFunction.exec(InterpretedFunction.java:23)
at org.mozilla.javascript.Context.evaluateReader(Context.java:7)
at e5.a.d(AbstractScriptEngine.java:75)
```
```
java.lang.NullPointerException
at e5.a.d(AbstractScriptEngine.java:103)
at io.legado.app.model.analyzeRule.AnalyzeUrl.evalJS(AnalyzeUrl.kt:96)
```
### 阅读版本 / Legado version
3.23.0321
### Android版本 / Android version
12
### 机型 / Model
none | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2895/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2895/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2894 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2894/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2894/comments | https://api.github.com/repos/gedoor/legado/issues/2894/events | https://github.com/gedoor/legado/issues/2894 | 1,633,083,605 | I_kwDOCzQSM85hVuDV | 2,894 | - | {
"login": "821938089",
"id": 8674809,
"node_id": "MDQ6VXNlcjg2NzQ4MDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/8674809?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/821938089",
"html_url": "https://github.com/821938089",
"followers_url": "https://api.github.com/users/821938089/followers",
"following_url": "https://api.github.com/users/821938089/following{/other_user}",
"gists_url": "https://api.github.com/users/821938089/gists{/gist_id}",
"starred_url": "https://api.github.com/users/821938089/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/821938089/subscriptions",
"organizations_url": "https://api.github.com/users/821938089/orgs",
"repos_url": "https://api.github.com/users/821938089/repos",
"events_url": "https://api.github.com/users/821938089/events{/privacy}",
"received_events_url": "https://api.github.com/users/821938089/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-03-21T01:08:41 | 2023-03-21T01:10:16 | 2023-03-21T01:08:54 | COLLABORATOR | null | null | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2894/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2894/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2893 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2893/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2893/comments | https://api.github.com/repos/gedoor/legado/issues/2893/events | https://github.com/gedoor/legado/issues/2893 | 1,632,742,978 | I_kwDOCzQSM85hUa5C | 2,893 | 书源本地导入格式不对… | {
"login": "a8214983",
"id": 84130703,
"node_id": "MDQ6VXNlcjg0MTMwNzAz",
"avatar_url": "https://avatars.githubusercontent.com/u/84130703?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/a8214983",
"html_url": "https://github.com/a8214983",
"followers_url": "https://api.github.com/users/a8214983/followers",
"following_url": "https://api.github.com/users/a8214983/following{/other_user}",
"gists_url": "https://api.github.com/users/a8214983/gists{/gist_id}",
"starred_url": "https://api.github.com/users/a8214983/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/a8214983/subscriptions",
"organizations_url": "https://api.github.com/users/a8214983/orgs",
"repos_url": "https://api.github.com/users/a8214983/repos",
"events_url": "https://api.github.com/users/a8214983/events{/privacy}",
"received_events_url": "https://api.github.com/users/a8214983/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 2527861313,
"node_id": "MDU6TGFiZWwyNTI3ODYxMzEz",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E8%A1%A5%E5%85%85",
"name": "补充",
"color": "db5bff",
"default": false,
"description": "B9.缺乏有用信息,需要用户补充"
}
] | closed | false | null | [] | null | [
"上传书源文件",
"我把书源导出后再本地导入都会显示格式不对\r\n\r\n在网路上下载的书源也是这样\r\n![Screenshot_20230321-150512](https://user-images.githubusercontent.com/84130703/226539556-645a968b-4d79-4f54-a8e4-e9b50017b507.jpg)\r\n\r\n不会上传档案只能放图片\r\n",
"![image](https://user-images.githubusercontent.com/8674809/226560425-4e80dbd9-2b9a-4281-979d-b237fba2c76b.png)\r\n点一下这里就能上传文件了,文件后缀名可能需要改成txt才能上传",
"[shareBookSource.txt](https://github.com/gedoor/legado/files/11041541/shareBookSource.txt)\r\n我的书源有2千多个,想要在加入1千多个书源本地导入都会显示格式不对,删掉全部书源在导入倒是可以导入。",
"应该是应用内存不足,你把阅读关掉,然后用系统文件管理打开书源文件导入"
] | 2023-03-20T19:35:08 | 2023-03-26T14:23:26 | 2023-03-26T14:23:26 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
我的本地书源导入没办法导入耶,都显示格式不对,已经重复很多次了都一样不知道怎么回事。
![Screenshot_20230321-032253](https://user-images.githubusercontent.com/84130703/226446750-ddab75c9-b2a9-4aef-892b-4eddc577ac48.jpg)
### 复现步骤 / How to reproduce
我的>书源管理>本地导入>点选要导入的档案>格式错误
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.032021
### Android版本 / Android version
Android 6.0.1
### 机型 / Model
ASUS ZE550KL
### 其他信息 / Additions
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2893/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2893/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2892 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2892/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2892/comments | https://api.github.com/repos/gedoor/legado/issues/2892/events | https://github.com/gedoor/legado/issues/2892 | 1,632,529,911 | I_kwDOCzQSM85hTm33 | 2,892 | 恢复不了在系统文件里的备份 | {
"login": "Yoseimiu",
"id": 128408069,
"node_id": "U_kgDOB6daBQ",
"avatar_url": "https://avatars.githubusercontent.com/u/128408069?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Yoseimiu",
"html_url": "https://github.com/Yoseimiu",
"followers_url": "https://api.github.com/users/Yoseimiu/followers",
"following_url": "https://api.github.com/users/Yoseimiu/following{/other_user}",
"gists_url": "https://api.github.com/users/Yoseimiu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Yoseimiu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Yoseimiu/subscriptions",
"organizations_url": "https://api.github.com/users/Yoseimiu/orgs",
"repos_url": "https://api.github.com/users/Yoseimiu/repos",
"events_url": "https://api.github.com/users/Yoseimiu/events{/privacy}",
"received_events_url": "https://api.github.com/users/Yoseimiu/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
}
] | closed | false | null | [] | null | [
"没法复现这个错误"
] | 2023-03-20T17:07:06 | 2023-03-26T14:23:36 | 2023-03-26T14:23:36 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
我用恢复功能,选择了系统文件里的备份文件。有跳出来显示“恢复成功“,可是日记显示“读取排版配置文件出错”。"恢复复制文件出错 Invalid URl: content://com.android.externalstorage.documents/document/primary%3ANovel%2Fbackup2023-03-20-2109119DC.zip"
就算我重新备份在选择恢复也还是有问题。
### 复现步骤 / How to reproduce
我的 -> 备份与恢复 -> 恢复 (长按)选择恢复文件
### 日志提交 / Relevant log output
java.lang.NullPointerException: null cannot be cast to non-null type kotlin.collections.List<T of io.legado.app.utils.GsonExtensionsKt.fromJsonArray$lambda$1>
at io.legado.app.help.config.ReadBookConfig.initConfigs(ReadBookConfig.kt:35)
at io.legado.app.help.storage.e$c.invokeSuspend(Restore.kt:243)
at io.legado.app.help.storage.e$c.invoke(Restore.kt:2)
at io.legado.app.help.storage.e$c.invoke(Restore.kt:1)
at com.google.common.collect.q0.s(Iterables.java:5)
at z4.d.t0(RhinoClassShutter.java:72)
at io.legado.app.help.storage.e.b(Restore.kt:68)
at io.legado.app.help.storage.e.a(Restore.kt:227)
at io.legado.app.ui.config.BackupConfigFragment$h.invokeSuspend(BackupConfigFragment.kt:35)
at io.legado.app.ui.config.BackupConfigFragment$h.invoke(BackupConfigFragment.kt:2)
at io.legado.app.ui.config.BackupConfigFragment$h.invoke(BackupConfigFragment.kt:1)
at io.legado.app.help.coroutine.f.invokeSuspend(Coroutine.kt:61)
at i6.a.resumeWith(ContinuationImpl.kt:9)
at kotlinx.coroutines.j0.run(DispatchedTask.kt:119)
at kotlinx.coroutines.internal.f.run(LimitedDispatcher.kt:13)
at kotlinx.coroutines.scheduling.j.run(Tasks.kt:3)
at kotlinx.coroutines.scheduling.a$b.run(CoroutineScheduler.kt:82)
### 阅读版本 / Legado version
3.23.031210
### Android版本 / Android version
Android 12/13
### 机型 / Model
Xiaomi mi11 / oppo find n2 flip
### 其他信息 / Additions
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2892/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2892/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2891 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2891/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2891/comments | https://api.github.com/repos/gedoor/legado/issues/2891/events | https://github.com/gedoor/legado/issues/2891 | 1,632,350,601 | I_kwDOCzQSM85hS7GJ | 2,891 | web服务添加URL设置 | {
"login": "Animism001",
"id": 67316410,
"node_id": "MDQ6VXNlcjY3MzE2NDEw",
"avatar_url": "https://avatars.githubusercontent.com/u/67316410?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Animism001",
"html_url": "https://github.com/Animism001",
"followers_url": "https://api.github.com/users/Animism001/followers",
"following_url": "https://api.github.com/users/Animism001/following{/other_user}",
"gists_url": "https://api.github.com/users/Animism001/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Animism001/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Animism001/subscriptions",
"organizations_url": "https://api.github.com/users/Animism001/orgs",
"repos_url": "https://api.github.com/users/Animism001/repos",
"events_url": "https://api.github.com/users/Animism001/events{/privacy}",
"received_events_url": "https://api.github.com/users/Animism001/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527793356,
"node_id": "MDU6TGFiZWwyNTI3NzkzMzU2",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%BF%BD%E7%95%A5",
"name": "忽略",
"color": "AAAAAA",
"default": false,
"description": "与本工程无关"
}
] | closed | true | null | [] | null | [
"帮你问了一下ChatGPT,以下为回答:\r\n\r\n---\r\n\r\n默认情况下,`location` 中的 `path` 会被传递到被代理服务器中。也就是说,当 Nginx 接收到一个请求,并通过 `location` 指令将其代理到后端服务器时,Nginx 会将这个请求的 URI(包括 `path` 部分)一并发送给后端服务器。\r\n\r\n例如,如果有以下配置:\r\n\r\n```\r\nlocation /foo/ {\r\n proxy_pass http://backendserver;\r\n}\r\n```\r\n\r\n当客户端发送请求 `http://nginx-server/foo/bar` 时,Nginx 会将该请求转发到 `http://backendserver/foo/bar`。\r\n\r\n但是,有些情况下,我们可能不希望将 `path` 参数传递给后端服务器,而是直接将请求发送到后端服务器的根路径。这可以通过在 `proxy_pass` 中使用 `/` 来实现:\r\n\r\n```\r\nlocation /foo/ {\r\n proxy_pass http://backendserver/;\r\n}\r\n```\r\n\r\n在这种情况下,无论客户端请求的是何种路径,都会被转发到 `http://backendserver/`。\r\n\r\n需要注意的是,如果 `proxy_pass` 后面没有加反斜杠 `/`,则被代理的服务器地址和客户端请求的路径会被拼接在一起。如果带有反斜杠 `/`,则会将客户端路径替换为代理服务器路径。",
"十分感谢,我照这样设置nginx,的确可以访问到阅读的web服务了,但是进入书架的时候基本设定那里却显示后端连接失败了。不懂这些编程知识,只能按照网上给的教程照做,所以很多地方都不明白,遇到问题也不知道怎么解决,只能求助开发者了\r\n***@***.***\r\n"
] | 2023-03-20T15:27:49 | 2023-03-21T03:52:55 | 2023-03-21T03:52:55 | NONE | null | ### 确认
- [X] 搜索现有issues,不存在相似或相关的issue
### 功能描述
web服务能不能多个设置BASE_URL的功能,nginx代理如果设置了location /api,IP:PORT/api就不能访问到阅读的web了,不加子目录用IP:PORT访问就没问题,但是还有别的服务也需要代理,所以能不能添加个设置,从而可以使用ip:port/xxx这样的访问地址打开web服务
### 期望实现方式
web服务能不能多个设置BASE_URL的功能,nginx代理如果设置了location /api,IP:PORT/api就不能访问到阅读的web了,不加子目录用IP:PORT访问就没问题,但是还有别的服务也需要代理
### 附加信息
_No response_
### 效果演示
原先打开web服务是127.0.0.1:1122,希望可以在默认127.0.0.1:1122的基础上允许用户设置路径,用127.0.0.1:1122/xxx来打开,方便设置nginx代理
| {
"url": "https://api.github.com/repos/gedoor/legado/issues/2891/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2891/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2890 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2890/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2890/comments | https://api.github.com/repos/gedoor/legado/issues/2890/events | https://github.com/gedoor/legado/issues/2890 | 1,632,335,470 | I_kwDOCzQSM85hS3Zu | 2,890 | 求助:写的书源每次在书架页面刷新的时候,目录加载时间巨长 | {
"login": "marujun",
"id": 1955015,
"node_id": "MDQ6VXNlcjE5NTUwMTU=",
"avatar_url": "https://avatars.githubusercontent.com/u/1955015?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/marujun",
"html_url": "https://github.com/marujun",
"followers_url": "https://api.github.com/users/marujun/followers",
"following_url": "https://api.github.com/users/marujun/following{/other_user}",
"gists_url": "https://api.github.com/users/marujun/gists{/gist_id}",
"starred_url": "https://api.github.com/users/marujun/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/marujun/subscriptions",
"organizations_url": "https://api.github.com/users/marujun/orgs",
"repos_url": "https://api.github.com/users/marujun/repos",
"events_url": "https://api.github.com/users/marujun/events{/privacy}",
"received_events_url": "https://api.github.com/users/marujun/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"目录地址直接用最后一页的就行,不过也就只有最后一页的章节\r\n\r\n这个网站有桌面版的页面,你可以用桌面版的页面获取目录,一次性就能全部获取完",
"@821938089 大佬,我按照你的方案取目录的时候改为使用桌面版的网站。正常刷新速度都没有问题了,但是在刚启动App和切换网络的时候刷新书架经常会报错。所以有3点疑问麻烦帮忙看下:\r\n\r\n1. 刷新书架的时候会不会走搜索的逻辑,是直接请求详情页还是目录页?\r\n2. 我想要在App首页的日志中打印出请求的URL和参数应该怎么做,方便排查报错的原因。\r\n3. 如果在请求目录页和详情页的时候如果想要使用webview应该怎么做呢?(搜索页是用的移动端网站不会触发网站的防机器人策略)\r\n```json\r\n{\r\n \"bookSourceComment\": \"\",\r\n \"bookSourceGroup\": \"\",\r\n \"bookSourceName\": \"笔趣VIP\",\r\n \"bookSourceType\": 0,\r\n \"bookSourceUrl\": \"https://www.biqu.vip\",\r\n \"bookUrlPattern\": \"\",\r\n \"concurrentRate\": \"\",\r\n \"customOrder\": -2085978142,\r\n \"enabled\": true,\r\n \"enabledCookieJar\": false,\r\n \"enabledExplore\": false,\r\n \"enabledReview\": false,\r\n \"exploreUrl\": \"\",\r\n \"header\": \"\",\r\n \"lastUpdateTime\": 1679455720007,\r\n \"loginCheckJs\": \"\",\r\n \"loginUi\": \"\",\r\n \"loginUrl\": \"\",\r\n \"respondTime\": 180000,\r\n \"ruleBookInfo\": {\r\n \"author\": \"#maininfo #info p.0@text##作 者:\",\r\n \"coverUrl\": \"#sidebar img.0@src\",\r\n \"intro\": \"#maininfo #intro p.0@text\",\r\n \"kind\": \"\",\r\n \"lastChapter\": \".box_con #list dd a.0@text\",\r\n \"name\": \"#maininfo #info h1@text\",\r\n \"tocUrl\": \"\"\r\n },\r\n \"ruleContent\": {\r\n \"content\": \".box_con #content@html\",\r\n \"nextContentUrl\": \"\",\r\n \"replaceRegex\": \"##一秒记住【笔趣阁vip.*精彩小说无弹窗免费阅读!|请记住最新网址:www.biqu.vip|『章节错误,点此举报\\\\(需注册会员\\\\)』,举报后维护人员稍后会校正章节内容。\"\r\n },\r\n \"ruleExplore\": {},\r\n \"ruleReview\": {},\r\n \"ruleSearch\": {\r\n \"author\": \"a.1@text\",\r\n \"bookList\": \"<js>java.log(result)</js>.searchresult .sone\",\r\n \"bookUrl\": \"a.0@href##^/##https://www\\\\.biqu\\\\.vip/\",\r\n \"checkKeyWord\": \"\",\r\n \"kind\": \"\",\r\n \"lastChapter\": \"\",\r\n \"name\": \"a.0@text\",\r\n \"wordCount\": \"\"\r\n },\r\n \"ruleToc\": {\r\n \"chapterList\": \"<js>java.log(result)</js>.box_con #list dd a\",\r\n \"chapterName\": \"text\",\r\n \"chapterUrl\": \"href\",\r\n \"nextTocUrl\": \"\",\r\n \"preUpdateJs\": \"\"\r\n },\r\n \"searchUrl\": \"@js:\\nurl='https://m.biqu.vip/s.php';\\noption={\\\"charset\\\":\\\"gbk\\\",\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"s={{key}}&type=articlename\\\"};\\noption.headers={\\\"User-Agent\\\":\\\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\\\"};\\njava.put('url',String(url+','+JSON.stringify(option)))\",\r\n \"weight\": 0\r\n}\r\n```\r\n![Screenshot_2023-03-22-11-04-52-218_io legado app release-edit](https://user-images.githubusercontent.com/1955015/226794358-ad33daac-5692-45c0-9b24-bffc58e9696b.jpg)\r\n因?",
"1. 不走搜索逻辑,直接请求目录页\r\n2. 用`java.log()`打印,如果要具体请求去抓包看看\r\n3. 在地址最后加上`,{\"webView\": true}`",
"@821938089 第2个,我在列表规则里使用<js>java.log(url)</js>的时候会报错,log(result)打印出来的是HTML页面内容,应该打印哪个字段呢?在某个阶段可打印的字段有没有文档可以查?\r\n```\r\ncom.script.ScriptException: org.mozilla.javascript.EcmaError: ReferenceError: \"url\" is not defined. (<Unknown source>#1) in <Unknown source> at line number 1\r\n\tat e5.a.d(AbstractScriptEngine.java:156)\r\n\tat io.legado.app.model.analyzeRule.AnalyzeRule.evalJS(AnalyzeRule.kt:98)\r\n\tat io.legado.app.model.analyzeRule.AnalyzeRule.getElements(AnalyzeRule.kt:142)\r\n\tat io.legado.app.model.webBook.c.b(BookChapterList.kt:7)\r\n\tat io.legado.app.model.webBook.c.a(BookChapterList.kt:18)\r\n\tat io.legado.app.model.webBook.l.g(WebBook.kt:187)\r\n\tat io.legado.app.model.webBook.n.invokeSuspend(WebBook.kt:41)\r\n\tat io.legado.app.model.webBook.n.invoke(WebBook.kt:2)\r\n\tat io.legado.app.model.webBook.n.invoke(WebBook.kt:1)\r\n\tat io.legado.app.help.coroutine.e.invokeSuspend(Coroutine.kt:61)\r\n\tat p6.a.resumeWith(ContinuationImpl.kt:9)\r\n\tat kotlinx.coroutines.j0.run(DispatchedTask.kt:119)\r\n\tat kotlinx.coroutines.internal.f.run(LimitedDispatcher.kt:13)\r\n\tat kotlinx.coroutines.scheduling.i.run(Tasks.kt:3)\r\n\tat kotlinx.coroutines.scheduling.a$b.run(CoroutineScheduler.kt:82)\r\n```",
"去对应的url规则那里打印",
"@821938089 我在目录页加上webview之后正常的刷新和调试都不会再报错了,但是我把App杀死放了一段时间之后再打开还是报错如下图,再次刷新就好了,所以webview的参数在打开App之后书架的首次刷新时是不是没有被记住啊?正常来说使用webview之后就不会出现这个错误了,这是网站防止机器人的措施\r\n```json\r\n{\r\n \"bookSourceComment\": \"\",\r\n \"bookSourceGroup\": \"\",\r\n \"bookSourceName\": \"笔趣VIP\",\r\n \"bookSourceType\": 0,\r\n \"bookSourceUrl\": \"https://www.biqu.vip\",\r\n \"bookUrlPattern\": \"\",\r\n \"concurrentRate\": \"\",\r\n \"customOrder\": -2085978143,\r\n \"enabled\": true,\r\n \"enabledCookieJar\": false,\r\n \"enabledExplore\": false,\r\n \"enabledReview\": false,\r\n \"exploreUrl\": \"\",\r\n \"header\": \"\",\r\n \"lastUpdateTime\": 1679473068836,\r\n \"loginCheckJs\": \"\",\r\n \"loginUi\": \"\",\r\n \"loginUrl\": \"\",\r\n \"respondTime\": 180000,\r\n \"ruleBookInfo\": {\r\n \"author\": \"#maininfo #info p.0@text##作 者:\",\r\n \"coverUrl\": \"#sidebar img.0@src\",\r\n \"intro\": \"#maininfo #intro p.0@text\",\r\n \"kind\": \"\",\r\n \"lastChapter\": \".box_con #list dd a.0@text\",\r\n \"name\": \"#maininfo #info h1@text\",\r\n \"tocUrl\": \"\"\r\n },\r\n \"ruleContent\": {\r\n \"content\": \".box_con #content@html\",\r\n \"nextContentUrl\": \"\",\r\n \"replaceRegex\": \"##一秒记住【笔趣阁vip.*精彩小说无弹窗免费阅读!|请记住最新网址:www.biqu.vip|『章节错误,点此举报\\\\(需注册会员\\\\)』,举报后维护人员稍后会校正章节内容。\"\r\n },\r\n \"ruleExplore\": {},\r\n \"ruleReview\": {},\r\n \"ruleSearch\": {\r\n \"author\": \".odd@text\",\r\n \"bookList\": \"<js>java.log(result)</js>#nr\",\r\n \"bookUrl\": \".odd.0@a@href@js:java.log(result+',{\\\"webView\\\": true}');\",\r\n \"checkKeyWord\": \"\",\r\n \"kind\": \"\",\r\n \"lastChapter\": \".even.0@a@text\",\r\n \"name\": \".odd.0@a@text\",\r\n \"wordCount\": \".even.1@text\"\r\n },\r\n \"ruleToc\": {\r\n \"chapterList\": \"<js>java.log(result)</js>.box_con #list dd a\",\r\n \"chapterName\": \"text\",\r\n \"chapterUrl\": \"href@js:result+',{\\\"webView\\\": true}'\",\r\n \"nextTocUrl\": \"\",\r\n \"preUpdateJs\": \"\"\r\n },\r\n \"searchUrl\": \"@js:\\nurl='https://www.biqu.vip/modules/article/biqugeso.php';\\noption={\\\"charset\\\":\\\"gbk\\\",\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"searchkey={{key}}&searchtype=articlename\\\",\\\"webView\\\": true};\\noption.headers={\\\"User-Agent\\\":\\\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\\\"};\\njava.put('url',String(url+','+JSON.stringify(option)))\",\r\n \"weight\": 0\r\n}\r\n```\r\n![Screenshot_2023-03-22-15-10-24-436_io legado app release](https://user-images.githubusercontent.com/1955015/226842184-4f690e58-d39c-4417-89b9-0ce510faf014.jpg)\r\n",
"webView有时可能加载不出来,你多试几次就好了",
"@821938089 针对这种webview加载不出来的情况,有办法可以自动重试几次吗?每次都手动刷新感觉不够智能",
"你可以写规则自动重试\r\n`java.ajax(baseUrl)`",
"@821938089 大佬,调试的时候我在获取详情地址那里这么写:.odd.0@a@href@js:url=result+',{\"webView\": true}';html=java.ajax(url);last=html.includes('doctype')?'retry sucess':html;java.log(last) 一直打印不出来retry sucess;能帮忙改一改吗?脑细胞不够用了",
"html里面没有doctype,所以打印不出来retry sucess,你看一下html的内容就知道了\r\n\r\n重试代码写在详情预处理规则那里",
"@821938089 有点痛苦,详情预处理那里实在不知道该咋写了;能帮忙写个例子不",
"```js\r\n@js:\r\nif (正确的页面) {\r\nresult\r\n} else {\r\nhtml=java.ajax(baseUrl)\r\n\r\n重试逻辑。。。\r\n\r\nhtml // 正确的html\r\n}\r\n```",
"@821938089 首先感谢大佬的耐心解答,(捂脸哭)又遇到了2个问题:\r\n1、把重试的逻辑写在详情预处理那里,书架页刷新书架的时候并不会执行预处理的逻辑(没有输出我打的日志)\r\n2、如果书源详情页存在重定向的时候,详情预处理的时候,在书源debug那里打印出的baseUrl和在书架页的书籍详情页里点击刷新打印出的baseUrl不一样(前者打印出的是重定向之后的url,后者打印出的是重定向之前的url)两个地方表现不一致应该统一一下?我觉得debug那里的逻辑更合理一点\r\n```\r\n@js:\r\njava.log('详情预处理baseUrl:' + baseUrl);\r\nurl=baseUrl + (baseUrl.indexOf('webView')!=-1?'':',{\"webView\": true}');\r\njava.put('tocUrl', url);\r\nif (book.name !== '') {\r\n java.log('详情页表现正常,不用预处理' + url);\r\n result\r\n} else {\r\n java.log('详情页表现异常,即将重试!' + url);\r\n java.ajax(url)\r\n}\r\n```\r\n![IMG_20230323_102451](https://user-images.githubusercontent.com/1955015/227085636-87dfbd77-fa34-452d-b045-15794aa75ec5.jpg)\r\n![IMG_20230323_102658](https://user-images.githubusercontent.com/1955015/227085652-a7d7448d-30aa-404a-afe9-c3d9477c14c6.jpg)\r\n",
"1. 那就把重试逻辑复制到目录列表规则那里\r\n2. 把详情地址用java.put存一下\r\n\r\n发一下规则让我看一下",
"@821938089 第2个,我想要存重定向之后的URL,应该读哪个字段(想要书籍详情刷新的时候也使用重定向之后的URL)\r\n使用这个书源调试 择日飞升\r\n```json\r\n{\r\n \"bookSourceComment\": \"\",\r\n \"bookSourceGroup\": \"\",\r\n \"bookSourceName\": \"笔趣VIP\",\r\n \"bookSourceType\": 0,\r\n \"bookSourceUrl\": \"https://www.biqu.vip\",\r\n \"bookUrlPattern\": \"\",\r\n \"concurrentRate\": \"\",\r\n \"customOrder\": -2085978146,\r\n \"enabled\": true,\r\n \"enabledCookieJar\": false,\r\n \"enabledExplore\": false,\r\n \"enabledReview\": false,\r\n \"exploreUrl\": \"\",\r\n \"header\": \"\",\r\n \"lastUpdateTime\": 1679542052844,\r\n \"loginCheckJs\": \"\",\r\n \"loginUi\": \"\",\r\n \"loginUrl\": \"\",\r\n \"respondTime\": 180000,\r\n \"ruleBookInfo\": {\r\n \"author\": \"#maininfo #info p.0@text##.*:\",\r\n \"coverUrl\": \"#sidebar img.0@src\",\r\n \"init\": \"@js:\\njava.log('详情预处理baseUrl:' + baseUrl);\\nurl=baseUrl + (baseUrl.indexOf('webView')!=-1?'':',{\\\"webView\\\": true}');\\njava.put('tocUrl', url);\\nif (book.name !== '') {\\n java.log('详情页表现正常,不用预处理' + url);\\n result\\n} else {\\n java.log('详情页表现异常,即将重试!' + url);\\n java.ajax(url)\\n}\",\r\n \"intro\": \"#maininfo #intro p.0@text\",\r\n \"kind\": \"\",\r\n \"lastChapter\": \".box_con #list dd a.0@text\",\r\n \"name\": \"#maininfo #info h1@text\",\r\n \"tocUrl\": \"@js:java.get('tocUrl')\"\r\n },\r\n \"ruleContent\": {\r\n \"content\": \".box_con #content@html\",\r\n \"nextContentUrl\": \"\",\r\n \"replaceRegex\": \"##一秒记住【笔趣阁vip.*精彩小说无弹窗免费阅读!|请记住最新网址:www.biqu.vip|『章节错误,点此举报\\\\(需注册会员\\\\)』,举报后维护人员稍后会校正章节内容。\"\r\n },\r\n \"ruleExplore\": {},\r\n \"ruleReview\": {},\r\n \"ruleSearch\": {\r\n \"author\": \".odd.1@text\",\r\n \"bookList\": \"#nr\",\r\n \"bookUrl\": \".odd.0@a@href@js:result+',{\\\"webView\\\": true}'\",\r\n \"checkKeyWord\": \"\",\r\n \"kind\": \"\",\r\n \"lastChapter\": \".even.0@a@text\",\r\n \"name\": \".odd.0@a@text\",\r\n \"wordCount\": \".even.1@text\"\r\n },\r\n \"ruleToc\": {\r\n \"chapterList\": \"<js>html=result;java.log(book.name+book.tocUrl+'\\\\n');html</js>.box_con #list dd a\",\r\n \"chapterName\": \"text\",\r\n \"chapterUrl\": \"href@js:result+',{\\\"webView\\\": true}'\",\r\n \"nextTocUrl\": \"\",\r\n \"preUpdateJs\": \"\"\r\n },\r\n \"searchUrl\": \"@js:\\nurl='https://www.biqu.vip/modules/article/biqugeso.php';\\noption={\\\"charset\\\":\\\"gbk\\\",\\\"method\\\":\\\"POST\\\",\\\"body\\\":\\\"searchkey={{key}}&searchtype=articlename\\\",\\\"webView\\\": true};\\noption.headers={\\\"User-Agent\\\":\\\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\\\"};\\njava.put('url',String(url+','+JSON.stringify(option)))\",\r\n \"weight\": 0\r\n}\r\n```",
"就用baseUrl啊,不过要判断一下只存正确的",
"@821938089 额, 可是在书籍详情页那里点击刷新得到的baseUrl就是错的,拿不到正确的",
"搜索的时候是正确的,一旦拿到正确的就可以一直用",
"> 搜索的时候是正确的,一旦拿到正确的就可以一直用\r\n\r\n的确是这样的,感谢"
] | 2023-03-20T15:20:33 | 2023-03-24T08:16:23 | 2023-03-24T08:16:23 | NONE | null | ### 确认
- [X] 搜索现有issues,不存在相似或相关的issue
### 功能描述
写了一个书源,在使用过程中发现,每次在书架页面刷新时后台都会从第一页开始加载目录;看的书有1000多章但是这个站点一页只显示20条目录,这样就需要加载50多次才能刷新完所以时间太长了。有没有办法在App首页刷新的时候从上一次加载的最后一页目录开始加载?这样只加载新的章节目录,而不用全部重新加载一遍。
复现过程,使用这个书源去搜索:深空彼岸
```
{
"bookSourceComment": "",
"bookSourceGroup": "",
"bookSourceName": "笔趣VIP",
"bookSourceType": 0,
"bookSourceUrl": "https://m.biqu.vip/",
"bookUrlPattern": "",
"concurrentRate": "",
"customOrder": -2085978140,
"enabled": true,
"enabledCookieJar": false,
"enabledExplore": false,
"enabledReview": false,
"exploreUrl": "",
"header": "",
"lastUpdateTime": 1679324967882,
"loginCheckJs": "",
"loginUi": "",
"loginUrl": "",
"respondTime": 180000,
"ruleBookInfo": {
"author": ".infotype a.0@text",
"coverUrl": ".pic img@src",
"intro": ".intro p.0@text",
"kind": ".infotype p.1@text##类型:",
"lastChapter": ".infotype a.1@text",
"name": ".cataloginfo h3@text",
"tocUrl": ".intro p.1@text##.*"
},
"ruleContent": {
"content": "#novelcontent #nr@html",
"nextContentUrl": "text.下一页@href",
"replaceRegex": "##一秒记住【笔趣阁vip.*精彩小说无弹窗免费阅读!|(本章未完,请点击下一页继续阅读)|\\(第\\d/\\d页\\),|\\(第\\d/\\d页\\)|{{title}}"
},
"ruleExplore": {},
"ruleReview": {},
"ruleSearch": {
"author": "a.1@text",
"bookList": ".searchresult p",
"bookUrl": "@css:.sone>a@href",
"name": "a.0@text"
},
"ruleToc": {
"chapterList": ".info_menu1.1@.list_xm li a",
"chapterName": "text",
"chapterUrl": "href",
"nextTocUrl": "text.下一页@href"
},
"searchUrl": "https://m.biqu.vip/s.php,{\n \"charset\": \"gbk\",\n \"method\": \"POST\",\n \"body\": \"s={{key}}&type=articlename\"\n}",
"weight": 0
}
```
### 期望实现方式
在书架页刷新的时候能否从上一次加载的目录最后一页开始刷新?这样只加载新的章节目录,而不用全部重新加载一遍
### 附加信息
_No response_
### 效果演示
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2890/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2890/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2889 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2889/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2889/comments | https://api.github.com/repos/gedoor/legado/issues/2889/events | https://github.com/gedoor/legado/issues/2889 | 1,631,127,906 | I_kwDOCzQSM85hOQli | 2,889 | 乱码 | {
"login": "8ithu6",
"id": 100113495,
"node_id": "U_kgDOBfecVw",
"avatar_url": "https://avatars.githubusercontent.com/u/100113495?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/8ithu6",
"html_url": "https://github.com/8ithu6",
"followers_url": "https://api.github.com/users/8ithu6/followers",
"following_url": "https://api.github.com/users/8ithu6/following{/other_user}",
"gists_url": "https://api.github.com/users/8ithu6/gists{/gist_id}",
"starred_url": "https://api.github.com/users/8ithu6/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/8ithu6/subscriptions",
"organizations_url": "https://api.github.com/users/8ithu6/orgs",
"repos_url": "https://api.github.com/users/8ithu6/repos",
"events_url": "https://api.github.com/users/8ithu6/events{/privacy}",
"received_events_url": "https://api.github.com/users/8ithu6/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [
"上传有问题的epub",
"貌似是个bug,下载epub 后在通知栏里直接打开显示乱码,但是到下载的存储位置打开就正常。"
] | 2023-03-19T21:40:20 | 2023-03-21T03:08:29 | 2023-03-21T03:08:29 | NONE | null | 从z library 下载的epub 打开后乱码 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2889/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2889/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2888 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2888/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2888/comments | https://api.github.com/repos/gedoor/legado/issues/2888/events | https://github.com/gedoor/legado/issues/2888 | 1,630,220,253 | I_kwDOCzQSM85hKy_d | 2,888 | 我能否从调试接口获取到某个目录的所有章节 | {
"login": "zhangzw218",
"id": 40768649,
"node_id": "MDQ6VXNlcjQwNzY4NjQ5",
"avatar_url": "https://avatars.githubusercontent.com/u/40768649?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zhangzw218",
"html_url": "https://github.com/zhangzw218",
"followers_url": "https://api.github.com/users/zhangzw218/followers",
"following_url": "https://api.github.com/users/zhangzw218/following{/other_user}",
"gists_url": "https://api.github.com/users/zhangzw218/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zhangzw218/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zhangzw218/subscriptions",
"organizations_url": "https://api.github.com/users/zhangzw218/orgs",
"repos_url": "https://api.github.com/users/zhangzw218/repos",
"events_url": "https://api.github.com/users/zhangzw218/events{/privacy}",
"received_events_url": "https://api.github.com/users/zhangzw218/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"用js把目录打印出来",
"> 用js把目录打印出来\r\n\r\n。。额。回复好快,我还在修改问题。\r\n能否为第3步提供一个专门的查询规则,比如将目录上的++改成**这样,然后就能返回所有目录了。\r\n如果加日志的话,我就需要对原始书源写入其他命令了。",
"这不是吗https://github.com/gedoor/legado/blob/master/api.md",
"> 这不是吗https://github.com/gedoor/legado/blob/master/api.md\r\n\r\n这个应该是获取APP上已经有的书籍?\r\n不存在的书需要先添加一次,那么后续的章节目录的获取,需要APP上去更新一下书籍,没办法通过这个接口实时获得。",
"其实,我就是想将APP当成一个书源规则的服务,提供(搜索、详情、目录、章节)功能。\r\n然后发现,可以通过调试接口,间接达到类似目的。。\r\n不过目录的获取没有那么如意,就来求助,一个不需要修改书源规则就能获取到目录的办法。"
] | 2023-03-18T07:52:52 | 2023-03-26T14:24:43 | 2023-03-26T14:24:43 | NONE | null | ### 确认
- [X] 搜索现有issues,不存在相似或相关的issue
### 功能描述
![image](https://user-images.githubusercontent.com/40768649/226092850-e92e96ca-bdae-43f0-8e86-3277a121a4b4.png)
请问我有没有办法获取到某个目录链接内,所有的章节地址和名称?
### 期望实现方式
1.能否以APP为书源服务器,我通过接口,做二次处理?
2.传入一个书名,返回多个书源搜索结果。
3.传入一个书籍网址,返回所有章节目录。
4.传入一个章节地址,返回章节内容。
……
我目前上面4步,都是通过调试接口来完成,
而第3步,获取目录的方式如图:
但这需要对每个书源输入日志语句
![image](https://user-images.githubusercontent.com/40768649/226093475-67b390fc-44f6-4e5c-aaa9-2c343fe6b9d1.png)
能否为第3步提供一个专门的语句,比如将目录上的++改成**这样,然后就能返回所有目录了?
### 附加信息
_No response_
### 效果演示
_No response_
>
| {
"url": "https://api.github.com/repos/gedoor/legado/issues/2888/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2888/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2887 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2887/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2887/comments | https://api.github.com/repos/gedoor/legado/issues/2887/events | https://github.com/gedoor/legado/issues/2887 | 1,630,076,630 | I_kwDOCzQSM85hKP7W | 2,887 | [Rhino] for of 不能使用 | {
"login": "Xwite",
"id": 82232510,
"node_id": "MDQ6VXNlcjgyMjMyNTEw",
"avatar_url": "https://avatars.githubusercontent.com/u/82232510?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Xwite",
"html_url": "https://github.com/Xwite",
"followers_url": "https://api.github.com/users/Xwite/followers",
"following_url": "https://api.github.com/users/Xwite/following{/other_user}",
"gists_url": "https://api.github.com/users/Xwite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Xwite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Xwite/subscriptions",
"organizations_url": "https://api.github.com/users/Xwite/orgs",
"repos_url": "https://api.github.com/users/Xwite/repos",
"events_url": "https://api.github.com/users/Xwite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Xwite/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | false | null | [] | null | [
"我看看",
"解决了"
] | 2023-03-18T01:32:28 | 2023-03-20T10:29:39 | 2023-03-20T10:29:39 | COLLABORATOR | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
for of在js里不能使用,https://github.com/gedoor/legado/commit/0df2c69539e3917f21f76c0489148540bfb0b0f0 之前是可用的,修复过后就不能用了
### 复现步骤 / How to reproduce
```json
{
"bookSourceName": "for of/in",
"bookSourceType": 0,
"bookSourceUrl": "https://www.baidu.com",
"customOrder": 0,
"enabled": true,
"enabledCookieJar": true,
"enabledExplore": true,
"enabledReview": false,
"lastUpdateTime": 1679102951566,
"respondTime": 180000,
"ruleBookInfo": {},
"ruleContent": {},
"ruleExplore": {},
"ruleReview": {},
"ruleSearch": {},
"ruleToc": {},
"searchUrl": "<js>\nlet a=[1,2,3]\njava.log(\"for \")\nfor (let i = 0,l=a.length;i<l;i++){\n\tjava.log(a[i])\n}\njava.log(\"for of\")\nfor (let o of a){\n\tjava.log(o)\n}\njava.log(\"for in\")\nfor (let o in a){\n\tjava.log(o)\n}\n</js>",
"weight": 0
}
```
导入书源然后调试会报错
`org.mozilla.javascript.EvaluatorException: missing ; after for-loop initializer`
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.031520
### Android版本 / Android version
12
### 机型 / Model
none
### 其他信息 / Additions
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2887/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2887/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2886 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2886/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2886/comments | https://api.github.com/repos/gedoor/legado/issues/2886/events | https://github.com/gedoor/legado/issues/2886 | 1,629,576,318 | I_kwDOCzQSM85hIVx- | 2,886 | 自动备份使用手动备份的命名规则 | {
"login": "Doddddd",
"id": 88972478,
"node_id": "MDQ6VXNlcjg4OTcyNDc4",
"avatar_url": "https://avatars.githubusercontent.com/u/88972478?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Doddddd",
"html_url": "https://github.com/Doddddd",
"followers_url": "https://api.github.com/users/Doddddd/followers",
"following_url": "https://api.github.com/users/Doddddd/following{/other_user}",
"gists_url": "https://api.github.com/users/Doddddd/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Doddddd/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Doddddd/subscriptions",
"organizations_url": "https://api.github.com/users/Doddddd/orgs",
"repos_url": "https://api.github.com/users/Doddddd/repos",
"events_url": "https://api.github.com/users/Doddddd/events{/privacy}",
"received_events_url": "https://api.github.com/users/Doddddd/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [] | 2023-03-17T16:11:41 | 2023-03-26T14:24:56 | 2023-03-26T14:24:56 | NONE | null | ### 确认
- [X] 搜索现有issues,不存在相似或相关的issue
### 功能描述
自动备份使用手动备份的命名规则
### 期望实现方式
自动备份使用手动备份的命名规则
### 附加信息
_No response_
### 效果演示
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2886/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2886/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2885 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2885/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2885/comments | https://api.github.com/repos/gedoor/legado/issues/2885/events | https://github.com/gedoor/legado/issues/2885 | 1,628,630,780 | I_kwDOCzQSM85hEu78 | 2,885 | 书源里的URL栏不一定就得是个链接 | {
"login": "xingluo233",
"id": 54618947,
"node_id": "MDQ6VXNlcjU0NjE4OTQ3",
"avatar_url": "https://avatars.githubusercontent.com/u/54618947?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/xingluo233",
"html_url": "https://github.com/xingluo233",
"followers_url": "https://api.github.com/users/xingluo233/followers",
"following_url": "https://api.github.com/users/xingluo233/following{/other_user}",
"gists_url": "https://api.github.com/users/xingluo233/gists{/gist_id}",
"starred_url": "https://api.github.com/users/xingluo233/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/xingluo233/subscriptions",
"organizations_url": "https://api.github.com/users/xingluo233/orgs",
"repos_url": "https://api.github.com/users/xingluo233/repos",
"events_url": "https://api.github.com/users/xingluo233/events{/privacy}",
"received_events_url": "https://api.github.com/users/xingluo233/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"?不是跟你说了用js生成吗",
"> ?不是跟你说了用js生成吗\n\n这样在url栏还是得填个url啊,我的建议是url栏可以只填个id,不一定就是url",
"![image](https://user-images.githubusercontent.com/8674809/225808842-5de3fdd5-b931-4664-8e98-59c689f4dee6.png)\r\n"
] | 2023-03-17T03:33:21 | 2023-03-17T03:57:15 | 2023-03-17T03:57:15 | NONE | null | ### 确认
- [X] 搜索现有issues,不存在相似或相关的issue
### 功能描述
某个书源,里面的所有url里都有一个uuId,每个uuid只能使用一次,而阅读里,url得先在上个页面生成,这样就会出问题,比如正文页的地址在目录那里就已经生成了,到正文页第一次访问是没问题,但是一刷新就会因为相同的uuid而出问题,而阅读里的url栏又不能只填个id
### 期望实现方式
建议支持只在上个页面只传个bookid到下个页面,URL在下个页面生成,这样就不会出现上面的问题
### 附加信息
_No response_
### 效果演示
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2885/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2885/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2883 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2883/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2883/comments | https://api.github.com/repos/gedoor/legado/issues/2883/events | https://github.com/gedoor/legado/issues/2883 | 1,626,754,261 | I_kwDOCzQSM85g9kzV | 2,883 | 华为手机总是被杀后台 | {
"login": "yangym95",
"id": 98106895,
"node_id": "U_kgDOBdj-Dw",
"avatar_url": "https://avatars.githubusercontent.com/u/98106895?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yangym95",
"html_url": "https://github.com/yangym95",
"followers_url": "https://api.github.com/users/yangym95/followers",
"following_url": "https://api.github.com/users/yangym95/following{/other_user}",
"gists_url": "https://api.github.com/users/yangym95/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yangym95/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yangym95/subscriptions",
"organizations_url": "https://api.github.com/users/yangym95/orgs",
"repos_url": "https://api.github.com/users/yangym95/repos",
"events_url": "https://api.github.com/users/yangym95/events{/privacy}",
"received_events_url": "https://api.github.com/users/yangym95/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 3895981457,
"node_id": "LA_kwDOCzQSM87oN_WR",
"url": "https://api.github.com/repos/gedoor/legado/labels/Stale",
"name": "Stale",
"color": "ededed",
"default": false,
"description": null
}
] | open | false | null | [] | null | [
"朗读设置里面有个唤醒锁,打开它试试",
"> 朗读设置里面有个唤醒锁,打开它试试\r\n\r\n没有变化,锁屏3s左右就停了",
"试了试x点的语音读书,锁屏可以运行",
"后台任务卡片有没有加锁",
"> 后台任务卡片有没有加锁\r\n\r\n啥意思?",
"手机从底部上滑不是会显示多任务么,这里有没有加锁",
"> 手机从底部上滑不是会显示多任务么,这里有没有加锁\r\n\r\n试过加锁了,没变化",
"> 手机从底部上滑不是会显示多任务么,这里有没有加锁\r\n\r\n我感觉是鸿蒙没识别出来阅读的音频,因为开语音之后控制中心里看不见阅读播放,以前能看见",
"那你有没有开了阅读的其他设置里面的忽略音频焦点",
"> 那你有没有开了阅读的其他设置里面的忽略音频焦点\r\n\r\n开过了,基本能设置的我都试过。昨天晚上我刷的gsm框架,有没有关系?一开始我怕是软件的问题,把这两天安装的除了gsm框架以外的app都删了也没变化,才来这提问的。",
"关了忽略音频焦点也一样吗?\r\n\r\n阅读在朗读的时候有没有通知显示?",
"> 关了忽略音频焦点也一样吗?\r\n> \r\n> 阅读在朗读的时候有没有通知显示?\r\n\r\n有通知显示",
"那看一下`我的->关于->崩溃日志`、`书架右上角三点里面的日志`里面有没有东西",
"> 那看一下`我的->关于->崩溃日志`、`书架右上角三点里面的日志`里面有没有东西\r\n\r\n崩溃日志是空白的,书架日志都是小说目录更新失败",
"那不知道是啥问题了,你可以试试备份之后卸载重新安装一下阅读",
"> 那不知道是啥问题了,你可以试试备份之后卸载重新安装一下阅读\r\n\r\n试过了,正式和测试版都试过",
"找不到原因没办法解决,,解锁重新启动应用还是被杀后台了",
"> 找不到原因没办法解决,,解锁重新启动应用还是被杀后台了\r\n\r\n哥们是也有这个问题吗?\r\n什么手机、系统?刷过gms框架吗?哪个版本的app?",
"也遇到这个问题了,经过尝试,最后一个不被杀后台的是3.22.101712,从3.22.102020开始试了很多个版本,不管是朗读还是放后台,都可能被杀,后台关屏朗读100%被杀后台。lz可以尝试3.22.101712",
"不知道是否是3.22.102020版本的“添加web服务唤醒锁开关,默认关闭,有些手机开启唤醒锁会被杀后台”导致的",
"@mortal1976 \r\n你先试一下打开唤醒锁有没有问题\r\n\r\n然后再试一下这个版本有没有问题 [3.22.101709](https://github.com/gedoor/legado/releases/tag/3.22.101709)\r\n",
"> \r\n\r\n今年的版本,不管是否打开唤醒锁都会被杀,我是从新到旧测试的,之前测试过去年7月的版本也没问题,所以大概率是10月后的版本bug",
"> 也遇到这个问题了,经过尝试,最后一个不被杀后台的是3.22.101712,从3.22.102020开始试了很多个版本,不管是朗读还是放后台,都可能被杀,后台关屏朗读100%被杀后台。lz可以尝试3.22.101712\r\n\r\n厉害👍,我用你说的版本就不杀后台了",
"由于长期没有状态更新,该问题将于5天后自动关闭。如有需要可重新打开。"
] | 2023-03-16T05:34:56 | 2023-05-06T01:51:20 | null | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
mate40pro,刷gms了,NOH-ANOO 3.0,3月16日发现阅读3.0听书锁屏会被杀后台
### 复现步骤 / How to reproduce
启动项改手动,允许后台运行、自启动、关联,打开小说听书,锁屏放下手机,后台语音维持3-5s就停了,解锁重新开阅读有启动动画。
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.031520
### Android版本 / Android version
鸿蒙3.0
### 机型 / Model
mate40pro
### 其他信息 / Additions
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2883/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2883/timeline | null | null | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2882 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2882/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2882/comments | https://api.github.com/repos/gedoor/legado/issues/2882/events | https://github.com/gedoor/legado/issues/2882 | 1,625,360,771 | I_kwDOCzQSM85g4QmD | 2,882 | 压缩文件导入 | {
"login": "Xwite",
"id": 82232510,
"node_id": "MDQ6VXNlcjgyMjMyNTEw",
"avatar_url": "https://avatars.githubusercontent.com/u/82232510?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Xwite",
"html_url": "https://github.com/Xwite",
"followers_url": "https://api.github.com/users/Xwite/followers",
"following_url": "https://api.github.com/users/Xwite/following{/other_user}",
"gists_url": "https://api.github.com/users/Xwite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Xwite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Xwite/subscriptions",
"organizations_url": "https://api.github.com/users/Xwite/orgs",
"repos_url": "https://api.github.com/users/Xwite/repos",
"events_url": "https://api.github.com/users/Xwite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Xwite/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | false | null | [] | null | [] | 2023-03-15T11:43:34 | 2023-03-17T10:47:57 | 2023-03-17T10:47:57 | COLLABORATOR | null | ### 确认
- [X] 搜索现有issues,不存在相似或相关的issue
### 功能描述
- [x] 文件类书源
- [x] 本地书籍
- [x] 远程书籍
- [x] 优化网络文件信息获取
- [ ] 支持content-disposition返回头文件下载
- [x] 文件类书源下载urls支持urlOption
### 期望实现方式
* LocalBook集中实现解压文件导入
### 附加信息
_No response_
### 效果演示
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2882/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2882/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2881 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2881/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2881/comments | https://api.github.com/repos/gedoor/legado/issues/2881/events | https://github.com/gedoor/legado/issues/2881 | 1,624,818,199 | I_kwDOCzQSM85g2MIX | 2,881 | 文件类书源:重复请求 | {
"login": "Xwite",
"id": 82232510,
"node_id": "MDQ6VXNlcjgyMjMyNTEw",
"avatar_url": "https://avatars.githubusercontent.com/u/82232510?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Xwite",
"html_url": "https://github.com/Xwite",
"followers_url": "https://api.github.com/users/Xwite/followers",
"following_url": "https://api.github.com/users/Xwite/following{/other_user}",
"gists_url": "https://api.github.com/users/Xwite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Xwite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Xwite/subscriptions",
"organizations_url": "https://api.github.com/users/Xwite/orgs",
"repos_url": "https://api.github.com/users/Xwite/repos",
"events_url": "https://api.github.com/users/Xwite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Xwite/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | false | null | [] | null | [
"{\r\n \"bookSourceComment\": \"http://www.freexiaoshuo.com/book/dushiyule/2018/04/268.html\\n\\n本地下载\\nhttp://www.freexiaoshuo.com/plus/download.php?open=2&id=268&uhash=d6d2d815fc555e78ae6fbc4c\\n跳转真实下载地址\\nhttp://www.freexiaoshuo.com/uploads/soft/180414/1-1P414102236.rar\\n\\n\\n\\n<js>java.ajax(\\\"http://www.freexiaoshuo.com\\\"+result.get(0))</js>\",\r\n \"bookSourceGroup\": \"\",\r\n \"bookSourceName\": \"㊦免费小说\",\r\n \"bookSourceType\": 3,\r\n \"bookSourceUrl\": \"http://www.freexiaoshuo.com##ycmd\",\r\n \"customOrder\": -2085984610,\r\n \"enabled\": true,\r\n \"enabledCookieJar\": true,\r\n \"enabledExplore\": true,\r\n \"enabledReview\": false,\r\n \"exploreUrl\": \"[{\\\"title\\\":\\\"都市娱乐\\\",\\\"url\\\":\\\"/a/dushiyule/list_12_{{page}}.html\\\",\\\"style\\\":{\\\"layout_flexBasisPercent\\\":0.25,\\\"layout_flexGrow\\\":1}},{\\\"title\\\":\\\"武侠仙侠\\\",\\\"url\\\":\\\"/a/wuxiaxianxia/list_13_{{page}}.html\\\",\\\"style\\\":{\\\"layout_flexBasisPercent\\\":0.25,\\\"layout_flexGrow\\\":1}},{\\\"title\\\":\\\"奇幻玄幻\\\",\\\"url\\\":\\\"/a/qihuanxuanhuan/list_14_{{page}}.html\\\",\\\"style\\\":{\\\"layout_flexBasisPercent\\\":0.25,\\\"layout_flexGrow\\\":1}},{\\\"title\\\":\\\"科幻灵异\\\",\\\"url\\\":\\\"/a/kehuanlingyi/list_15_{{page}}.html\\\",\\\"style\\\":{\\\"layout_flexBasisPercent\\\":0.25,\\\"layout_flexGrow\\\":1}},{\\\"title\\\":\\\"历史军事\\\",\\\"url\\\":\\\"/a/lishijunshi/list_16_{{page}}.html\\\",\\\"style\\\":{\\\"layout_flexBasisPercent\\\":0.25,\\\"layout_flexGrow\\\":1}},{\\\"title\\\":\\\"竞技游戏\\\",\\\"url\\\":\\\"/a/jingjiyouxi/list_17_{{page}}.html\\\",\\\"style\\\":{\\\"layout_flexBasisPercent\\\":0.25,\\\"layout_flexGrow\\\":1}},{\\\"title\\\":\\\"实体书版\\\",\\\"url\\\":\\\"/a/shitinvsheng/list_18_{{page}}.html\\\",\\\"style\\\":{\\\"layout_flexBasisPercent\\\":0.25,\\\"layout_flexGrow\\\":1}},{\\\"title\\\":\\\"二次元\\\",\\\"url\\\":\\\"/a/erciyuan/list_19_{{page}}.html\\\",\\\"style\\\":{\\\"layout_flexBasisPercent\\\":0.25,\\\"layout_flexGrow\\\":1}},{\\\"title\\\":\\\"\\\",\\\"url\\\":\\\"\\\",\\\"style\\\":{\\\"layout_flexBasisPercent\\\":0.25,\\\"layout_flexGrow\\\":1}}]\",\r\n \"lastUpdateTime\": 1678799395298,\r\n \"respondTime\": 180000,\r\n \"ruleBookInfo\": {\r\n \"author\": \".dlbt_wz@text##.*作者.\",\r\n \"coverUrl\": \".jtsize img@src\",\r\n \"downloadUrls\": \"text.本地下载@href\",\r\n \"intro\": \".dl_rjjs@html\",\r\n \"kind\": \".dl_kk_info li.4:6@text##.*:\",\r\n \"name\": \".dlbt_wz@text##《|》.*\",\r\n \"tocUrl\": \"\",\r\n \"wordCount\": \".dl_kk_info li.0@text##.*:|\\\\s-.*\"\r\n },\r\n \"ruleContent\": {\r\n \"content\": \"@js:content=java.getString(\\\".plus_l li:not(:has(span))@html\\\",false)+'<br> ━ 长按选择浏览器打开下载 ━ <br>'+java.getElements(\\\".dl_kkbd_ccc a\\\")\\n.toArray()\\n.map(a => '【' + a.text() + '】http://www.freexiaoshuo.com' + a.attr('href'))\\n.join('\\\\n');\",\r\n \"replaceRegex\": \"\",\r\n \"webJs\": \"\"\r\n },\r\n \"ruleExplore\": {\r\n \"bookList\": \".pldal\",\r\n \"bookUrl\": \"a.1@href\",\r\n \"coverUrl\": \"img.0@src\",\r\n \"intro\": \".pldal_r1_jj@text\",\r\n \"kind\": \"a.2@text&&span.0@text##\\\\[|\\\\]\",\r\n \"name\": \"a.1@text##《|》.*\"\r\n },\r\n \"ruleReview\": {},\r\n \"ruleSearch\": {\r\n \"bookList\": \".pldals\",\r\n \"bookUrl\": \"a.1@href\",\r\n \"coverUrl\": \"img.0@src\",\r\n \"intro\": \".pldal_r1_jj@text\",\r\n \"kind\": \"a.2@text&&span.1@text\",\r\n \"name\": \"a.1@text##《|》.*\",\r\n \"wordCount\": \"span.2@text\"\r\n },\r\n \"ruleToc\": {\r\n \"chapterList\": \".dlbt_wz\",\r\n \"chapterName\": \"text##《|》.*\",\r\n \"chapterUrl\": \"\"\r\n },\r\n \"searchUrl\": \"/plus/search.php,{\\n \\\"charset\\\": \\\"gb2312\\\",\\n \\\"method\\\": \\\"post\\\",\\n \\\"body\\\": \\\"kwtype=0&q={{key}}\\\",\\n \\\"webView\\\": true\\n}\",\r\n \"weight\": 0\r\n }\r\n这个书源下载文件url需要跳转,无法正确获取文件名和后缀",
"不能自己请求吗",
"自己请求一样要请求两次,可以先判断url里面有没有文件名,没有就请求一下,感觉这样比较好",
"Location里面有含有文件名的链接 用head方式可以获取到\r\n改一下UrlUtils",
"我来测试一下",
"![image](https://user-images.githubusercontent.com/22701807/225289420-305ee930-0307-43f6-81de-c034eac80a4a.png)\r\nhead可以,不过,url还是要用conn.url,head后conn的url也是跳转过的,正确的\r\n",
"ok",
"感觉可以支持导入本地和WebDav的压缩文件,把文件类书源的解压过程放到LocalBook",
"确实\r\n\r\nXwite ***@***.***> 于 2023年3月15日周三 19:05写道:\r\n\r\n> 感觉可以支持导入本地和WebDav的压缩文件,把文件类书源的解压过程放到LocalBook\r\n>\r\n> —\r\n> Reply to this email directly, view it on GitHub\r\n> <https://github.com/gedoor/legado/issues/2881#issuecomment-1469801145>,\r\n> or unsubscribe\r\n> <https://github.com/notifications/unsubscribe-auth/AFNGN3Y53BDUJK5SFS7C3RTW4GO6DANCNFSM6AAAAAAV3LB3KM>\r\n> .\r\n> You are receiving this because you commented.Message ID:\r\n> ***@***.***>\r\n>\r\n"
] | 2023-03-15T06:05:23 | 2023-03-15T11:34:41 | 2023-03-15T11:01:32 | COLLABORATOR | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
`UrlUtil.getFileName`解析文件名
* 返回头返回`Content-Disposition`: 我们目前不能正确下载到内容,感觉可以去掉显示
* 后面的会下载一次文件,后面的点击导入也会下载一次
### 复现步骤 / How to reproduce
* 导入书源https://shuyuan.mgz6.cc/shuyuan/8602af56f5466b000914ac5ec38aa83f.json
* 点击任意发现里的第一本书
* 导入对话框的第一个是返回`Content-Disposition`,其余直接下载
* 在显示导入对话框之前可以发现下载了两个文件
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.0315
### Android版本 / Android version
12
### 机型 / Model
none
### 其他信息 / Additions
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2881/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2881/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2880 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2880/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2880/comments | https://api.github.com/repos/gedoor/legado/issues/2880/events | https://github.com/gedoor/legado/pull/2880 | 1,623,346,787 | PR_kwDOCzQSM85L_dK3 | 2,880 | 优化非对称加密 | {
"login": "iyhkhtrk",
"id": 104120418,
"node_id": "U_kgDOBjTAYg",
"avatar_url": "https://avatars.githubusercontent.com/u/104120418?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/iyhkhtrk",
"html_url": "https://github.com/iyhkhtrk",
"followers_url": "https://api.github.com/users/iyhkhtrk/followers",
"following_url": "https://api.github.com/users/iyhkhtrk/following{/other_user}",
"gists_url": "https://api.github.com/users/iyhkhtrk/gists{/gist_id}",
"starred_url": "https://api.github.com/users/iyhkhtrk/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/iyhkhtrk/subscriptions",
"organizations_url": "https://api.github.com/users/iyhkhtrk/orgs",
"repos_url": "https://api.github.com/users/iyhkhtrk/repos",
"events_url": "https://api.github.com/users/iyhkhtrk/events{/privacy}",
"received_events_url": "https://api.github.com/users/iyhkhtrk/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [
"#2438\r\n不知道输入字符的是utf8 base64 hex,\r\n先转ByteArray\r\n```js\r\njava.hexDecodeToByteArray(str)\r\njava.strToBytes(str)\r\n```",
"有个自动识别base64 hex的\r\nhttps://github.com/dromara/hutool/blob/v5-master/hutool-crypto/src/main/java/cn/hutool/crypto/asymmetric/AsymmetricCrypto.java#L82",
"> #2438 不知道输入字符的是utf8 base64 hex, 先转ByteArray\r\n> \r\n> ```js\r\n> java.hexDecodeToByteArray(str)\r\n> java.strToBytes(str)\r\n> ```\r\n\r\n转ByteArray的话在单独传入公钥/私钥的时候null不能传入\r\n![Screenshot_20230314_203629](https://user-images.githubusercontent.com/104120418/225003415-bf314291-6b10-4a2d-b93c-121f91fe8be8.jpg)\r\n",
"ok",
"> ok\r\n\r\nKeyType好像不支持填数字\r\n![Screenshot_2023_0314_204746](https://user-images.githubusercontent.com/104120418/225005613-00537c82-d5e0-4bf2-a6ae-b9729d9c7989.png)\r\n",
"感谢测试,明天发修复的",
"```js\r\njava.createAsymmetricCrypto(\"RSA\")\r\n//设置密钥\r\n.setPublicKey(java.base64DecodeToByteArray(base64String))\r\n.encryptBase64(data, true)\r\n```"
] | 2023-03-14T12:09:16 | 2023-03-15T03:49:25 | 2023-03-14T12:34:04 | CONTRIBUTOR | null | 传入ByteArray的话就不能单独传入公钥或私钥 | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2880/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2880/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2880",
"html_url": "https://github.com/gedoor/legado/pull/2880",
"diff_url": "https://github.com/gedoor/legado/pull/2880.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2880.patch",
"merged_at": null
} | true |
https://api.github.com/repos/gedoor/legado/issues/2879 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2879/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2879/comments | https://api.github.com/repos/gedoor/legado/issues/2879/events | https://github.com/gedoor/legado/pull/2879 | 1,622,734,505 | PR_kwDOCzQSM85L9Z3i | 2,879 | Bump glideVersion from 4.15.0 to 4.15.1 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-14T05:07:13 | 2023-03-14T06:48:51 | 2023-03-14T06:48:42 | CONTRIBUTOR | null | Bumps `glideVersion` from 4.15.0 to 4.15.1.
Updates `com.github.bumptech.glide:glide` from 4.15.0 to 4.15.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/bumptech/glide/releases">com.github.bumptech.glide:glide's releases</a>.</em></p>
<blockquote>
<h2>Glide v4.15.1</h2>
<h2>Features</h2>
<h2>Compose</h2>
<h2>Bugs</h2>
<ul>
<li>Fix a bug in the KSP processor preventing it from recognizing or including any of Glide's library modules, or any other library module compiled with Glide's java annotation processor (com.github.bumptech.glide:compiler:X.XX.X). (<a href="https://redirect.github.com/bumptech/glide/issues/5043">#5043</a>, 16306e89dece9908e9ada2382f4b94b591120ea5)</li>
</ul>
<h2>Deprecations</h2>
<h2>Behavior Changes</h2>
<h2>Breaking Changes</h2>
<h2>Build Changes</h2>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/bumptech/glide/commit/facc541119ae523d0d489fe9a057dc1d2221afaa"><code>facc541</code></a> Bump the compose and ktx versions.</li>
<li><a href="https://github.com/bumptech/glide/commit/b6999e627ed40186f5d90e0434ac8547495a1f17"><code>b6999e6</code></a> Bump version to 4.15.1</li>
<li><a href="https://github.com/bumptech/glide/commit/af8c772329d6e418bda0cfaba7507ea6ae123696"><code>af8c772</code></a> Read library glide module names from Java indexes</li>
<li>See full diff in <a href="https://github.com/bumptech/glide/compare/v4.15.0...v4.15.1">compare view</a></li>
</ul>
</details>
<br />
Updates `com.github.bumptech.glide:compiler` from 4.15.0 to 4.15.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/bumptech/glide/releases">com.github.bumptech.glide:compiler's releases</a>.</em></p>
<blockquote>
<h2>Glide v4.15.1</h2>
<h2>Features</h2>
<h2>Compose</h2>
<h2>Bugs</h2>
<ul>
<li>Fix a bug in the KSP processor preventing it from recognizing or including any of Glide's library modules, or any other library module compiled with Glide's java annotation processor (com.github.bumptech.glide:compiler:X.XX.X). (<a href="https://redirect.github.com/bumptech/glide/issues/5043">#5043</a>, 16306e89dece9908e9ada2382f4b94b591120ea5)</li>
</ul>
<h2>Deprecations</h2>
<h2>Behavior Changes</h2>
<h2>Breaking Changes</h2>
<h2>Build Changes</h2>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/bumptech/glide/commit/facc541119ae523d0d489fe9a057dc1d2221afaa"><code>facc541</code></a> Bump the compose and ktx versions.</li>
<li><a href="https://github.com/bumptech/glide/commit/b6999e627ed40186f5d90e0434ac8547495a1f17"><code>b6999e6</code></a> Bump version to 4.15.1</li>
<li><a href="https://github.com/bumptech/glide/commit/af8c772329d6e418bda0cfaba7507ea6ae123696"><code>af8c772</code></a> Read library glide module names from Java indexes</li>
<li>See full diff in <a href="https://github.com/bumptech/glide/compare/v4.15.0...v4.15.1">compare view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2879/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2879/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2879",
"html_url": "https://github.com/gedoor/legado/pull/2879",
"diff_url": "https://github.com/gedoor/legado/pull/2879.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2879.patch",
"merged_at": "2023-03-14T06:48:42"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2878 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2878/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2878/comments | https://api.github.com/repos/gedoor/legado/issues/2878/events | https://github.com/gedoor/legado/issues/2878 | 1,622,649,462 | I_kwDOCzQSM85gt6p2 | 2,878 | [RhinoJS]一直出现"Packages" is not defined.报错 | {
"login": "xingluo233",
"id": 54618947,
"node_id": "MDQ6VXNlcjU0NjE4OTQ3",
"avatar_url": "https://avatars.githubusercontent.com/u/54618947?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/xingluo233",
"html_url": "https://github.com/xingluo233",
"followers_url": "https://api.github.com/users/xingluo233/followers",
"following_url": "https://api.github.com/users/xingluo233/following{/other_user}",
"gists_url": "https://api.github.com/users/xingluo233/gists{/gist_id}",
"starred_url": "https://api.github.com/users/xingluo233/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/xingluo233/subscriptions",
"organizations_url": "https://api.github.com/users/xingluo233/orgs",
"repos_url": "https://api.github.com/users/xingluo233/repos",
"events_url": "https://api.github.com/users/xingluo233/events{/privacy}",
"received_events_url": "https://api.github.com/users/xingluo233/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | false | null | [] | null | [
"把里面的报错全部复制发出来\r\n\r\n尝试不用eval直接把代码复制过来",
"> 把里面的报错全部复制发出来\n> \n> 尝试不用eval直接把代码复制过来\n\n我人已经傻了,我把op里的headers删了,就不报错了,但是我看https://alanskycn.gitee.io/teachme/Rule/source.html 里post请求的请求头也是这样写的,给我整不会了",
"书源贴一下",
"最上面eval那段改成这个\r\n{{source.bookSourceComment}}",
"> 书源贴一下\n\n书源在1楼",
"rhino的问题吧\r\n等下提供一个内置的函数\r\n```js\r\njava.createAsymmetricCrypto(algorithm, privateKey, publicKey)\r\n```",
"原来用的是rhino引擎,咋不用node呢,我就说咋总是会报一些莫名其妙的错误",
"@Xwite 能顺便支持SHA256withRSA MD5withRSA等等签名算法吗,有个软件用到了这个",
"调用java方法比较方便",
"行吧",
"Packages 由于安全原因,在某些情况下会被删除。\r\n不用eval好像是没有这个问题的,你把那部分代码复制过来就好了。\r\n\r\nURL的处理逻辑有问题,用`@js:`代替`<js></js>`就可以了。"
] | 2023-03-14T03:12:05 | 2023-03-14T05:52:59 | 2023-03-14T05:50:29 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [x] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
~~每次打开软件第一次调试书源是没问题的,但是只要再次调试,就会出现"Packages" is not defined.报错,此时只能再次重新打开软件,无论有没有修改书源都是这样~~
经核实,是由于请求头才出现这个问题的
[书源](https://shuyuan.mgz6.cc/shuyuan/93f1d0c34ca69251c6b1f59955278515.json)
### 复现步骤 / How to reproduce
https://user-images.githubusercontent.com/54618947/224882928-60f669b7-daae-4ec0-bdfb-ed48137225ba.mp4
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.031314
### Android版本 / Android version
12
### 机型 / Model
Xiaomi 10
### 其他信息 / Additions
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2878/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2878/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2876 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2876/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2876/comments | https://api.github.com/repos/gedoor/legado/issues/2876/events | https://github.com/gedoor/legado/pull/2876 | 1,621,537,702 | PR_kwDOCzQSM85L5Y1k | 2,876 | Bump cronet from 111.0.5563.15 to 111.0.5563.57 | {
"login": "gedoor",
"id": 22701807,
"node_id": "MDQ6VXNlcjIyNzAxODA3",
"avatar_url": "https://avatars.githubusercontent.com/u/22701807?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gedoor",
"html_url": "https://github.com/gedoor",
"followers_url": "https://api.github.com/users/gedoor/followers",
"following_url": "https://api.github.com/users/gedoor/following{/other_user}",
"gists_url": "https://api.github.com/users/gedoor/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gedoor/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gedoor/subscriptions",
"organizations_url": "https://api.github.com/users/gedoor/orgs",
"repos_url": "https://api.github.com/users/gedoor/repos",
"events_url": "https://api.github.com/users/gedoor/events{/privacy}",
"received_events_url": "https://api.github.com/users/gedoor/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-03-13T13:54:42 | 2023-03-13T21:05:20 | 2023-03-13T15:42:43 | OWNER | null | Changes in the [Git log](https://chromium.googlesource.com/chromium/src/+log/111.0.5563.15..111.0.5563.57) | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2876/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2876/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2876",
"html_url": "https://github.com/gedoor/legado/pull/2876",
"diff_url": "https://github.com/gedoor/legado/pull/2876.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2876.patch",
"merged_at": "2023-03-13T15:42:43"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2874 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2874/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2874/comments | https://api.github.com/repos/gedoor/legado/issues/2874/events | https://github.com/gedoor/legado/pull/2874 | 1,620,761,247 | PR_kwDOCzQSM85L2xdQ | 2,874 | Bump com.google.protobuf:protobuf-javalite from 3.22.1 to 3.22.2 in /app | {
"login": "dependabot[bot]",
"id": 49699333,
"node_id": "MDM6Qm90NDk2OTkzMzM=",
"avatar_url": "https://avatars.githubusercontent.com/in/29110?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dependabot%5Bbot%5D",
"html_url": "https://github.com/apps/dependabot",
"followers_url": "https://api.github.com/users/dependabot%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dependabot%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/dependabot%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/dependabot%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/dependabot%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
} | [
{
"id": 4169596098,
"node_id": "LA_kwDOCzQSM874hvzC",
"url": "https://api.github.com/repos/gedoor/legado/labels/dependencies",
"name": "dependencies",
"color": "0366d6",
"default": false,
"description": "Pull requests that update a dependency file"
},
{
"id": 4457657291,
"node_id": "LA_kwDOCzQSM88AAAABCbJzyw",
"url": "https://api.github.com/repos/gedoor/legado/labels/java",
"name": "java",
"color": "ffa221",
"default": false,
"description": "Pull requests that update Java code"
}
] | closed | false | null | [] | null | [] | 2023-03-13T05:07:17 | 2023-03-13T05:43:48 | 2023-03-13T05:43:40 | CONTRIBUTOR | null | Bumps com.google.protobuf:protobuf-javalite from 3.22.1 to 3.22.2.
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.protobuf:protobuf-javalite&package-manager=gradle&previous-version=3.22.1&new-version=3.22.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
</details> | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2874/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2874/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2874",
"html_url": "https://github.com/gedoor/legado/pull/2874",
"diff_url": "https://github.com/gedoor/legado/pull/2874.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2874.patch",
"merged_at": "2023-03-13T05:43:40"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2873 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2873/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2873/comments | https://api.github.com/repos/gedoor/legado/issues/2873/events | https://github.com/gedoor/legado/issues/2873 | 1,620,698,387 | I_kwDOCzQSM85gmeUT | 2,873 | 强烈建议添加“小说详情页(删除书籍)前确认”功能 | {
"login": "ymmz9",
"id": 124583637,
"node_id": "U_kgDOB2z-1Q",
"avatar_url": "https://avatars.githubusercontent.com/u/124583637?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ymmz9",
"html_url": "https://github.com/ymmz9",
"followers_url": "https://api.github.com/users/ymmz9/followers",
"following_url": "https://api.github.com/users/ymmz9/following{/other_user}",
"gists_url": "https://api.github.com/users/ymmz9/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ymmz9/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ymmz9/subscriptions",
"organizations_url": "https://api.github.com/users/ymmz9/orgs",
"repos_url": "https://api.github.com/users/ymmz9/repos",
"events_url": "https://api.github.com/users/ymmz9/events{/privacy}",
"received_events_url": "https://api.github.com/users/ymmz9/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [
"ok"
] | 2023-03-13T03:44:05 | 2023-03-13T06:11:30 | 2023-03-13T06:11:29 | NONE | null | ### 确认
- [X] 搜索现有issues,不存在相似或相关的issue
### 功能描述
强烈建议添加“小说详情页(删除书籍)前确认(即要选是或否)”功能,而且在APP设置中可以设置一个开关来控制该功能。因为现在太容易误删小说了。
### 期望实现方式
你看着办
### 附加信息
_No response_
### 效果演示
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2873/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2873/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2872 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2872/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2872/comments | https://api.github.com/repos/gedoor/legado/issues/2872/events | https://github.com/gedoor/legado/issues/2872 | 1,620,698,053 | I_kwDOCzQSM85gmePF | 2,872 | 强烈建议添加“小说详情页(删除书籍)前确认”功能 | {
"login": "ymmz9",
"id": 124583637,
"node_id": "U_kgDOB2z-1Q",
"avatar_url": "https://avatars.githubusercontent.com/u/124583637?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ymmz9",
"html_url": "https://github.com/ymmz9",
"followers_url": "https://api.github.com/users/ymmz9/followers",
"following_url": "https://api.github.com/users/ymmz9/following{/other_user}",
"gists_url": "https://api.github.com/users/ymmz9/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ymmz9/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ymmz9/subscriptions",
"organizations_url": "https://api.github.com/users/ymmz9/orgs",
"repos_url": "https://api.github.com/users/ymmz9/repos",
"events_url": "https://api.github.com/users/ymmz9/events{/privacy}",
"received_events_url": "https://api.github.com/users/ymmz9/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
}
] | closed | false | null | [] | null | [] | 2023-03-13T03:43:26 | 2023-03-13T03:49:24 | 2023-03-13T03:49:24 | NONE | null | ### 确认
- [X] 搜索现有issues,不存在相似或相关的issue
### 功能描述
强烈建议添加“小说详情页(删除书籍)前确认(即要选是或否)”功能,而且在APP设置中可以设置一个开关来控制该功能。因为现在太容易误删小说了。
### 期望实现方式
你看着办
### 附加信息
_No response_
### 效果演示
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2872/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2872/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2871 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2871/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2871/comments | https://api.github.com/repos/gedoor/legado/issues/2871/events | https://github.com/gedoor/legado/issues/2871 | 1,620,687,777 | I_kwDOCzQSM85gmbuh | 2,871 | 更新后页眉间距无法调整 | {
"login": "yuduotianguang",
"id": 104707441,
"node_id": "U_kgDOBj21cQ",
"avatar_url": "https://avatars.githubusercontent.com/u/104707441?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/yuduotianguang",
"html_url": "https://github.com/yuduotianguang",
"followers_url": "https://api.github.com/users/yuduotianguang/followers",
"following_url": "https://api.github.com/users/yuduotianguang/following{/other_user}",
"gists_url": "https://api.github.com/users/yuduotianguang/gists{/gist_id}",
"starred_url": "https://api.github.com/users/yuduotianguang/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/yuduotianguang/subscriptions",
"organizations_url": "https://api.github.com/users/yuduotianguang/orgs",
"repos_url": "https://api.github.com/users/yuduotianguang/repos",
"events_url": "https://api.github.com/users/yuduotianguang/events{/privacy}",
"received_events_url": "https://api.github.com/users/yuduotianguang/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [
"检查一下是不是设置了隐藏页眉"
] | 2023-03-13T03:24:06 | 2023-03-13T10:20:18 | 2023-03-13T10:20:18 | NONE | null | null | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2871/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2871/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2870 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2870/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2870/comments | https://api.github.com/repos/gedoor/legado/issues/2870/events | https://github.com/gedoor/legado/issues/2870 | 1,620,686,115 | I_kwDOCzQSM85gmbUj | 2,870 | 版本 3.23.031210 Webdav书籍出现新的问题 | {
"login": "pinoren",
"id": 31525739,
"node_id": "MDQ6VXNlcjMxNTI1NzM5",
"avatar_url": "https://avatars.githubusercontent.com/u/31525739?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/pinoren",
"html_url": "https://github.com/pinoren",
"followers_url": "https://api.github.com/users/pinoren/followers",
"following_url": "https://api.github.com/users/pinoren/following{/other_user}",
"gists_url": "https://api.github.com/users/pinoren/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pinoren/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pinoren/subscriptions",
"organizations_url": "https://api.github.com/users/pinoren/orgs",
"repos_url": "https://api.github.com/users/pinoren/repos",
"events_url": "https://api.github.com/users/pinoren/events{/privacy}",
"received_events_url": "https://api.github.com/users/pinoren/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | true | null | [] | null | [
"你点一下“自动下载webdav书籍失败”这条日志,然后截图\r\n\r\n恢复备份的问题,昨天修了一下,你试试测试版有没有问题\r\n恢复备份改成用压缩包了,你可能需要手动打包一下备份文件",
"> 你点一下“自动下载webdav书籍失败”这条日志,然后截图\r\n> \r\n> 恢复备份的问题,昨天修了一下,你试试测试版有没有问题 恢复备份改成用压缩包了,你可能需要手动打包一下备份文件\r\n\r\n您好,经查看:\r\n自动下载webdav书籍失败”日志内容为:\r\nio.legado.app.exception.NoStackTraceException: Unexpected server ID\r\n\r\n二层目录和三层目录中书籍的不同错误表现状态,日志内容均相同。",
"此错误是我在刚才全新安装3.23.022715版并使用备份文件恢复配置后,确定删除了本地txt文件后,点击书刊名能正常从WebDAV自动下载后,直接覆盖升级安装3.23.031210,不进行任何其他操作,再次删除本地txt文件后,点击书刊名称得到的日志提示。\r\n\r\n我这就去找一下您说的测试版,感谢您!",
"汇报:安装了 legado_app_3.23.03131039_共存 版本测试。\r\n直接安装并配置好WebDAV,并使用之前的备份文件恢复,备份恢复时的错误提示没有了,提示恢复成功。但是自动获取WebDAV书籍的错误依然存在,错误提示和上面所述相同。",
"有点怪",
"https://github.com/gedoor/legado/blob/master/app/src/main/java/io/legado/app/model/localBook/LocalBook.kt#L323",
"> https://github.com/gedoor/legado/blob/master/app/src/main/java/io/legado/app/model/localBook/LocalBook.kt#L323\r\n\r\n看到被标记为已解决,然后关闭了,找了半天差点找不到我发的帖子到哪里去了,哈哈。请问也就是说下一个版本更新的时候会得到解决么?",
"等会应该会重发"
] | 2023-03-13T03:20:58 | 2023-03-13T04:46:35 | 2023-03-13T04:17:31 | NONE | resolved | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
之前从WebDAV中导入保存的TXT书籍,如果在本地删除后,无法从WebDAV中正常自动获取。
### 复现步骤 / How to reproduce
问题重现方式如下:
WebDAV服务器上的文件目录结构如下:
DAV服务器地址示例:http://www.test.com:1234/home
目录结构:
/home/legado/books/
/home/legado/books/武侠
/home/legado/books/武侠/金庸
/home/legado/books/科幻
/home/legado/books/玄幻
txt扩展名的书刊分类保存在目录结构中。
在初次使用阅读软件时,使用阅读软件的远程书籍导入功能导入了WebDAV上的书刊。
从WebDAV导入的TXT书刊默认存储在安卓手机下Download/Books目录下。
此后一直正常使用。
由于需要三个安卓手机之间同步阅读进度,在三个手机上使用了相同的WebDAV配置,然后在主用手机上批量导入了WebDAV的书刊,并备份了设置到WebDAV,然后在另外两台手机上使用备份/恢复功能选择了主用手机的备份进行了设置恢复。
此时主手机上从WebDAV导入的TXT书籍在备份恢复操作之后,均可以从另外两个手机上看到并正常访问,查看日志能看到手机上不存在的TXT,阅读会自动从WebDAV相应目录中自动获取并下载。
此使用方法从上一个版本3.23.022715以及之前一直正常使用。但自升级了3.23.030400和3.23.031210版本之后,以上使用方法开始出错,无法正常工作:
安卓手机本地的download/Books目录中如果不存在书籍,如果远程的文件保存在例如/home/legado/books/武侠 中,点开阅读中的对应书籍(例如 文件1),书籍页面会显示:
获取本地书籍内容失败
/tree/primary:Download/Books/document/primary:Download/Books/文件1.txt 文件不存在
日志中除了或许本地书籍失败的一条记录之外,还有一条“自动下载webdav书籍失败”的日志。
但如果TXT书籍保存在WebDAV远程例如/home/legado/books/武侠/金庸 这样的目录中,错误又有所不同,点开本地不存在的书籍后,错误状态为阅读软件会让选择书籍所在的文件夹(系统文件夹选择器),选择Download/Books后,系统提示要允许阅读访问Books中的文件吗?允许后,阅读页面显示:找不到文件。
经试验,把深层目录的TXT文件挪移到/home/legado/books/下,错误仍然相同,无法正常获取WebDAV上的书籍文件。
此操作在仍然使用3.23.022715版本的安卓手机上一切正常,手工删除本地文件后仍然可以自动从WebDAV上下载。
如果把手机上安装的3.23.030400及以上的版本删除掉,重新安装3.23.022715版本,并使用主用手机的配置备份文件恢复,则问题可以得到解决。
另:发现在3.23.030400之后的版本导入3.23.022715之前的备份文件时会提示许多json文件导入错误,字符串为空什么什么的提示,但是我找不到详细错误日志在哪里获取。
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.031210
### Android版本 / Android version
12
### 机型 / Model
荣耀V40轻奢版、360 N6、华为nova4
### 其他信息 / Additions
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2870/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2870/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2869 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2869/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2869/comments | https://api.github.com/repos/gedoor/legado/issues/2869/events | https://github.com/gedoor/legado/pull/2869 | 1,620,574,185 | PR_kwDOCzQSM85L2J2v | 2,869 | 修复 | {
"login": "ag2s20150909",
"id": 19373730,
"node_id": "MDQ6VXNlcjE5MzczNzMw",
"avatar_url": "https://avatars.githubusercontent.com/u/19373730?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ag2s20150909",
"html_url": "https://github.com/ag2s20150909",
"followers_url": "https://api.github.com/users/ag2s20150909/followers",
"following_url": "https://api.github.com/users/ag2s20150909/following{/other_user}",
"gists_url": "https://api.github.com/users/ag2s20150909/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ag2s20150909/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ag2s20150909/subscriptions",
"organizations_url": "https://api.github.com/users/ag2s20150909/orgs",
"repos_url": "https://api.github.com/users/ag2s20150909/repos",
"events_url": "https://api.github.com/users/ag2s20150909/events{/privacy}",
"received_events_url": "https://api.github.com/users/ag2s20150909/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2023-03-13T00:37:12 | 2023-03-13T01:03:55 | 2023-03-13T01:03:54 | CONTRIBUTOR | null | null | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2869/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2869/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2869",
"html_url": "https://github.com/gedoor/legado/pull/2869",
"diff_url": "https://github.com/gedoor/legado/pull/2869.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2869.patch",
"merged_at": "2023-03-13T01:03:54"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2868 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2868/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2868/comments | https://api.github.com/repos/gedoor/legado/issues/2868/events | https://github.com/gedoor/legado/issues/2868 | 1,620,409,047 | I_kwDOCzQSM85glXrX | 2,868 | 远程导入书籍时出现异常,使用的是TERAcloud云服务 | {
"login": "wazk9595",
"id": 84953699,
"node_id": "MDQ6VXNlcjg0OTUzNjk5",
"avatar_url": "https://avatars.githubusercontent.com/u/84953699?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/wazk9595",
"html_url": "https://github.com/wazk9595",
"followers_url": "https://api.github.com/users/wazk9595/followers",
"following_url": "https://api.github.com/users/wazk9595/following{/other_user}",
"gists_url": "https://api.github.com/users/wazk9595/gists{/gist_id}",
"starred_url": "https://api.github.com/users/wazk9595/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/wazk9595/subscriptions",
"organizations_url": "https://api.github.com/users/wazk9595/orgs",
"repos_url": "https://api.github.com/users/wazk9595/repos",
"events_url": "https://api.github.com/users/wazk9595/events{/privacy}",
"received_events_url": "https://api.github.com/users/wazk9595/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527747384,
"node_id": "MDU6TGFiZWwyNTI3NzQ3Mzg0",
"url": "https://api.github.com/repos/gedoor/legado/labels/BUG",
"name": "BUG",
"color": "d93f0b",
"default": false,
"description": "B.软件未按预期的功能运行"
},
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | false | null | [] | null | [
"之前的版本可以导入吗",
"遇到同样问题,坚果云,以前正常。"
] | 2023-03-12T15:38:39 | 2023-03-12T22:00:53 | 2023-03-12T21:47:11 | NONE | null | ### 确认 / Assignments
- [X] 搜索现有issues,不存在相似或相关的issue / No similar or related issues
- [X] 最新[测试版](https://kunfei.lanzoui.com/b0f810h4b)依然存在此问题 / Latest beta app does not work
- [X] 此问题和Xposed、Lsposed、Magisk、手机主题、浏览器插件等无关 / Make sure your machine is not touched by hook frameworks, plugins etc
### 问题描述 / Describe Bugs
![Screenshot_20230312_233351](https://user-images.githubusercontent.com/84953699/224555327-dff3e538-3999-4477-a33a-59e2e24896da.jpg)
出现上方字样
### 复现步骤 / How to reproduce
远程导入书籍就会出现
### 日志提交 / Relevant log output
_No response_
### 阅读版本 / Legado version
3.23.031210
### Android版本 / Android version
Android 10
### 机型 / Model
Vivo s9
### 其他信息 / Additions
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2868/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2868/timeline | null | completed | null | null | false |
https://api.github.com/repos/gedoor/legado/issues/2867 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2867/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2867/comments | https://api.github.com/repos/gedoor/legado/issues/2867/events | https://github.com/gedoor/legado/pull/2867 | 1,620,351,705 | PR_kwDOCzQSM85L1fBf | 2,867 | 初步实现RAR,7ZIP解压 | {
"login": "ag2s20150909",
"id": 19373730,
"node_id": "MDQ6VXNlcjE5MzczNzMw",
"avatar_url": "https://avatars.githubusercontent.com/u/19373730?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/ag2s20150909",
"html_url": "https://github.com/ag2s20150909",
"followers_url": "https://api.github.com/users/ag2s20150909/followers",
"following_url": "https://api.github.com/users/ag2s20150909/following{/other_user}",
"gists_url": "https://api.github.com/users/ag2s20150909/gists{/gist_id}",
"starred_url": "https://api.github.com/users/ag2s20150909/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/ag2s20150909/subscriptions",
"organizations_url": "https://api.github.com/users/ag2s20150909/orgs",
"repos_url": "https://api.github.com/users/ag2s20150909/repos",
"events_url": "https://api.github.com/users/ag2s20150909/events{/privacy}",
"received_events_url": "https://api.github.com/users/ag2s20150909/received_events",
"type": "User",
"site_admin": false
} | [] | closed | false | null | [] | null | [
"还需要添加\r\n```\r\nimplementation 'org.tukaani:xz:1.9'\r\n```"
] | 2023-03-12T12:44:17 | 2023-03-12T13:14:14 | 2023-03-12T13:00:58 | CONTRIBUTOR | null | https://developer.android.com/studio/write/java11-nio-support-table | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2867/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2867/timeline | null | null | false | {
"url": "https://api.github.com/repos/gedoor/legado/pulls/2867",
"html_url": "https://github.com/gedoor/legado/pull/2867",
"diff_url": "https://github.com/gedoor/legado/pull/2867.diff",
"patch_url": "https://github.com/gedoor/legado/pull/2867.patch",
"merged_at": "2023-03-12T13:00:58"
} | true |
https://api.github.com/repos/gedoor/legado/issues/2866 | https://api.github.com/repos/gedoor/legado | https://api.github.com/repos/gedoor/legado/issues/2866/labels{/name} | https://api.github.com/repos/gedoor/legado/issues/2866/comments | https://api.github.com/repos/gedoor/legado/issues/2866/events | https://github.com/gedoor/legado/issues/2866 | 1,620,211,954 | I_kwDOCzQSM85gknjy | 2,866 | 常见压缩文档的解压支持 | {
"login": "Xwite",
"id": 82232510,
"node_id": "MDQ6VXNlcjgyMjMyNTEw",
"avatar_url": "https://avatars.githubusercontent.com/u/82232510?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Xwite",
"html_url": "https://github.com/Xwite",
"followers_url": "https://api.github.com/users/Xwite/followers",
"following_url": "https://api.github.com/users/Xwite/following{/other_user}",
"gists_url": "https://api.github.com/users/Xwite/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Xwite/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Xwite/subscriptions",
"organizations_url": "https://api.github.com/users/Xwite/orgs",
"repos_url": "https://api.github.com/users/Xwite/repos",
"events_url": "https://api.github.com/users/Xwite/events{/privacy}",
"received_events_url": "https://api.github.com/users/Xwite/received_events",
"type": "User",
"site_admin": false
} | [
{
"id": 2527770654,
"node_id": "MDU6TGFiZWwyNTI3NzcwNjU0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E9%9C%80%E6%B1%82",
"name": "需求",
"color": "006b75",
"default": false,
"description": "F.用户提出的功能意见"
},
{
"id": 3252848424,
"node_id": "MDU6TGFiZWwzMjUyODQ4NDI0",
"url": "https://api.github.com/repos/gedoor/legado/labels/%E5%B7%B2%E8%A7%A3%E5%86%B3",
"name": "已解决",
"color": "0E8A16",
"default": false,
"description": "已解决"
}
] | closed | false | null | [] | null | [
"ok",
"加了的话 需不需要分abi打包apk",
"不需要吧,太麻烦了",
"rar 的话可以用这个https://github.com/junrar/junrar",
"https://github.com/apache/commons-compress",
"收到"
] | 2023-03-12T02:40:41 | 2023-03-12T22:14:47 | 2023-03-12T22:14:35 | COLLABORATOR | null | ### 确认
- [X] 搜索现有issues,不存在相似或相关的issue
### 功能描述
- [x] ZIP
- [x] RAR
- [x] 7z
### 期望实现方式
|Librar|format|
|---|---|
|native [Android7P](https://github.com/hzy3774/AndroidP7zip)|7z, BZIP2, GZIP,TAR, WIM, XZ, zip
|[common-compress](https://github.com/apache/commons-compress)|bzip2, gzip, pack200, lzma, xz, Snappy, traditional Unix Compress, DEFLATE, DEFLATE64, LZ4, Brotli, Zstandard and ar, cpio, jar, tar, zip, dump, 7z, arj.
|[junar](https://github.com/junrar/junrar)|< RAR 4
### 附加信息
_No response_
### 效果演示
_No response_ | {
"url": "https://api.github.com/repos/gedoor/legado/issues/2866/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/gedoor/legado/issues/2866/timeline | null | completed | null | null | false |