Jinmantiantang: update mirror URLs (#10027)

This commit is contained in:
kasperskier 2021-12-07 21:02:43 +08:00 committed by GitHub
parent 9cab45270d
commit 2a527f6074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -23,15 +23,15 @@
android:pathPattern="/album/..*" android:pathPattern="/album/..*"
android:scheme="https" /> android:scheme="https" />
<data <data
android:host="18comic.art" android:host="jmcomic1.cc"
android:pathPattern="/album/..*" android:pathPattern="/album/..*"
android:scheme="https" /> android:scheme="https" />
<data <data
android:host="18comic1.art" android:host="jmcomic2.cc"
android:pathPattern="/album/..*" android:pathPattern="/album/..*"
android:scheme="https" /> android:scheme="https" />
<data <data
android:host="18comic2.art" android:host="jmcomic3.cc"
android:pathPattern="/album/..*" android:pathPattern="/album/..*"
android:scheme="https" /> android:scheme="https" />
</intent-filter> </intent-filter>

View File

@ -5,7 +5,7 @@ ext {
extName = 'Jinmantiantang' extName = 'Jinmantiantang'
pkgNameSuffix = 'zh.jinmantiantang' pkgNameSuffix = 'zh.jinmantiantang'
extClass = '.Jinmantiantang' extClass = '.Jinmantiantang'
extVersionCode = 16 extVersionCode = 17
isNsfw = true isNsfw = true
} }

View File

@ -555,11 +555,11 @@ class Jinmantiantang : ConfigurableSource, ParsedHttpSource() {
"中国大陆总站", "中国大陆分流1", "中国大陆分流2" "中国大陆总站", "中国大陆分流1", "中国大陆分流2"
) )
private val SITE_ENTRIES_ARRAY_VALUE = (0..4).map { i -> i.toString() }.toTypedArray() private val SITE_ENTRIES_ARRAY_VALUE = (0..4).map { i -> i.toString() }.toTypedArray()
// List is based on http://jmcomic.xyz // List is based on https://jmcomic1.one/
// Please also update AndroidManifest // Please also update AndroidManifest
private val SITE_ENTRIES_ARRAY = arrayOf( private val SITE_ENTRIES_ARRAY = arrayOf(
DEFAULT_SITE, "18comic.org", DEFAULT_SITE, "18comic.org",
"18comic.art", "18comic1.art", "18comic2.art" "jmcomic1.cc", "jmcomic2.cc", "jmcomic3.cc"
) )
} }
} }