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 {
extName = 'InariManga'
extClass = '.InariManga'
extName = 'InariPikav'
extClass = '.InariPikav'
themePkg = 'mangathemesia'
baseUrl = 'https://rukavinari.org'
overrideVersionCode = 10
baseUrl = 'https://inaripikav.org'
overrideVersionCode = 11
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.util.Locale
class InariManga : MangaThemesia(
"InariManga",
"https://rukavinari.org",
class InariPikav : MangaThemesia(
"Inari Pikav",
"https://inaripikav.org",
"es",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("en")),
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) {
// Site moved from Madara to MangaThemesia
override val versionId = 2
override val id = 7949577653918285764
override val client = super.client.newBuilder()
.rateLimitHost(baseUrl.toHttpUrl(), 4, 1)
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
.build()
}