Remove Crystal Comics (#10497)

This commit is contained in:
Smol Ame 2025-09-13 06:05:08 -08:00 committed by Draff
parent acbd615590
commit 347ef46ffc
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 0 additions and 30 deletions

View File

@ -1,10 +0,0 @@
ext {
extName = 'Crystal Comics'
extClass = '.CrystalComics'
themePkg = 'mangathemesia'
baseUrl = 'https://atemporal.cloud'
overrideVersionCode = 10
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,20 +0,0 @@
package eu.kanade.tachiyomi.extension.pt.crystalcomics
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class CrystalComics : MangaThemesia(
"Crystal Comics",
"https://crystalcomics.com",
"pt-BR",
dateFormat = SimpleDateFormat("MMM dd, yyyy", Locale("pt", "BR")),
) {
// Migrate from Etoshore to MangaThemesia
override val versionId = 2
override val client = super.client.newBuilder()
.rateLimit(2)
.build()
}