Cleanup dead sources (#2121)

This commit is contained in:
KirinRaikage 2024-03-26 13:46:02 +01:00 committed by GitHub
parent bab94517b6
commit 342e8df59c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 0 additions and 57 deletions

View File

@ -1,9 +0,0 @@
ext {
extName = 'Glory Scans'
extClass = '.GloryScans'
themePkg = 'mangathemesia'
baseUrl = 'https://gloryscans.fr'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -1,7 +0,0 @@
package eu.kanade.tachiyomi.extension.fr.gloryscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class GloryScans : MangaThemesia("Glory Scans", "https://gloryscans.fr", "fr", dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale.FRENCH))

View File

@ -1,9 +0,0 @@
ext {
extName = 'ManhwaFreak'
extClass = '.ManhwaFreakFR'
themePkg = 'mangathemesia'
baseUrl = 'https://manhwafreak.fr'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,32 +0,0 @@
package eu.kanade.tachiyomi.extension.fr.manhwafreakfr
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.GET
import eu.kanade.tachiyomi.source.model.FilterList
import eu.kanade.tachiyomi.source.model.SChapter
import okhttp3.Request
import org.jsoup.nodes.Element
import java.text.SimpleDateFormat
import java.util.Locale
class ManhwaFreakFR : MangaThemesia("ManhwaFreak", "https://manhwafreak.fr", "fr", dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale.ENGLISH)) {
override fun latestUpdatesRequest(page: Int) = GET("$baseUrl/manga/?type=comic", headers)
override fun popularMangaRequest(page: Int) = GET("$baseUrl/manga/?order=views&type=comic", headers)
override fun searchMangaSelector() = ".listupd .lastest-serie"
override fun searchMangaRequest(page: Int, query: String, filters: FilterList): Request =
GET("$baseUrl/page/$page/?s=$query")
override fun chapterListSelector() = ".chapter-li a:not(:has(svg))"
override fun chapterFromElement(element: Element) = SChapter.create().apply {
val urlElements = element.select("a")
setUrlWithoutDomain(urlElements.attr("href"))
name = element.select(".chapter-info p:nth-child(1)").text().ifBlank { urlElements.first()!!.text() }
date_upload = element.selectFirst(".chapter-info p:nth-child(2)")?.text().parseChapterDate()
}
override fun getFilterList() = FilterList()
}