-
Notifications
You must be signed in to change notification settings - Fork 482
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add connector monzeekomik (#6954) * add connector monzeekomik * fix lint --------- Co-authored-by: MikeZeDev <MikeZeDev@users.noreply.github.com> * Fix ComicExtra : change domain (#6951) * FIx KomikAV: domain type (#6881) Fixes #6879 * Fix Saikaiscan : change domain (#6963) Fixes #6620 * Fix LxHentai: change domain (#6970) Fixes #6968 * Lock ESLint Version (#6971) * lock eslint version * fix lint errors --------- Co-authored-by: akn19 <86169232+akn19@users.noreply.github.com> Co-authored-by: Ronny <wegener.ronny@gmail.com>
- Loading branch information
1 parent
94f4154
commit d46c321
Showing
8 changed files
with
31 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import WordPressMangastream from './templates/WordPressMangastream.mjs'; | ||
|
||
export default class MonzeeKomik extends WordPressMangastream { | ||
|
||
constructor() { | ||
super(); | ||
super.id = 'monzeekomik'; | ||
super.label = 'MonzeeKomik'; | ||
this.tags = ['manga', 'manhwa', 'indonesian']; | ||
this.url = 'https://monzeekomik.my.id'; | ||
this.path = '/manga/list-mode/'; | ||
} | ||
|
||
async _getMangas() { | ||
const mangas = await super._getMangas(); | ||
mangas.forEach(manga => manga.title = manga.title.replace(/Bahasa Indonesia$/i, '').trim()); | ||
return mangas; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters