Remove Ukiyotoon and rebrand InariManga to VisorInari (#5567)
rebrand againnnnn
@ -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
|
||||
}
|
||||
|
||||
|
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.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")),
|
||||
) {
|
@ -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()
|
||||
}
|