Add ArcticScan (#5840)

This commit is contained in:
Chopper 2024-11-03 08:52:39 -03:00 committed by GitHub
parent 967416bbe9
commit 9f4a6139cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Arctic Scan'
extClass = '.ArcticScan'
themePkg = 'madara'
baseUrl = 'https://arcticscan.top'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.pt.arcticscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class ArcticScan : Madara(
"Arctic Scan",
"https://arcticscan.top",
"pt-BR",
dateFormat = SimpleDateFormat("yyyy-MM-dd", Locale.ROOT),
) {
override val useNewChapterEndpoint = true
}