Rename "ManhuaOnline" to "SamuraiScans" and remove the old extension (#3095)

rebrand
This commit is contained in:
bapeey 2024-05-18 09:53:23 -05:00 committed by GitHub
parent 26f248f323
commit 788e15c457
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 10 additions and 6 deletions

View File

@ -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
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -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"
}