Siimanga: Migrate theme (#3857)

* Migrate theme

* Update icon

* Bump version

* Enable project filter

* Remove id
This commit is contained in:
Chopper 2024-07-05 05:53:28 -03:00 committed by Draff
parent 7d607486c4
commit 6047e02345
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 6 additions and 13 deletions

View File

@ -1,9 +1,9 @@
ext { ext {
extName = 'Siikomik' extName = 'Siikomik'
extClass = '.Siikomik' extClass = '.Siikomik'
themePkg = 'madara' themePkg = 'mangathemesia'
baseUrl = 'https://siikomik.com' baseUrl = 'https://siikomik.com'
overrideVersionCode = 1 overrideVersionCode = 8
isNsfw = false isNsfw = false
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,25 +1,18 @@
package eu.kanade.tachiyomi.extension.id.siimanga 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 eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class Siikomik : Madara( class Siikomik : MangaThemesia(
"Siikomik", "Siikomik",
"https://siikomik.com", "https://siikomik.com",
"id", "id",
dateFormat = SimpleDateFormat("dd MMMM yyyy", Locale.US),
) { ) {
override val id = 5693774260946188681 override val versionId = 2
override val mangaSubString = "komik"
override val client = super.client.newBuilder() override val client = super.client.newBuilder()
.rateLimit(3) .rateLimit(3)
.build() .build()
override val useLoadMoreRequest = LoadMoreStrategy.Always override val hasProjectPage = true
override val useNewChapterEndpoint = false
} }