Updated Tencent extensions name to official Chinese name ()

* Changed Name to 腾讯动漫

* Update build.gradle

* Update build.gradle
This commit is contained in:
jopejoe1 2021-12-22 01:50:17 +13:00 committed by GitHub
parent 4ed8ceabe1
commit 47efb9dce9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions
src/zh/tencentcomics
build.gradle
src/eu/kanade/tachiyomi/extension/zh/tencentcomics

@ -6,7 +6,7 @@ ext {
extName = 'Tencent Comics (ac.qq.com)' extName = 'Tencent Comics (ac.qq.com)'
pkgNameSuffix = 'zh.tencentcomics' pkgNameSuffix = 'zh.tencentcomics'
extClass = '.TencentComics' extClass = '.TencentComics'
extVersionCode = 3 extVersionCode = 4
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

@ -28,7 +28,7 @@ import kotlin.collections.ArrayList
class TencentComics : ParsedHttpSource() { class TencentComics : ParsedHttpSource() {
override val name = "Tencent Comics (ac.qq.com)" override val name = "腾讯动漫"
// its easier to parse the mobile version of the website // its easier to parse the mobile version of the website
override val baseUrl = "https://m.ac.qq.com" override val baseUrl = "https://m.ac.qq.com"
@ -37,6 +37,8 @@ class TencentComics : ParsedHttpSource() {
override val lang = "zh" override val lang = "zh"
override val supportsLatest = true override val supportsLatest = true
override val id: Long = 6353436350537369479
override val client: OkHttpClient = network.cloudflareClient override val client: OkHttpClient = network.cloudflareClient