LMTO Online: Rebrand to Jobsibe (#6226)

* rebrand

* remove jobsibe
This commit is contained in:
bapeey 2024-11-23 05:09:15 -05:00 committed by Draff
parent 639c9821ae
commit 361081d840
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
14 changed files with 8 additions and 38 deletions

View File

@ -1,10 +0,0 @@
ext {
extName = 'Jobsibe'
extClass = '.Jobsibe'
themePkg = 'madara'
baseUrl = 'https://jobsibe.com'
overrideVersionCode = 1
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

View File

@ -1,23 +0,0 @@
package eu.kanade.tachiyomi.extension.es.jobsibe
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
class Jobsibe : Madara(
"Jobsibe",
"https://jobsibe.com",
"es",
SimpleDateFormat("MMMM d, yyyy", Locale("es")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
override val filterNonMangaItems = false
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(2)
.build()
}

View File

@ -1,9 +1,9 @@
ext {
extName = 'LMTO Online'
extClass = '.LMTOOnline'
extName = 'Jobsibe'
extClass = '.Jobsibe'
themePkg = 'madara'
baseUrl = 'https://lmtos.com'
overrideVersionCode = 0
overrideVersionCode = 1
isNsfw = true
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -6,12 +6,15 @@ import okhttp3.HttpUrl.Companion.toHttpUrl
import java.text.SimpleDateFormat
import java.util.Locale
class LMTOOnline : Madara(
"LMTO Online",
class Jobsibe : Madara(
"Jobsibe",
"https://lmtos.com",
"es",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("es")),
) {
override val id = 3752522006902890093
override val client = super.client.newBuilder()
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
.build()