fix pagelist issue mangapark (#690)

add mangapark icons
This commit is contained in:
Carlos 2018-12-30 14:22:49 -05:00 committed by GitHub
parent 7de98ef6ff
commit 4f505f32e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 3 additions and 3 deletions

View File

@ -5,8 +5,8 @@ ext {
appName = 'Tachiyomi: MangaPark' appName = 'Tachiyomi: MangaPark'
pkgNameSuffix = 'en.mangapark' pkgNameSuffix = 'en.mangapark'
extClass = '.MangaPark' extClass = '.MangaPark'
extVersionCode = 4 extVersionCode = 5
libVersion = '1.0' libVersion = '1.2'
} }
apply from: "$rootDir/common.gradle" 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

View File

@ -108,7 +108,7 @@ class MangaPark : ParsedHttpSource() {
override fun chapterListSelector() = ".stream .volume .chapter li" override fun chapterListSelector() = ".stream .volume .chapter li"
override fun chapterFromElement(element: Element) = SChapter.create().apply { 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() name = element.select(".tit > a").first().text()
date_upload = parseDate(element.select(".time").first().text().trim()) date_upload = parseDate(element.select(".time").first().text().trim())
} }