Add InfinityXScan (#6407)

* Add InfinityXScan

* Formatting

* newLine

* Fix Newlines
This commit is contained in:
Creepler13 2024-12-03 14:17:04 +01:00 committed by Draff
parent 54bcdce9de
commit 1c31319402
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'InfinyxScan'
extClass = '.InfinyxScan'
themePkg = 'madara'
baseUrl = 'https://infinyxscan.cloud'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.pt.infinyxscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class InfinyxScan : Madara(
"InfinyxScan",
"https://infinyxscan.cloud",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val useNewChapterEndpoint: Boolean = true
}