Add TiaManhwa (#8092)

* Add TiaManhwa

* Add LoadMoreStrategy and chapter endpoint flag
This commit is contained in:
Chopper 2025-03-17 11:45:37 -03:00 committed by Draff
parent 55e3a5b101
commit ac2ebae360
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Tia Manhwa'
extClass = '.TiaManhwa'
themePkg = 'madara'
baseUrl = 'https://tiamanhwa.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -0,0 +1,25 @@
package eu.kanade.tachiyomi.extension.pt.tiamanhwa
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
class TiaManhwa : Madara(
"Tia Manhwa",
"https://tiamanhwa.com",
"pt-BR",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(2)
.build()
override val mangaSubString = "manhwa-em-portugues"
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
}