fix
This commit is contained in:
parent
9f614fe664
commit
07545f8843
2 changed files with 5 additions and 4 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue