parent
7de98ef6ff
commit
4f505f32e2
|
@ -5,8 +5,8 @@ ext {
|
|||
appName = 'Tachiyomi: MangaPark'
|
||||
pkgNameSuffix = 'en.mangapark'
|
||||
extClass = '.MangaPark'
|
||||
extVersionCode = 4
|
||||
libVersion = '1.0'
|
||||
extVersionCode = 5
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 4.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 8.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
Binary file not shown.
After Width: | Height: | Size: 52 KiB |
|
@ -108,7 +108,7 @@ class MangaPark : ParsedHttpSource() {
|
|||
override fun chapterListSelector() = ".stream .volume .chapter li"
|
||||
|
||||
override fun chapterFromElement(element: Element) = SChapter.create().apply {
|
||||
url = element.select(".tit > a").first().attr("href")
|
||||
url = element.select(".tit > a").first().attr("href").replaceAfterLast("/", "")
|
||||
name = element.select(".tit > a").first().text()
|
||||
date_upload = parseDate(element.select(".time").first().text().trim())
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue