Compare commits

...

3 Commits

Author SHA1 Message Date
kunfei
b214cf5c1a
Merge 62f520079a into 9edc02f696 2024-05-09 21:56:11 +08:00
Horis
9edc02f696 优化 2024-05-08 16:33:21 +08:00
Xwite
62f520079a Bump cronet from 123.0.6312.80 to 124.0.6367.83
- Changes in the [Git log](https://chromium.googlesource.com/chromium/src/+log/123.0.6312.80..124.0.6367.83)
2024-05-06 01:28:57 +00:00
11 changed files with 10 additions and 7 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@
local.properties
.DS_Store
/build
build/
/captures
.externalNativeBuild
/release

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
{"arm64-v8a":"bbf2c50d1ebf0763d451b08e290a3244","armeabi-v7a":"ecb872f7b1b5342f4d7c36262bec0600","x86":"4da4832b89e2412d808c5b1ecdc24e3d","x86_64":"62080f051db02ed0e939affb39ce67fb","version":"123.0.6312.80"}
{"x86":"22433f669eac4698ddff927a9e9129e7","armeabi-v7a":"1662c432099e2525e8d0133f7d8e2e43","x86_64":"3239e376ec9bfcad9f27fd97a7bf2334","arm64-v8a":"004f001a7727d60f6d30c1e3a2901c91","version":"124.0.6367.83"}

View File

@ -13,6 +13,7 @@
* 漫画源看书显示乱码,**阅读与其他软件的源并不通用**,请导入阅读的支持的漫画源!
**2024/02/27**
* 更新cronet: 124.0.6367.83
* 更新cronet: 123.0.6312.80
* 更新cronet: 123.0.6312.40

View File

@ -73,7 +73,7 @@ object AppWebDav {
WebDav(bookProgressUrl, mAuthorization).makeAsDir()
WebDav(exportsWebDavUrl, mAuthorization).makeAsDir()
WebDav(bgWebDavUrl, mAuthorization).makeAsDir()
val rootBooksUrl = "${rootWebDavUrl}books"
val rootBooksUrl = "${rootWebDavUrl}books/"
defaultBookWebDav = RemoteBookWebDav(rootBooksUrl, mAuthorization)
authorization = mAuthorization
}

View File

@ -178,13 +178,14 @@ open class WebDav(
//依然是优化支持 caddy 自建的 WebDav ,其目录后缀都为“/”, 所以删除“/”的判定,不然无法获取该目录项
val href = element.findNS("href", ns)[0].text().replace("+", "%2B")
val hrefDecode = URLDecoder.decode(href, "UTF-8")
.removeSuffix("/")
val fileName = hrefDecode.substringAfterLast("/")
val webDavFile: WebDav
try {
val urlName = hrefDecode.ifEmpty {
url.file.replace("/", "")
}
val displayName = element
.findNS("displayname", ns)
.firstOrNull()?.text().orEmpty()
val contentType = element
.findNS("getcontenttype", ns)
.firstOrNull()?.text().orEmpty()
@ -206,7 +207,7 @@ open class WebDav(
webDavFile = WebDavFile(
fullURL,
authorization,
displayName = fileName,
displayName = displayName,
urlName = urlName,
size = size,
contentType = contentType,

View File

@ -42,7 +42,7 @@ android.defaults.buildfeatures.shaders=false
# and none from the library's dependencies, thereby reducing the size of the R class for that library.
android.nonTransitiveRClass=true
# https://chromiumdash.appspot.com/releases?platform=Android
CronetVersion=123.0.6312.80
CronetMainVersion=123.0.0.0
CronetVersion=124.0.6367.83
CronetMainVersion=124.0.0.0
android.injected.testOnly=false
android.nonFinalResIds=true