Remove LunarScan (#8809)

This commit is contained in:
Chopper 2025-05-10 18:59:11 -03:00 committed by Draff
parent b44f7c144d
commit 508f71b204
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 0 additions and 33 deletions

View File

@ -1,10 +0,0 @@
ext {
extName = 'Lunar Scan'
extClass = '.LunarScan'
themePkg = 'madara'
baseUrl = 'https://lunarrscan.com'
overrideVersionCode = 2
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,23 +0,0 @@
package eu.kanade.tachiyomi.extension.pt.lunarscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class LunarScan : Madara(
"Lunar Scan",
"https://lunarrscan.com",
"pt-BR",
SimpleDateFormat("MMM dd, yyyy", Locale("pt", "BR")),
) {
override val client = super.client.newBuilder()
.rateLimit(2)
.build()
override val mangaSubString = "obras"
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Never
}