Siimanga: Migrate theme (#3857)
* Migrate theme * Update icon * Bump version * Enable project filter * Remove id
@ -1,9 +1,9 @@
|
||||
ext {
|
||||
extName = 'Siikomik'
|
||||
extClass = '.Siikomik'
|
||||
themePkg = 'madara'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://siikomik.com'
|
||||
overrideVersionCode = 1
|
||||
overrideVersionCode = 8
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 11 KiB |
@ -1,25 +1,18 @@
|
||||
package eu.kanade.tachiyomi.extension.id.siimanga
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class Siikomik : Madara(
|
||||
class Siikomik : MangaThemesia(
|
||||
"Siikomik",
|
||||
"https://siikomik.com",
|
||||
"id",
|
||||
dateFormat = SimpleDateFormat("dd MMMM yyyy", Locale.US),
|
||||
) {
|
||||
override val id = 5693774260946188681
|
||||
|
||||
override val mangaSubString = "komik"
|
||||
override val versionId = 2
|
||||
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Always
|
||||
|
||||
override val useNewChapterEndpoint = false
|
||||
override val hasProjectPage = true
|
||||
}
|
||||
|