Remove some sources (#1656)

* remove 247Manga

site redirects to luxmanga.net which already exists as extension

* remove 1st Manhwa

site redirects to Todaymic

* add description selector
This commit is contained in:
AwkwardPeak7 2024-03-03 01:37:04 +05:00 committed by GitHub
parent 136bdd6a0e
commit d4244eec23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
16 changed files with 7 additions and 35 deletions

View File

@ -1,10 +0,0 @@
ext {
extName = '1st Manhwa'
extClass = '.FirstManhwa'
themePkg = 'madara'
baseUrl = 'https://1stmanhwa.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

View File

@ -1,9 +0,0 @@
package eu.kanade.tachiyomi.extension.en.firstmanhwa
import eu.kanade.tachiyomi.multisrc.madara.Madara
class FirstManhwa : Madara("1st Manhwa", "https://1stmanhwa.com", "en") {
override val useNewChapterEndpoint = true
override val filterNonMangaItems = false
override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Status) + div.summary-content"
}

View File

@ -1,9 +0,0 @@
ext {
extName = '247Manga'
extClass = '.Manga247'
themePkg = 'madara'
baseUrl = 'https://247manga.com'
overrideVersionCode = 1
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

View File

@ -1,5 +0,0 @@
package eu.kanade.tachiyomi.extension.en.manga247
import eu.kanade.tachiyomi.multisrc.madara.Madara
class Manga247 : Madara("247Manga", "https://247manga.com", "en")

View File

@ -3,7 +3,7 @@ ext {
extClass = '.Todaymic'
themePkg = 'madara'
baseUrl = 'https://todaymic.com'
overrideVersionCode = 1
overrideVersionCode = 2
}
apply from: "$rootDir/common.gradle"

View File

@ -2,4 +2,9 @@ package eu.kanade.tachiyomi.extension.en.todaymic
import eu.kanade.tachiyomi.multisrc.madara.Madara
class Todaymic : Madara("Todaymic", "https://todaymic.com", "en")
class Todaymic : Madara("Todaymic", "https://todaymic.com", "en") {
override val filterNonMangaItems = false
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val mangaDetailsSelectorDescription = ".manga-about > p:nth-child(2)"
}