Removed Manga Flame(AR), added Flone Scans(EN) (#7608)
* MangaFlame(ar) to FloneScans(en) * suggested change * Update build.gradle bump reset * Update FloneScans.kt new line
|
@ -1,9 +0,0 @@
|
||||||
ext {
|
|
||||||
extName = 'Manga Flame'
|
|
||||||
extClass = '.MangaFlame'
|
|
||||||
themePkg = 'mangathemesia'
|
|
||||||
baseUrl = 'https://mangaflame.org'
|
|
||||||
overrideVersionCode = 3
|
|
||||||
}
|
|
||||||
|
|
||||||
apply from: "$rootDir/common.gradle"
|
|
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 11 KiB |
|
@ -1,14 +0,0 @@
|
||||||
package eu.kanade.tachiyomi.extension.ar.mangaflame
|
|
||||||
|
|
||||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
|
||||||
import java.text.SimpleDateFormat
|
|
||||||
import java.util.Locale
|
|
||||||
|
|
||||||
class MangaFlame : MangaThemesia(
|
|
||||||
"Manga Flame",
|
|
||||||
"https://mangaflame.org",
|
|
||||||
"ar",
|
|
||||||
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("ar")),
|
|
||||||
) {
|
|
||||||
override val id = 1501237443119573205
|
|
||||||
}
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Flone Scans'
|
||||||
|
extClass = '.FloneScans'
|
||||||
|
themePkg = 'mangathemesia'
|
||||||
|
baseUrl = 'https://sweetmanhwa.online'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 35 KiB |
|
@ -0,0 +1,12 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.en.flonescans
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class FloneScans : MangaThemesia(
|
||||||
|
"Flone Scans",
|
||||||
|
"https://sweetmanhwa.online",
|
||||||
|
"en",
|
||||||
|
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale.ENGLISH),
|
||||||
|
)
|