Add many sources to Madara (#12645)

* Add sources to Madara

* icons
This commit is contained in:
Vetle Ledaal 2022-07-21 02:43:04 +00:00 committed by GitHub
parent 2a895ba62f
commit 5972fde3e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
220 changed files with 437 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

View File

@ -0,0 +1,9 @@
package eu.kanade.tachiyomi.extension.en.anshscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
class AnshScans : Madara("Ansh Scans", "https://anshscans.org", "en") {
override val useNewChapterEndpoint = true
override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Status) + div.summary-content"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.ar.arabtoons
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class ArabToons : Madara(
"عرب تونز",
"https://arabtoons.net",
"ar",
dateFormat = SimpleDateFormat("MMM d", Locale("ar"))
) {
override val useNewChapterEndpoint = true
}

View File

@ -0,0 +1,9 @@
package eu.kanade.tachiyomi.extension.en.bsasmenucom
import eu.kanade.tachiyomi.multisrc.madara.Madara
class BsasmenuCom : Madara("bsasmenu.com", "https://bsasmenu.com", "en") {
override val useNewChapterEndpoint = false
override val popularMangaUrlSelector = "div.post-title a:not([target=_self])"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.es.daprob
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class DapRob : Madara(
"DapRob",
"https://daprob.com",
"es",
dateFormat = SimpleDateFormat("dd/MM/yyy", Locale.ROOT)
) {
override val useNewChapterEndpoint = true
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 194 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.es.eromiau
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class Eromiau : Madara(
"Eromiau",
"https://www.eromiau.com",
"es",
dateFormat = SimpleDateFormat("MMM d, yyy", Locale("es"))
) {
override val useNewChapterEndpoint = true
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 170 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.tr.evascans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class EvaScans : Madara(
"EvaScans",
"https://evascans.com",
"tr",
dateFormat = SimpleDateFormat("MMM d, yyy", Locale("tr"))
) {
override val useNewChapterEndpoint = false
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 KiB

View File

@ -0,0 +1,25 @@
package eu.kanade.tachiyomi.extension.en.flextapescans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.source.model.Page
import org.jsoup.nodes.Document
import java.text.SimpleDateFormat
import java.util.Locale
class FlexTapeScans : Madara(
"Flex Tape Scans",
"https://flextapescans.com",
"en",
dateFormat = SimpleDateFormat("MM/dd/yyy", Locale.ROOT)
) {
override val useNewChapterEndpoint = false
override fun pageListParse(document: Document): List<Page> {
val blocked = document.select(".content-blocked").first()
if (blocked != null) {
throw Exception(blocked.text()) // You need to be contributor to read this chapter
}
return super.pageListParse(document)
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.tr.geasstoon
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class GeassToon : Madara(
"GeassToon",
"https://geasstoon.com",
"tr",
dateFormat = SimpleDateFormat("MMM d, yyy", Locale("tr"))
) {
override val useNewChapterEndpoint = true
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.tr.glorymanga
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class GloryManga : Madara(
"Glory Manga",
"https://glorymanga.com",
"tr",
dateFormat = SimpleDateFormat("dd/MM/yyy", Locale.ROOT)
) {
override val useNewChapterEndpoint = true
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.tr.gloryscans
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class GloryScans : Madara(
"Glory Scans",
"https://gloryscans.com",
"tr",
dateFormat = SimpleDateFormat("d MMM yyy", Locale("tr"))
) {
override val useNewChapterEndpoint = false
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

View File

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.es.herenscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class HerenScan : Madara(
"HerenScan",
"https://herenscan.com",
"es",
dateFormat = SimpleDateFormat("d 'de' MMM 'de' yyy", Locale("es"))
) {
override val useNewChapterEndpoint = true
// Disable type selector as it's junk data, must not be empty.
override val seriesTypeSelector = "#abcdefghijklmnopqrstuvwxyz"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.tr.mangabilgini
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MangaBilgini : Madara(
"Manga Bilgini",
"https://mangabilgini.com",
"tr",
dateFormat = SimpleDateFormat("MMM d, yyy", Locale("tr"))
) {
override val useNewChapterEndpoint = false
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

View File

@ -0,0 +1,31 @@
package eu.kanade.tachiyomi.extension.ar.mangaflix
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.source.model.SChapter
import org.jsoup.nodes.Element
import java.text.SimpleDateFormat
import java.util.Locale
class MangaFlix : Madara(
"مانجا فليكس",
"https://www.manga-flix.com",
"ar",
dateFormat = SimpleDateFormat("dd/MM/yyy", Locale.ROOT)
) {
override val useNewChapterEndpoint = true
override val mangaDetailsSelectorStatus = "div.summarys"
override fun chapterFromElement(element: Element): SChapter {
val chapter = super.chapterFromElement(element)
with(element) {
select(chapterUrlSelector).first()?.let { urlElement ->
// use .ownText() instead of .text()
chapter.name = urlElement.ownText()
}
}
return chapter
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.en.mangafreakonline
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MangaFreakOnline : Madara(
"MangaFreak.online",
"https://mangafreak.online",
"en",
dateFormat = SimpleDateFormat("d MMM، yyy", Locale.US)
) {
override val useNewChapterEndpoint = false
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@ -0,0 +1,7 @@
package eu.kanade.tachiyomi.extension.en.mangak2
import eu.kanade.tachiyomi.multisrc.madara.Madara
class MangaK2 : Madara("MangaK2", "https://mangak2.com", "en") {
override val useNewChapterEndpoint = true
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Some files were not shown because too many files have changed in this diff Show More