Flower Manga: update domain, icon (#2871)
@ -2,8 +2,9 @@ ext {
|
||||
extName = 'Flower Manga'
|
||||
extClass = '.FlowerManga'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://flowermanga.com'
|
||||
overrideVersionCode = 0
|
||||
baseUrl = 'https://flowermanga.net'
|
||||
overrideVersionCode = 1
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 9.1 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 56 KiB |
@ -9,12 +9,14 @@ import java.util.concurrent.TimeUnit
|
||||
|
||||
class FlowerManga : Madara(
|
||||
"Flower Manga",
|
||||
"https://flowermanga.com",
|
||||
"https://flowermanga.net",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("dd MMMMM yyyy", Locale("pt", "BR")),
|
||||
SimpleDateFormat("d 'de' MMMMM 'de' yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(1, 2, TimeUnit.SECONDS)
|
||||
.build()
|
||||
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||
override val useNewChapterEndpoint = false
|
||||
}
|
||||
|