Add Manga Şehri.net (#2847)

This commit is contained in:
Vetle Ledaal 2024-05-06 15:27:03 +00:00 committed by Draff
parent 1c50b086a1
commit 4d76106169
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Manga Şehri.net'
extClass = '.MangaSehriNet'
themePkg = 'madara'
baseUrl = 'https://mangasehri.net'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.tr.mangasehrinet
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MangaSehriNet : Madara(
"Manga Şehri.net",
"https://mangasehri.net",
"tr",
dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("tr")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.AutoDetect
override val useNewChapterEndpoint = false
}