Update some domains (#9478)
This commit is contained in:
parent
5260aff425
commit
a916378f4e
@ -2,8 +2,8 @@ ext {
|
|||||||
extName = 'Catharsis World'
|
extName = 'Catharsis World'
|
||||||
extClass = '.CatharsisWorld'
|
extClass = '.CatharsisWorld'
|
||||||
themePkg = 'madara'
|
themePkg = 'madara'
|
||||||
baseUrl = 'https://catharsisworld.justep.me'
|
baseUrl = 'https://catharsisworld.dig-it.info'
|
||||||
overrideVersionCode = 4
|
overrideVersionCode = 5
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ import org.jsoup.nodes.Element
|
|||||||
|
|
||||||
class CatharsisWorld : Madara(
|
class CatharsisWorld : Madara(
|
||||||
"Catharsis World",
|
"Catharsis World",
|
||||||
"https://catharsisworld.justep.me",
|
"https://catharsisworld.dig-it.info",
|
||||||
"es",
|
"es",
|
||||||
) {
|
) {
|
||||||
override val versionId = 2
|
override val versionId = 2
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
ext {
|
ext {
|
||||||
extName = 'TecnoProjects'
|
extName = 'TecnoProjects'
|
||||||
extClass = '.TecnoProjects'
|
extClass = '.TecnoProjects'
|
||||||
themePkg = 'madara'
|
themePkg = 'mangathemesia'
|
||||||
baseUrl = 'https://tecnoprojects.com'
|
baseUrl = 'https://tecnoprojects.xyz'
|
||||||
overrideVersionCode = 0
|
overrideVersionCode = 13
|
||||||
isNsfw = false
|
isNsfw = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,15 +1,12 @@
|
|||||||
package eu.kanade.tachiyomi.extension.es.tecnoprojects
|
package eu.kanade.tachiyomi.extension.es.tecnoprojects
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||||
import java.text.SimpleDateFormat
|
import java.text.SimpleDateFormat
|
||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
|
|
||||||
class TecnoProjects : Madara(
|
class TecnoProjects : MangaThemesia(
|
||||||
"TecnoProjects",
|
"TecnoProjects",
|
||||||
"https://tecnoprojects.com",
|
"https://tecnoprojects.xyz",
|
||||||
"es",
|
"es",
|
||||||
SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("es")),
|
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
|
||||||
) {
|
)
|
||||||
override val useLoadMoreRequest = LoadMoreStrategy.Always
|
|
||||||
override val useNewChapterEndpoint = true
|
|
||||||
}
|
|
||||||
|
@ -2,8 +2,8 @@ ext {
|
|||||||
extName = 'Comicaso'
|
extName = 'Comicaso'
|
||||||
extClass = '.Comicaso'
|
extClass = '.Comicaso'
|
||||||
themePkg = 'mangathemesia'
|
themePkg = 'mangathemesia'
|
||||||
baseUrl = 'https://comicaso.id'
|
baseUrl = 'https://comicaso.space'
|
||||||
overrideVersionCode = 2
|
overrideVersionCode = 3
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,41 +1,12 @@
|
|||||||
package eu.kanade.tachiyomi.extension.id.comicaso
|
package eu.kanade.tachiyomi.extension.id.comicaso
|
||||||
|
|
||||||
import android.util.Base64
|
|
||||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||||
import eu.kanade.tachiyomi.source.model.Page
|
|
||||||
import kotlinx.serialization.json.jsonArray
|
|
||||||
import kotlinx.serialization.json.jsonPrimitive
|
|
||||||
import org.jsoup.nodes.Document
|
|
||||||
import java.text.SimpleDateFormat
|
import java.text.SimpleDateFormat
|
||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
|
|
||||||
class Comicaso : MangaThemesia(
|
class Comicaso : MangaThemesia(
|
||||||
"Comicaso",
|
"Comicaso",
|
||||||
"https://comicaso.id",
|
"https://comicaso.space",
|
||||||
"id",
|
"id",
|
||||||
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("id")),
|
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("id")),
|
||||||
) {
|
)
|
||||||
override fun pageListParse(document: Document): List<Page> {
|
|
||||||
val script = document.select("script[src^=data:text/javascript;base64,]").map {
|
|
||||||
Base64.decode(
|
|
||||||
it.attr("src").substringAfter("base64,"),
|
|
||||||
Base64.DEFAULT,
|
|
||||||
).toString(Charsets.UTF_8)
|
|
||||||
}.firstOrNull { it.startsWith("ts_reader.run") }
|
|
||||||
?: throw Exception("Couldn't find page script")
|
|
||||||
|
|
||||||
countViews(document)
|
|
||||||
|
|
||||||
val imageListJson = JSON_IMAGE_LIST_REGEX.find(script)?.destructured?.toList()?.get(0).orEmpty()
|
|
||||||
val imageList = try {
|
|
||||||
json.parseToJsonElement(imageListJson).jsonArray
|
|
||||||
} catch (_: IllegalArgumentException) {
|
|
||||||
emptyList()
|
|
||||||
}
|
|
||||||
val scriptPages = imageList.mapIndexed { i, jsonEl ->
|
|
||||||
Page(i, document.location(), jsonEl.jsonPrimitive.content)
|
|
||||||
}
|
|
||||||
|
|
||||||
return scriptPages
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
ext {
|
ext {
|
||||||
extName = 'Komiku'
|
extName = 'Komiku'
|
||||||
extClass = '.Komiku'
|
extClass = '.Komiku'
|
||||||
extVersionCode = 18
|
extVersionCode = 19
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
apply from: "$rootDir/common.gradle"
|
||||||
|
@ -19,7 +19,7 @@ import java.util.Locale
|
|||||||
class Komiku : ParsedHttpSource() {
|
class Komiku : ParsedHttpSource() {
|
||||||
override val name = "Komiku"
|
override val name = "Komiku"
|
||||||
|
|
||||||
override val baseUrl = "https://komiku.id"
|
override val baseUrl = "https://komiku.org"
|
||||||
|
|
||||||
private val baseUrlApi = "https://api.komiku.id"
|
private val baseUrlApi = "https://api.komiku.id"
|
||||||
|
|
||||||
|
@ -2,8 +2,8 @@ ext {
|
|||||||
extName = 'Manhwalist.org'
|
extName = 'Manhwalist.org'
|
||||||
extClass = '.ManhwalistOrg'
|
extClass = '.ManhwalistOrg'
|
||||||
themePkg = 'mangathemesia'
|
themePkg = 'mangathemesia'
|
||||||
baseUrl = 'https://manhwalist.org'
|
baseUrl = 'https://isekaikomik.com'
|
||||||
overrideVersionCode = 0
|
overrideVersionCode = 1
|
||||||
isNsfw = false
|
isNsfw = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,8 +6,7 @@ import java.util.Locale
|
|||||||
|
|
||||||
class ManhwalistOrg : MangaThemesia(
|
class ManhwalistOrg : MangaThemesia(
|
||||||
"Manhwalist.org",
|
"Manhwalist.org",
|
||||||
"https://manhwalist.org",
|
"https://isekaikomik.com",
|
||||||
"id",
|
"id",
|
||||||
mangaUrlDirectory = "/manhwa",
|
|
||||||
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("id")),
|
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("id")),
|
||||||
)
|
)
|
||||||
|
@ -2,8 +2,8 @@ ext {
|
|||||||
extName = 'Opiatoon'
|
extName = 'Opiatoon'
|
||||||
extClass = '.Opiatoon'
|
extClass = '.Opiatoon'
|
||||||
themePkg = 'madara'
|
themePkg = 'madara'
|
||||||
baseUrl = 'https://opiatoon.pro'
|
baseUrl = 'https://opiatoon.art'
|
||||||
overrideVersionCode = 1
|
overrideVersionCode = 2
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@ import java.util.Locale
|
|||||||
|
|
||||||
class Opiatoon : Madara(
|
class Opiatoon : Madara(
|
||||||
"Opiatoon",
|
"Opiatoon",
|
||||||
"https://opiatoon.pro",
|
"https://opiatoon.art",
|
||||||
"tr",
|
"tr",
|
||||||
dateFormat = SimpleDateFormat("d MMMM", Locale("tr")),
|
dateFormat = SimpleDateFormat("d MMMM", Locale("tr")),
|
||||||
) {
|
) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user