This commit is contained in:
kodjomoustapha
2023-10-30 19:05:35 +01:00
parent f3c6cf8b59
commit b8c4c2c3c3
51 changed files with 3711 additions and 3469 deletions

View File

@@ -0,0 +1,28 @@
import '../../../model/source.dart';
import '../../../utils/utils.dart';
const zorothemeVersion = "0.0.4";
const zorothemeSourceCodeUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/anime/multisrc/zorotheme/zorotheme-v$zorothemeVersion.dart";
List<Source> get zorothemeSourcesList => _zorothemeSourcesList;
List<Source> _zorothemeSourcesList = [
Source(
name: "AniWatch.to",
baseUrl: "https://aniwatch.to",
lang: "en",
typeSource: "zorotheme",
iconUrl: getIconUrl("aniwatch", "en"),
version: zorothemeVersion,
isManga: false,
sourceCodeUrl: zorothemeSourceCodeUrl),
Source(
name: "Kaido.to",
baseUrl: "https://kaido.to",
lang: "en",
typeSource: "zorotheme",
iconUrl: getIconUrl("kaido", "en"),
version: zorothemeVersion,
isManga: false,
sourceCodeUrl: zorothemeSourceCodeUrl),
];