mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 10:51:17 +00:00
fix
This commit is contained in:
@@ -10,6 +10,7 @@ import 'src/en/animepahe/source.dart';
|
|||||||
import 'src/en/dramacool/source.dart';
|
import 'src/en/dramacool/source.dart';
|
||||||
import 'src/en/gogoanime/source.dart';
|
import 'src/en/gogoanime/source.dart';
|
||||||
import 'src/en/nineanimetv/source.dart';
|
import 'src/en/nineanimetv/source.dart';
|
||||||
|
import 'src/fr/anizone/source.dart';
|
||||||
import 'src/fr/animesama/source.dart';
|
import 'src/fr/animesama/source.dart';
|
||||||
import 'src/hi/yomovies/source.dart';
|
import 'src/hi/yomovies/source.dart';
|
||||||
import 'src/en/kisskh/source.dart';
|
import 'src/en/kisskh/source.dart';
|
||||||
@@ -50,5 +51,5 @@ List<Source> dartAnimesourceList = [
|
|||||||
animepaheSource,
|
animepaheSource,
|
||||||
animetoast,
|
animetoast,
|
||||||
animesvision,
|
animesvision,
|
||||||
diziwatchSource
|
diziwatchSource,aniZoneSource
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -57,7 +57,6 @@ class AniZone extends MProvider {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Future<MPages> search(String query, int page, FilterList filterList) async {
|
Future<MPages> search(String query, int page, FilterList filterList) async {
|
||||||
List<MManga> animeList = [];
|
|
||||||
String baseUrl = "${source.baseUrl}/filter?keyword=$query";
|
String baseUrl = "${source.baseUrl}/filter?keyword=$query";
|
||||||
|
|
||||||
Map<String, List<String>> filterMap = {
|
Map<String, List<String>> filterMap = {
|
||||||
@@ -186,7 +185,8 @@ class AniZone extends MProvider {
|
|||||||
final playerUrl = "https://voe.sx/e/${links[j]}";
|
final playerUrl = "https://voe.sx/e/${links[j]}";
|
||||||
videoList.add({"lang": lang[j], "player": playerUrl});
|
videoList.add({"lang": lang[j], "player": playerUrl});
|
||||||
} else if (name_players.isNotEmpty && name_players[j] == "Fmoon") {
|
} else if (name_players.isNotEmpty && name_players[j] == "Fmoon") {
|
||||||
final playerUrl = "https://filemoon.sx/e/${links[j]}&data-realid=${links[j]}&epid=${videoMatch.group(1)}";
|
final playerUrl =
|
||||||
|
"https://filemoon.sx/e/${links[j]}&data-realid=${links[j]}&epid=${videoMatch.group(1)}";
|
||||||
videoList.add({"lang": lang[j], "player": playerUrl});
|
videoList.add({"lang": lang[j], "player": playerUrl});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -219,7 +219,7 @@ class AniZone extends MProvider {
|
|||||||
} else if (playerUrl.contains("vidcdn")) {
|
} else if (playerUrl.contains("vidcdn")) {
|
||||||
a = await vidcdnExtractor(playerUrl, lang);
|
a = await vidcdnExtractor(playerUrl, lang);
|
||||||
} else if (playerUrl.contains("filemoon")) {
|
} else if (playerUrl.contains("filemoon")) {
|
||||||
a = await filemoonExtractor(playerUrl, lang,"");
|
a = await filemoonExtractor(playerUrl, lang, "");
|
||||||
}
|
}
|
||||||
videos.addAll(a);
|
videos.addAll(a);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
import '../../../../../model/source.dart';
|
import '../../../../../model/source.dart';
|
||||||
|
|
||||||
Source get _AniZoneSource => _AniZoneSource;
|
Source get aniZoneSource => _aniZoneSource;
|
||||||
const _AniZoneVersion = "0.0.1";
|
const _aniZoneVersion = "0.0.1";
|
||||||
const _AniZoneSourceCodeUrl =
|
const _aniZoneSourceCodeUrl =
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/AniZone/AniZone.dart";
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/anizone/anizone.dart";
|
||||||
Source _AniZoneSource = Source(
|
Source _aniZoneSource = Source(
|
||||||
name: "AniZone",
|
name: "aniZone",
|
||||||
baseUrl: "https://v1.animesz.xyz",
|
baseUrl: "https://v1.animesz.xyz",
|
||||||
lang: "fr",
|
lang: "fr",
|
||||||
typeSource: "single",
|
typeSource: "single",
|
||||||
iconUrl:
|
iconUrl:
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/AniZone/icon.png",
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/src/fr/anizone/icon.png",
|
||||||
sourceCodeUrl: _AniZoneSourceCodeUrl,
|
sourceCodeUrl: _aniZoneSourceCodeUrl,
|
||||||
version: _AniZoneVersion,
|
version: _aniZoneVersion,
|
||||||
isManga: false);
|
isManga: false);
|
||||||
Reference in New Issue
Block a user