Remove dead sources (#8099)
* Remove ElevenScanlator * Remove FlowerMangaDotCom * Remove InfinyxScan * Remove LScans * Remove YaoiComics * Remove NewManhua * Remove ManhuaZone * Revert "Remove InfinyxScan"
@ -1,9 +0,0 @@
|
|||||||
ext {
|
|
||||||
extName = 'ManhuaZone'
|
|
||||||
extClass = '.ManhuaZone'
|
|
||||||
themePkg = 'madara'
|
|
||||||
baseUrl = 'https://manhuazone.org'
|
|
||||||
overrideVersionCode = 1
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Before Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 7.6 KiB |
Before Width: | Height: | Size: 12 KiB |
@ -1,12 +0,0 @@
|
|||||||
package eu.kanade.tachiyomi.extension.en.manhuazone
|
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
||||||
import java.text.SimpleDateFormat
|
|
||||||
import java.util.Locale
|
|
||||||
|
|
||||||
class ManhuaZone : Madara(
|
|
||||||
"ManhuaZone",
|
|
||||||
"https://manhuazone.org",
|
|
||||||
"en",
|
|
||||||
dateFormat = SimpleDateFormat("MMM d, yyyy", Locale.US),
|
|
||||||
)
|
|
@ -1,10 +0,0 @@
|
|||||||
ext {
|
|
||||||
extName = 'NewManhua'
|
|
||||||
extClass = '.NewManhua'
|
|
||||||
themePkg = 'madara'
|
|
||||||
baseUrl = 'https://newmanhua.com'
|
|
||||||
overrideVersionCode = 0
|
|
||||||
isNsfw = true
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 6.5 KiB |
@ -1,21 +0,0 @@
|
|||||||
package eu.kanade.tachiyomi.extension.en.newmanhua
|
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
||||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
|
||||||
import okhttp3.OkHttpClient
|
|
||||||
|
|
||||||
class NewManhua : Madara(
|
|
||||||
"NewManhua",
|
|
||||||
"https://newmanhua.com",
|
|
||||||
"en",
|
|
||||||
) {
|
|
||||||
|
|
||||||
override val client: OkHttpClient = super.client.newBuilder()
|
|
||||||
.rateLimit(1)
|
|
||||||
.build()
|
|
||||||
|
|
||||||
override val useNewChapterEndpoint = true
|
|
||||||
|
|
||||||
override val mangaDetailsSelectorDescription: String =
|
|
||||||
"div.description-summary div.summary__content h3 + p, div.description-summary div.summary__content:not(:has(h3)), div.summary_content div.post-content_item > h5 + div, div.summary_content div.manga-excerpt"
|
|
||||||
}
|
|
@ -1,9 +0,0 @@
|
|||||||
ext {
|
|
||||||
extName = 'Eleven Scanlator'
|
|
||||||
extClass = '.ElevenScanlator'
|
|
||||||
themePkg = 'zeistmanga'
|
|
||||||
baseUrl = 'https://elevenscanlator.blogspot.com'
|
|
||||||
overrideVersionCode = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Before Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 18 KiB |
@ -1,5 +0,0 @@
|
|||||||
package eu.kanade.tachiyomi.extension.pt.elevenscanlator
|
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
|
|
||||||
|
|
||||||
class ElevenScanlator : ZeistManga("Eleven Scanlator", "https://elevenscanlator.blogspot.com", "pt-BR")
|
|
@ -1,10 +0,0 @@
|
|||||||
ext {
|
|
||||||
extName = 'FlowerManga.com'
|
|
||||||
extClass = '.FlowerMangaDotCom'
|
|
||||||
themePkg = 'madara'
|
|
||||||
baseUrl = 'https://flowermangas.com'
|
|
||||||
overrideVersionCode = 1
|
|
||||||
isNsfw = true
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Before Width: | Height: | Size: 8.5 KiB |
Before Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 46 KiB |
@ -1,21 +0,0 @@
|
|||||||
package eu.kanade.tachiyomi.extension.pt.flowermangadotcom
|
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
||||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
|
||||||
import okhttp3.OkHttpClient
|
|
||||||
import java.text.SimpleDateFormat
|
|
||||||
import java.util.Locale
|
|
||||||
|
|
||||||
class FlowerMangaDotCom : Madara(
|
|
||||||
"FlowerManga.com",
|
|
||||||
"https://flowermangas.com",
|
|
||||||
"pt-BR",
|
|
||||||
SimpleDateFormat("dd MMM yyyy", Locale("pt", "BR")),
|
|
||||||
) {
|
|
||||||
override val client: OkHttpClient = super.client.newBuilder()
|
|
||||||
.rateLimit(2)
|
|
||||||
.build()
|
|
||||||
|
|
||||||
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
|
||||||
override val useNewChapterEndpoint = false
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
ext {
|
|
||||||
extName = 'L Scans'
|
|
||||||
extClass = '.LScans'
|
|
||||||
themePkg = 'mangathemesia'
|
|
||||||
baseUrl = 'https://lscans.com'
|
|
||||||
overrideVersionCode = 8
|
|
||||||
isNsfw = false
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Before Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 38 KiB |
@ -1,17 +0,0 @@
|
|||||||
package eu.kanade.tachiyomi.extension.pt.lscans
|
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
|
||||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
|
||||||
|
|
||||||
class LScans : MangaThemesia(
|
|
||||||
"L Scans",
|
|
||||||
"https://lscans.com",
|
|
||||||
"pt-BR",
|
|
||||||
) {
|
|
||||||
// Moved from PeachScan to Mangathemsia
|
|
||||||
override val versionId = 3
|
|
||||||
|
|
||||||
override val client = super.client.newBuilder()
|
|
||||||
.rateLimit(3)
|
|
||||||
.build()
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
ext {
|
|
||||||
extName = 'Yaoi Comics'
|
|
||||||
extClass = '.YaoiComics'
|
|
||||||
themePkg = 'madara'
|
|
||||||
baseUrl = 'https://ycscan.com'
|
|
||||||
overrideVersionCode = 0
|
|
||||||
isNsfw = true
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Before Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 8.8 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 26 KiB |
@ -1,22 +0,0 @@
|
|||||||
package eu.kanade.tachiyomi.extension.pt.yaoicomics
|
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
||||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
|
||||||
import okhttp3.OkHttpClient
|
|
||||||
import java.text.SimpleDateFormat
|
|
||||||
import java.util.Locale
|
|
||||||
import java.util.concurrent.TimeUnit
|
|
||||||
|
|
||||||
class YaoiComics : Madara(
|
|
||||||
"Yaoi Comics",
|
|
||||||
"https://ycscan.com",
|
|
||||||
"pt-BR",
|
|
||||||
SimpleDateFormat("dd 'de' MMMMM 'de' yyyy", Locale("pt", "BR")),
|
|
||||||
) {
|
|
||||||
|
|
||||||
override val client: OkHttpClient = super.client.newBuilder()
|
|
||||||
.rateLimit(1, 2, TimeUnit.SECONDS)
|
|
||||||
.build()
|
|
||||||
|
|
||||||
override val useNewChapterEndpoint = true
|
|
||||||
}
|
|