Flower Manga: update domain, icon (#2871)

This commit is contained in:
Vetle Ledaal 2024-05-06 17:29:22 +00:00 committed by GitHub
parent 67e57a9817
commit 7ae0fe1b76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 8 additions and 5 deletions

View File

@ -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"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -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
}