New source: Yomiroll (ALL)

This commit is contained in:
kodjomoustapha
2024-02-03 16:59:24 +01:00
parent f4f8049977
commit 8d388d8c98
4 changed files with 1175 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ import 'multisrc/dopeflix/sources.dart';
import 'multisrc/zorotheme/sources.dart';
import 'src/all/animeworldindia/sources.dart';
import 'src/all/nyaa/source.dart';
import 'src/all/yomiroll/source.dart';
import 'src/ar/okanime/source.dart';
import 'src/de/aniflix/source.dart';
import 'src/en/aniwave/source.dart';
@@ -50,7 +51,8 @@ void main() {
nineanimetv,
aniflix,
...animeworldindiaSourcesList,
nyaaSource
nyaaSource,
yomirollSource
];
final List<Map<String, dynamic>> jsonList =
_sourcesList.map((source) => source.toJson()).toList();

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1,19 @@
import '../../../../model/source.dart';
const _yomirollVersion = "0.0.1";
const _yomirollSourceCodeUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/anime/src/all/yomiroll/yomiroll.dart";
String _iconUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/anime/src/all/yomiroll/icon.png";
Source get yomirollSource => _yomirollSource;
Source _yomirollSource = Source(
name: 'Yomiroll',
baseUrl: "https://crunchyroll.com",
lang: "all",
typeSource: "multiple",
iconUrl: _iconUrl,
version: _yomirollVersion,
isManga: false,
sourceCodeUrl: _yomirollSourceCodeUrl);

File diff suppressed because it is too large Load Diff