Remove Ukiyotoon and rebrand InariManga to VisorInari (#5567)
rebrand againnnnn
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 15 KiB |
|
@ -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")),
|
||||||
) {
|
) {
|
|
@ -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"
|
|
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 9.5 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 25 KiB |
|
@ -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()
|
|
||||||
}
|
|