add PizzariaScan (#8622)

This commit is contained in:
Creepler13 2025-04-25 16:13:39 +02:00 committed by Draff
parent 67a9995b03
commit 54d9318a35
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 = 'Pizzaria Scan'
extClass = '.Pizzariascan'
themePkg = 'madara'
baseUrl = 'https://pizzariascan.site'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.pt.pizzariascan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class Pizzariascan : Madara(
"Pizzaria Scan",
"https://pizzariascan.site",
"pt-BR",
SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("pt")),
) {
override val useNewChapterEndpoint: Boolean = true
}