This commit is contained in:
Vetle Ledaal 2024-05-10 15:12:38 +00:00 committed by Draff
parent be5622f93d
commit 154b4c50f5
7 changed files with 30 additions and 0 deletions

10
src/en/retsu/build.gradle Normal file
View File

@ -0,0 +1,10 @@
ext {
extName = 'Retsu'
extClass = '.Retsu'
themePkg = 'madara'
baseUrl = 'https://retsu.org'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1,20 @@
package eu.kanade.tachiyomi.extension.en.retsu
import eu.kanade.tachiyomi.multisrc.madara.Madara
class Retsu : Madara(
"Retsu",
"https://retsu.org",
"en",
) {
override fun popularMangaSelector() = "div.manga__item"
override val popularMangaUrlSelector = "h4 a"
override val mangaDetailsSelectorTitle = "h1.post-title"
override val mangaDetailsSelectorGenre = "div.manga-genres a"
override val seriesTypeSelector = ".manga-type .summary-content"
override val altNameSelector = ".manga-alternative"
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = false
}