@ -5,7 +5,7 @@ ext {
|
||||
appName = 'Tachiyomi: JMana'
|
||||
pkgNameSuffix = 'ko.jmana'
|
||||
extClass = '.JMana'
|
||||
extVersionCode = 4
|
||||
extVersionCode = 5
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
@ -16,7 +16,7 @@ import java.text.SimpleDateFormat
|
||||
**/
|
||||
class JMana : ParsedHttpSource() {
|
||||
override val name = "JMana"
|
||||
override val baseUrl = "https://mangahide.com"
|
||||
override val baseUrl = "https://jmana5.com"
|
||||
override val lang: String = "ko"
|
||||
|
||||
// Latest updates currently returns duplicate manga as it separates manga into chapters
|
||||
|
@ -5,12 +5,8 @@ ext {
|
||||
appName = 'Tachiyomi: MangaShow.Me'
|
||||
pkgNameSuffix = 'ko.mangashowme'
|
||||
extClass = '.MangaShowMe'
|
||||
extVersionCode = 6
|
||||
extVersionCode = 7
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compileOnly project(':duktape-stub')
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
@ -24,7 +24,7 @@ import java.util.concurrent.TimeUnit
|
||||
**/
|
||||
class MangaShowMe : ParsedHttpSource() {
|
||||
override val name = "MangaShow.Me"
|
||||
override val baseUrl = "https://mangashow3.me"
|
||||
override val baseUrl = "https://mangashow5.me"
|
||||
override val lang: String = "ko"
|
||||
|
||||
// Latest updates currently returns duplicate manga as it separates manga into chapters
|
||||
@ -212,8 +212,11 @@ class MangaShowMe : ParsedHttpSource() {
|
||||
(0 until imageUrls.length())
|
||||
.map { imageUrls.getString(it) }
|
||||
.map {
|
||||
it.replace(".mangashow.me", ".mangashow3.me")
|
||||
.replace(".mangashow2.me", ".mangashow3.me")
|
||||
val curr = ".mangashow5.me"
|
||||
it
|
||||
.replace(".mangashow.me", curr)
|
||||
.replace(".mangashow2.me", curr)
|
||||
.replace(".mangashow3.me", curr)
|
||||
}
|
||||
.forEach { pages.add(Page(pages.size, "", decoder.request(it))) }
|
||||
} catch (e: Exception) {
|
||||
|
@ -5,7 +5,7 @@ ext {
|
||||
appName = 'Tachiyomi: NewToki'
|
||||
pkgNameSuffix = 'ko.newtoki'
|
||||
extClass = '.NewToki'
|
||||
extVersionCode = 4
|
||||
extVersionCode = 5
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ import java.util.*
|
||||
**/
|
||||
class NewToki : ParsedHttpSource() {
|
||||
override val name = "NewToki"
|
||||
override val baseUrl = "https://newtoki2.net"
|
||||
override val baseUrl = "https://newtoki3.net"
|
||||
override val lang: String = "ko"
|
||||
|
||||
// Latest updates currently returns duplicate manga as it separates manga into chapters
|
||||
|
Reference in New Issue
Block a user