Remove Ukiyotoon and rebrand InariManga to VisorInari (#5567)

rebrand againnnnn
This commit is contained in:
bapeey 2024-10-18 07:51:57 -05:00 committed by Draff
parent 5ada452655
commit b404fe1ab0
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
14 changed files with 7 additions and 35 deletions

View File

@ -1,9 +1,9 @@
ext { ext {
extName = 'Inari Manga' extName = 'Visor Inari'
extClass = '.InariManga' extClass = '.VisorInari'
themePkg = 'mangathemesia' themePkg = 'mangathemesia'
baseUrl = 'https://inarimanga.cooksu.net' baseUrl = 'https://visorinari.com'
overrideVersionCode = 12 overrideVersionCode = 13
isNsfw = true isNsfw = true
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -6,9 +6,9 @@ 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 VisorInari : MangaThemesia(
"Inari Manga", "Visor Inari",
"https://inarimanga.cooksu.net", "https://visorinari.com",
"es", "es",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")), dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) { ) {

View File

@ -1,10 +0,0 @@
ext {
extName = 'Ukiyo Toon'
extClass = '.UkiyoToon'
themePkg = 'mangathemesia'
baseUrl = 'https://ukiyotoon.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@ -1,18 +0,0 @@
package eu.kanade.tachiyomi.extension.es.ukiyotoon
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimitHost
import okhttp3.HttpUrl.Companion.toHttpUrl
import java.text.SimpleDateFormat
import java.util.Locale
class UkiyoToon : MangaThemesia(
"Ukiyo Toon",
"https://ukiyotoon.com",
"es",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("es")),
) {
override val client = super.client.newBuilder()
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
.build()
}