Add WinterSun (#1693)

This commit is contained in:
Chopper 2024-03-04 07:40:48 -03:00 committed by Draff
parent cf4a208d08
commit e78bd29133
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Winter Sun'
extClass = '.WinterSun'
themePkg = 'madara'
baseUrl = 'https://wintersunscan.xyz'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.pt.wintersun
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class WinterSun : Madara(
"Winter Sun",
"https://wintersunscan.xyz",
"pt-BR",
SimpleDateFormat("dd 'de' MMMMM 'de' yyyy", Locale("pt", "BR")),
) {
override val useNewChapterEndpoint = true
}