Add Algodão Doce (#3064)

This commit is contained in:
Vetle Ledaal 2024-05-17 11:23:09 +00:00 committed by GitHub
parent 0bd5fc8006
commit b6d55f85c9
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 = 'Algodão Doce'
extClass = '.AlgodaoDoce'
themePkg = 'madara'
baseUrl = 'https://algodaodocescan.com.br'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.pt.algodaodoce
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class AlgodaoDoce : Madara(
"Algodão Doce",
"https://algodaodocescan.com.br",
"pt-BR",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("pt", "BR")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
}