Rename "ManhuaOnline" to "SamuraiScans" and remove the old extension (#3095)
rebrand
@ -1,9 +1,9 @@
|
||||
ext {
|
||||
extName = 'Manhua Online'
|
||||
extClass = '.ManhuaOnline'
|
||||
extName = 'SamuraiScan'
|
||||
extClass = '.SamuraiScan'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://blog.manhuaonline.org'
|
||||
overrideVersionCode = 2
|
||||
overrideVersionCode = 3
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 24 KiB |
@ -6,12 +6,14 @@ import okhttp3.OkHttpClient
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class ManhuaOnline : Madara(
|
||||
"Manhua Online",
|
||||
class SamuraiScan : Madara(
|
||||
"SamuraiScan",
|
||||
"https://blog.manhuaonline.org",
|
||||
"es",
|
||||
SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("es")),
|
||||
SimpleDateFormat("dd MMMM, yyyy", Locale("es")),
|
||||
) {
|
||||
override val id = 5713083996691468192
|
||||
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||
override val useNewChapterEndpoint = true
|
||||
|
||||
@ -20,4 +22,6 @@ class ManhuaOnline : Madara(
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
|
||||
override val mangaDetailsSelectorDescription = "div.summary_content div.manga-summary"
|
||||
}
|