Remove Extensions (#7269)

This commit is contained in:
Hellkaros 2025-01-23 15:02:07 -03:00 committed by Draff
parent 08ff6b51b3
commit 48913cde0a
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
14 changed files with 0 additions and 88 deletions

View File

@ -1,9 +0,0 @@
ext {
extName = 'Leviatan Scans'
extClass = '.LeviatanScans'
themePkg = 'madara'
baseUrl = 'https://lscomic.com'
overrideVersionCode = 15
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

View File

@ -1,58 +0,0 @@
package eu.kanade.tachiyomi.extension.en.leviatanscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.source.model.SChapter
import eu.kanade.tachiyomi.source.model.SManga
import org.jsoup.nodes.Element
import java.text.SimpleDateFormat
import java.util.Locale
class LeviatanScans : Madara(
"Leviatan Scans",
"https://lscomic.com",
"en",
dateFormat = SimpleDateFormat("MMM dd, yyyy", Locale.US),
) {
override val id = 4055499394183150749
override val mangaDetailsSelectorDescription = "div.manga-summary"
override val mangaDetailsSelectorAuthor = "div.manga-authors"
override val useNewChapterEndpoint: Boolean = true
override fun chapterListSelector() = "li.wp-manga-chapter:not(.premium-block)"
override fun popularMangaFromElement(element: Element) =
replaceRandomUrlPartInManga(super.popularMangaFromElement(element))
override fun latestUpdatesFromElement(element: Element) =
replaceRandomUrlPartInManga(super.latestUpdatesFromElement(element))
override fun searchMangaFromElement(element: Element) =
replaceRandomUrlPartInManga(super.searchMangaFromElement(element))
override fun chapterFromElement(element: Element): SChapter {
val chapter = replaceRandomUrlPartInChapter(super.chapterFromElement(element))
with(element) {
selectFirst(chapterUrlSelector)?.let { urlElement ->
chapter.name = urlElement.ownText()
}
}
return chapter
}
private fun replaceRandomUrlPartInManga(manga: SManga): SManga {
val split = manga.url.split("/")
manga.url = split.slice(split.indexOf("manga") until split.size).joinToString("/", "/")
return manga
}
private fun replaceRandomUrlPartInChapter(chapter: SChapter): SChapter {
val split = chapter.url.split("/")
chapter.url = baseUrl + split.slice(split.indexOf("manga") until split.size).joinToString("/", "/")
return chapter
}
}

View File

@ -1,9 +0,0 @@
ext {
extName = 'Iris Scanlator'
extClass = '.IrisScanlator'
themePkg = 'mangathemesia'
baseUrl = 'https://irisscanlator.com.br'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 978 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

View File

@ -1,12 +0,0 @@
package eu.kanade.tachiyomi.extension.pt.irisscanlator
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class IrisScanlator : MangaThemesia(
"Iris Scanlator",
"https://irisscanlator.com.br",
"pt-BR",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("pt", "BR")),
)