Ozul Scans to King of Manga (#1917)

also enable dynamic urls
This commit is contained in:
AwkwardPeak7 2024-03-17 01:33:14 +05:00 committed by Draff
parent dfb4b93953
commit 62bd6c0817
8 changed files with 18 additions and 15 deletions

View File

@ -1,9 +1,9 @@
ext {
extName = 'Ozul Scans'
extClass = '.OzulScans'
extName = 'King Of Manga'
extClass = '.KingOfManga'
themePkg = 'mangathemesia'
baseUrl = 'https://kingofmanga.com'
overrideVersionCode = 2
overrideVersionCode = 3
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.ar.ozulscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesiaAlt
import java.text.SimpleDateFormat
import java.util.Locale
class KingOfManga : MangaThemesiaAlt(
"King Of Manga",
"https://kingofmanga.com",
"ar",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("ar")),
) {
// Ozul Scans -> King of Manga
override val id = 3453769904666687440
}

View File

@ -1,12 +0,0 @@
package eu.kanade.tachiyomi.extension.ar.ozulscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class OzulScans : MangaThemesia(
"Ozul Scans",
"https://kingofmanga.com",
"ar",
dateFormat = SimpleDateFormat("MMM d, yyy", Locale("ar")),
)