Remove ReadGojo ()

This commit is contained in:
Chopper 2024-07-20 03:33:06 -03:00 committed by Draff
parent a5ff37e47a
commit c23c65c165
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 0 additions and 35 deletions
src/en/readgojo
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/en/readgojo

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

Binary file not shown.

Before

(image error) Size: 7.2 KiB

Binary file not shown.

Before

(image error) Size: 3.7 KiB

Binary file not shown.

Before

(image error) Size: 11 KiB

Binary file not shown.

Before

(image error) Size: 21 KiB

Binary file not shown.

Before

(image error) Size: 32 KiB

@ -1,26 +0,0 @@
package eu.kanade.tachiyomi.extension.en.readgojo
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.source.model.SChapter
import org.jsoup.nodes.Element
class ReadGojo : MangaThemesia("ReadGojo", "https://readgojo.com", "en") {
override fun chapterFromElement(element: Element) = SChapter.create().apply {
setUrlWithoutDomain(element.attr("href"))
name = element.selectFirst(".truncate p")?.text()!!.ifBlank { element.text() }
date_upload = element.select("p").last()?.text()!!.split("Released ").last().parseChapterDate()
}
override fun chapterListSelector() = "#chapterlist > a"
protected override fun String?.parseChapterDate(): Long {
if (this == null) return 0
return try {
dateFormat.parse(this)?.time ?: 0
} catch (_: Exception) {
0
}
}
}