mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 10:51:17 +00:00
first commit
This commit is contained in:
166
multisrc/mmrcms/sources.dart
Normal file
166
multisrc/mmrcms/sources.dart
Normal file
@@ -0,0 +1,166 @@
|
||||
import '../../model/source.dart';
|
||||
|
||||
const mmrcmsVersion = "0.0.1";
|
||||
const mmrcmsSourceCodeUrl =
|
||||
"https://raw.githubusercontent.com/kodjodevf/External-source-test/main/multisrc/mmrcms/mmrcms-v$mmrcmsVersion.dart";
|
||||
const defaultDateFormat = "d MMM. yyyy";
|
||||
const defaultDateFormatLocale = "en_US";
|
||||
|
||||
List<Source> get mmrcmsSourcesList => _mmrcmsSourcesList;
|
||||
List<Source> _mmrcmsSourcesList = [
|
||||
Source(
|
||||
name: "Scan FR",
|
||||
baseUrl: "https://www.scan-fr.org",
|
||||
lang: "fr",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
Source(
|
||||
name: "Scan VF",
|
||||
baseUrl: "https://www.scan-vf.net",
|
||||
lang: "fr",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
Source(
|
||||
name: "Komikid",
|
||||
baseUrl: "https://www.komikid.com",
|
||||
lang: "id",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
Source(
|
||||
name: "MangaID",
|
||||
baseUrl: "https://mangaid.click",
|
||||
lang: "id",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
Source(
|
||||
name: "Jpmangas",
|
||||
baseUrl: "https://jpmangas.cc",
|
||||
lang: "fr",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
|
||||
Source(
|
||||
name: "مانجا اون لاين",
|
||||
baseUrl: "https://onma.top",
|
||||
lang: "ar",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
Source(
|
||||
name: "Read Comics Online",
|
||||
baseUrl: "https://readcomicsonline.ru",
|
||||
lang: "en",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
), //
|
||||
Source(
|
||||
name: "Zahard",
|
||||
baseUrl: "https://zahard.xyz",
|
||||
lang: "en",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
Source(
|
||||
name: "Mangadoor",
|
||||
baseUrl: "https://mangadoor.com",
|
||||
lang: "es",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
Source(
|
||||
name: "Utsukushii",
|
||||
baseUrl: "https://manga.utsukushii-bg.com",
|
||||
lang: "bg",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
Source(
|
||||
name: "Phoenix-Scans",
|
||||
baseUrl: "https://phoenix-scans.pl",
|
||||
lang: "pl",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
Source(
|
||||
name: "Lelscan-VF",
|
||||
baseUrl: "https://www.lelscanvf.cc/",
|
||||
lang: "fr",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
// Source(
|
||||
// name: "AnimaRegia",
|
||||
// baseUrl: "https://animaregia.net",
|
||||
// lang: "pt-BR",
|
||||
// typeSource: "mmrcms",
|
||||
// iconUrl: '',
|
||||
// dateFormat: defaultDateFormat,
|
||||
// dateFormatLocale: defaultDateFormatLocale,
|
||||
// version: mmrcmsVersion,
|
||||
// sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
// ),
|
||||
Source(
|
||||
name: "Manga-FR",
|
||||
baseUrl: "https://manga-fr.me",
|
||||
lang: "fr",
|
||||
typeSource: "mmrcms",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: mmrcmsVersion,
|
||||
sourceCodeUrl: mmrcmsSourceCodeUrl,
|
||||
),
|
||||
];
|
||||
Reference in New Issue
Block a user