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 GitHub
parent 222bfcce35
commit 80f5d2461e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 7 additions and 35 deletions

View File

@ -1,9 +1,9 @@
ext {
extName = 'Inari Manga'
extClass = '.InariManga'
extName = 'Visor Inari'
extClass = '.VisorInari'
themePkg = 'mangathemesia'
baseUrl = 'https://inarimanga.cooksu.net'
overrideVersionCode = 12
baseUrl = 'https://visorinari.com'
overrideVersionCode = 13
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.util.Locale
class InariManga : MangaThemesia(
"Inari Manga",
"https://inarimanga.cooksu.net",
class VisorInari : MangaThemesia(
"Visor Inari",
"https://visorinari.com",
"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()
}