Add Kabus Manga (#2771)

This commit is contained in:
Vetle Ledaal 2024-05-03 10:32:58 +00:00 committed by Draff
parent 64bd4df45c
commit 158402d0db
7 changed files with 25 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.tr.kabusmanga
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class KabusManga : Madara(
"Kabus Manga",
"https://kabusmanga.com",
"tr",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale.ROOT),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
}