Add Futari (#3959)

This commit is contained in:
Vetle Ledaal 2024-07-12 13:09:50 +02:00 committed by Draff
parent 979b248658
commit e411215caf
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 = 'Futari'
extClass = '.Futari'
themePkg = 'mangathemesia'
baseUrl = 'https://futari.info'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.id.futari
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class Futari : MangaThemesia(
"Futari",
"https://futari.info",
"id",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("id")),
) {
override val hasProjectPage = true
}