Add FlowerMangaDotCom (#3131)

* Add FlowerMangaB

* Fix extClass

* Fix date format

* Rename source

* Fix name
This commit is contained in:
Chopper 2024-05-23 07:52:20 -03:00 committed by GitHub
parent 804aef3f1d
commit f1c0dba8bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'FlowerManga.com'
extClass = '.FlowerMangaDotCom'
themePkg = 'madara'
baseUrl = 'https://flowermanga.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View File

@ -0,0 +1,22 @@
package eu.kanade.tachiyomi.extension.pt.flowermangadotcom
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class FlowerMangaDotCom : Madara(
"FlowerManga.com",
"https://flowermanga.com",
"pt-BR",
SimpleDateFormat("dd MMMMM 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
}