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:
parent
4d8111b5a0
commit
b21cc255c8
|
@ -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 |
|
@ -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
|
||||||
|
}
|
Loading…
Reference in New Issue