Add MangaSiginagi (#2860)

* Add MangaSiginagi

* Add isNsfw
This commit is contained in:
Chopper 2024-05-06 12:32:36 -03:00 committed by Draff
parent 47aadb3873
commit e257636ded
7 changed files with 22 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,12 @@
package eu.kanade.tachiyomi.extension.tr.mangasiginagi
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class MangaSiginagi : MangaThemesia(
"Manga Siginagi",
"https://mangasiginagi.com",
"tr",
dateFormat = SimpleDateFormat("MMMM d, yyy", Locale("tr")),
)