Update some domain (#6457)

* Update domain yurineko & fix no image

* Update domain VlogTruyen

* Update domain NhatTruyen

* Update domain HentaiVNPlus

* Update domain HentaiCB
This commit is contained in:
are-are-are 2024-12-06 03:47:22 +07:00 committed by Draff
parent b91a9c90af
commit 40d11c7278
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
13 changed files with 17 additions and 17 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'CBHentai' extName = 'CBHentai'
extClass = '.HentaiCB' extClass = '.HentaiCB'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://hentaicb.pro' baseUrl = 'https://hentaicube.xyz'
overrideVersionCode = 9 overrideVersionCode = 10
isNsfw = true isNsfw = true
} }

View File

@ -6,7 +6,7 @@ import org.jsoup.nodes.Document
import java.text.SimpleDateFormat import java.text.SimpleDateFormat
import java.util.Locale import java.util.Locale
class HentaiCB : Madara("CBHentai", "https://hentaicb.pro", "vi", SimpleDateFormat("dd/MM/yyyy", Locale("vi"))) { class HentaiCB : Madara("CBHentai", "https://hentaicube.xyz", "vi", SimpleDateFormat("dd/MM/yyyy", Locale("vi"))) {
override val id: Long = 823638192569572166 override val id: Long = 823638192569572166

View File

@ -2,8 +2,8 @@ ext {
extName = 'HentaiVN.plus' extName = 'HentaiVN.plus'
extClass = '.HentaiVNPlus' extClass = '.HentaiVNPlus'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://hentaivn.mom' baseUrl = 'https://hentaivn.now'
overrideVersionCode = 4 overrideVersionCode = 5
isNsfw = true isNsfw = true
} }

View File

@ -14,7 +14,7 @@ import java.util.Locale
class HentaiVNPlus : class HentaiVNPlus :
Madara( Madara(
"HentaiVN.plus", "HentaiVN.plus",
"https://hentaivn.mom", "https://hentaivn.now",
"vi", "vi",
dateFormat = SimpleDateFormat("MM/dd/yyyy", Locale.ROOT), dateFormat = SimpleDateFormat("MM/dd/yyyy", Locale.ROOT),
), ),

View File

@ -2,8 +2,8 @@ ext {
extName = 'NhatTruyen' extName = 'NhatTruyen'
extClass = '.NhatTruyen' extClass = '.NhatTruyen'
themePkg = 'wpcomics' themePkg = 'wpcomics'
baseUrl = 'https://nhattruyenvn.com' baseUrl = 'https://nhattruyenv.com'
overrideVersionCode = 19 overrideVersionCode = 20
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -15,7 +15,7 @@ import java.util.Locale
class NhatTruyen : WPComics( class NhatTruyen : WPComics(
"NhatTruyen", "NhatTruyen",
"https://nhattruyenvn.com", "https://nhattruyenv.com",
"vi", "vi",
dateFormat = SimpleDateFormat("dd/MM/yy", Locale.getDefault()), dateFormat = SimpleDateFormat("dd/MM/yy", Locale.getDefault()),
gmtOffset = null, gmtOffset = null,

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'VlogTruyen' extName = 'VlogTruyen'
extClass = '.VlogTruyen' extClass = '.VlogTruyen'
extVersionCode = 2 extVersionCode = 3
isNsfw = true isNsfw = true
} }

View File

@ -41,7 +41,7 @@ class VlogTruyen : ParsedHttpSource(), ConfigurableSource {
override val supportsLatest = true override val supportsLatest = true
private val defaultBaseUrl = "https://vlogtruyen34.com" private val defaultBaseUrl = "https://vlogtruyen35.com"
override val baseUrl by lazy { getPrefBaseUrl() } override val baseUrl by lazy { getPrefBaseUrl() }

View File

@ -12,7 +12,7 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.BROWSABLE" />
<data android:host="yurineko.moe" <data android:host="yurineko.my"
android:scheme="https" /> android:scheme="https" />
<data android:pathPattern="/manga/..*" /> <data android:pathPattern="/manga/..*" />

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'YuriNeko' extName = 'YuriNeko'
extClass = '.YuriNeko' extClass = '.YuriNeko'
extVersionCode = 4 extVersionCode = 5
isNsfw = true isNsfw = true
} }

View File

@ -32,13 +32,13 @@ class YuriNeko : HttpSource() {
override val name = "YuriNeko" override val name = "YuriNeko"
override val baseUrl = "https://yurineko.moe" override val baseUrl = "https://yurineko.my"
override val lang = "vi" override val lang = "vi"
override val supportsLatest = false override val supportsLatest = false
private val apiUrl = "https://api.yurineko.moe" private val apiUrl = "https://api.yurineko.my"
override val client = network.cloudflareClient.newBuilder() override val client = network.cloudflareClient.newBuilder()
.rateLimit(3, 1, TimeUnit.SECONDS) .rateLimit(3, 1, TimeUnit.SECONDS)

View File

@ -50,5 +50,5 @@ data class ReadResponseDto(
) { ) {
fun toPageList(): List<Page> = this@ReadResponseDto fun toPageList(): List<Page> = this@ReadResponseDto
.url .url
.mapIndexed { index, url -> Page(index, "", url) } .mapIndexed { index, url -> Page(index, imageUrl = "https://storage.yurineko.my" + url) }
} }

View File

@ -61,7 +61,7 @@ data class MangaDto(
7 -> SManga.CANCELLED // "Ngừng xuất bản" -> No more publications 7 -> SManga.CANCELLED // "Ngừng xuất bản" -> No more publications
else -> SManga.UNKNOWN else -> SManga.UNKNOWN
} }
thumbnail_url = dto.thumbnail thumbnail_url = "https://storage.yurineko.my/" + dto.thumbnail
initialized = true initialized = true
} }
} }