Add MangaBari (#6299)

* add mangabari

* remove slash

Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>

* add isNsfw

Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>

---------

Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>
This commit is contained in:
dngonz 2024-11-27 00:49:40 +01:00 committed by Draff
parent 4d8111b5a0
commit b21cc255c8
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.tr.mangabari
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MangaBari : Madara(
"Manga Bari",
"https://mangabari.me",
"tr",
dateFormat = java.text.SimpleDateFormat("MMMM dd, yyyy", Locale("tr")),
) {
override val useNewChapterEndpoint = true
}