FlowerManga: Rename source (#3159)

* Raname source

* Fix name
This commit is contained in:
Chopper 2024-05-23 07:52:45 -03:00 committed by GitHub
parent f1c0dba8bf
commit 80a295b5e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 5 deletions

View File

@ -1,9 +1,9 @@
ext {
extName = 'Flower Manga'
extClass = '.FlowerManga'
extName = 'FlowerManga.net'
extClass = '.FlowerMangaDotNet'
themePkg = 'madara'
baseUrl = 'https://flowermanga.net'
overrideVersionCode = 1
overrideVersionCode = 2
isNsfw = true
}

View File

@ -7,12 +7,15 @@ import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class FlowerManga : Madara(
"Flower Manga",
class FlowerMangaDotNet : Madara(
"FlowerManga.net",
"https://flowermanga.net",
"pt-BR",
SimpleDateFormat("d 'de' MMMMM 'de' yyyy", Locale("pt", "BR")),
) {
override val id = 2421010180391442293
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)
.build()