Jinmantiantang: update url (#10935)

This commit is contained in:
kasperskier 2022-02-26 01:49:06 +08:00 committed by GitHub
parent f5e252757c
commit eb6e3019d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 11 deletions

View File

@ -22,18 +22,18 @@
android:host="18comic.org" android:host="18comic.org"
android:pathPattern="/album/..*" android:pathPattern="/album/..*"
android:scheme="https" /> android:scheme="https" />
<data
android:host="jmcomic1.cc"
android:pathPattern="/album/..*"
android:scheme="https" />
<data
android:host="jmcomic2.cc"
android:pathPattern="/album/..*"
android:scheme="https" />
<data <data
android:host="jmcomic3.cc" android:host="jmcomic3.cc"
android:pathPattern="/album/..*" android:pathPattern="/album/..*"
android:scheme="https" /> android:scheme="https" />
<data
android:host="jmcomic4.cc"
android:pathPattern="/album/..*"
android:scheme="https" />
<data
android:host="jmcomic5.cc"
android:pathPattern="/album/..*"
android:scheme="https" />
</intent-filter> </intent-filter>
</activity> </activity>
</application> </application>

View File

@ -6,7 +6,7 @@ ext {
extName = 'Jinmantiantang' extName = 'Jinmantiantang'
pkgNameSuffix = 'zh.jinmantiantang' pkgNameSuffix = 'zh.jinmantiantang'
extClass = '.Jinmantiantang' extClass = '.Jinmantiantang'
extVersionCode = 20 extVersionCode = 21
isNsfw = true isNsfw = true
} }

View File

@ -558,11 +558,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 https://jmcomic1.one/ // List is based on https://jmcomic.bet/
// 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",
"jmcomic1.cc", "jmcomic2.cc", "jmcomic3.cc" "jmcomic4.cc", "jmcomic5.cc", "jmcomic5.cc"
) )
} }
} }