InariManga: Rebrand to Inari Pikav (#4053)

* Rebrand

* bump
This commit is contained in:
bapeey 2024-07-17 05:04:15 -05:00 committed by GitHub
parent 1134385d55
commit 6b9c18a1e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 10 additions and 12 deletions

View File

@ -1,9 +1,9 @@
ext { ext {
extName = 'InariManga' extName = 'InariPikav'
extClass = '.InariManga' extClass = '.InariPikav'
themePkg = 'mangathemesia' themePkg = 'mangathemesia'
baseUrl = 'https://rukavinari.org' baseUrl = 'https://inaripikav.org'
overrideVersionCode = 10 overrideVersionCode = 11
isNsfw = true isNsfw = true
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -6,17 +6,15 @@ import okhttp3.HttpUrl.Companion.toHttpUrl
import java.text.SimpleDateFormat import java.text.SimpleDateFormat
import java.util.Locale import java.util.Locale
class InariManga : MangaThemesia( class InariPikav : MangaThemesia(
"InariManga", "Inari Pikav",
"https://rukavinari.org", "https://inaripikav.org",
"es", "es",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("en")), dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) { ) {
override val id = 7949577653918285764
// Site moved from Madara to MangaThemesia
override val versionId = 2
override val client = super.client.newBuilder() override val client = super.client.newBuilder()
.rateLimitHost(baseUrl.toHttpUrl(), 4, 1) .rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
.build() .build()
} }