Add Galinha Samurai Scan (#2989)

This commit is contained in:
Vetle Ledaal 2024-05-13 15:19:57 +00:00 committed by GitHub
parent 4ee9f2d25b
commit 952c78041e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Galinha Samurai Scan'
extClass = '.GalinhaSamuraiScan'
themePkg = 'madara'
baseUrl = 'https://galinhasamurai.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.pt.galinhasamuraiscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class GalinhaSamuraiScan : Madara(
"Galinha Samurai Scan",
"https://galinhasamurai.com",
"pt-BR",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
}