InariManga: Rebrand to Inari Pikav ()

* Rebrand

* bump
This commit is contained in:
bapeey 2024-07-17 05:04:15 -05:00 committed by Draff
parent 0391029417
commit 02ebd645ad
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 10 additions and 12 deletions
src/es/inarimanga
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/es/inarimanga

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

(image error) Size: 5.6 KiB

After

(image error) Size: 6.2 KiB

Binary file not shown.

Before

(image error) Size: 3.2 KiB

After

(image error) Size: 3.3 KiB

Binary file not shown.

Before

(image error) Size: 8.4 KiB

After

(image error) Size: 9.0 KiB

Binary file not shown.

Before

(image error) Size: 16 KiB

After

(image error) Size: 16 KiB

Binary file not shown.

Before

(image error) Size: 24 KiB

After

(image error) Size: 24 KiB

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