Add Riot Hentai source (#7059)

* Add Riot Hentai

* Riot Hentai: add isNsfw
This commit is contained in:
Dr1ks 2025-01-08 04:57:17 -08:00 committed by Draff
parent 57d4f6f855
commit de1f46782f
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,11 @@
ext {
extName = 'Riot Hentai'
extClass = '.RiotHentai'
themePkg = 'madara'
baseUrl = 'https://riothentai.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.pt.riothentai
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class RiotHentai : Madara(
"Riot Hentai",
"https://riothentai.com",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val useNewChapterEndpoint: Boolean = true
override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Status) + div.summary-content"
}