mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 02:41:39 +00:00
fix
This commit is contained in:
@@ -9,7 +9,8 @@ const mangayomiSources = [{
|
||||
"version": "0.0.1",
|
||||
"dateFormat": "",
|
||||
"dateFormatLocale": "",
|
||||
"pkgPath": "novel/src/en/novelupdates.js"
|
||||
"pkgPath": "novel/src/en/novelupdates.js",
|
||||
"appMinVerReq": "0.3.75"
|
||||
}];
|
||||
|
||||
class DefaultExtension extends MProvider {
|
||||
|
||||
@@ -8,9 +8,9 @@ import 'model/source.dart';
|
||||
|
||||
void main() {
|
||||
final jsSources = _searchJsSources(Directory("javascript"));
|
||||
genManga(jsSources.where((element) => element.itemType == "manga").toList());
|
||||
genAnime(jsSources.where((element) => element.itemType == "anime").toList());
|
||||
genNovel(jsSources.where((element) => element.itemType == "novel").toList());
|
||||
genManga(jsSources.where((element) => element.itemType!.name == "manga").toList());
|
||||
genAnime(jsSources.where((element) => element.itemType!.name == "anime").toList());
|
||||
genNovel(jsSources.where((element) => element.itemType!.name == "novel").toList());
|
||||
}
|
||||
|
||||
void genManga(List<Source> jsMangasourceList) {
|
||||
|
||||
Reference in New Issue
Block a user