
* HentaiXDickgirl * OPSCANS * Grabber zone * Shiba Manga * Galaxy Manga * Lint my beloved * I should run the generator again after copying changes from generated-src * PotatoManga * Beasts Scans * reorder and change lang to en for OPSCANS * Shiba Manga: enable genre fetching * Vex Manga * MangaLeks * Comic Arab * Comic Arab: fix date format * Area Manga * Manga Rose * Falcon Manga * BirdToon * requested changes Co-authored-by: Vetle Ledaal <13540478+vetleledaal@users.noreply.github.com> --------- Co-authored-by: Vetle Ledaal <13540478+vetleledaal@users.noreply.github.com> Co-authored-by: arkon <arkon@users.noreply.github.com>
24 lines
547 B
Kotlin
24 lines
547 B
Kotlin
package eu.kanade.tachiyomi.extension.en.shibamanga
|
|
|
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
import java.text.SimpleDateFormat
|
|
import java.util.Locale
|
|
|
|
class ShibaManga : Madara(
|
|
"Shiba Manga",
|
|
"https://shibamanga.com",
|
|
"en",
|
|
SimpleDateFormat("MM/dd/yyyy", Locale.US),
|
|
) {
|
|
override val filterNonMangaItems = false
|
|
override val useNewChapterEndpoint = true
|
|
|
|
override fun searchPage(page: Int): String {
|
|
return if (page > 1) {
|
|
"page/$page/"
|
|
} else {
|
|
""
|
|
}
|
|
}
|
|
}
|