mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 19:01:15 +00:00
first commit
This commit is contained in:
282
multisrc/madara/madara-v0.0.1.dart
Normal file
282
multisrc/madara/madara-v0.0.1.dart
Normal file
@@ -0,0 +1,282 @@
|
||||
// import 'dart:convert';
|
||||
|
||||
// getPopularManga(MangaModel manga) async {
|
||||
// final url = "${manga.baseUrl}/manga/page/${manga.page}/?m_orderby=views";
|
||||
// final data = {"url": url, "headers": null, "sourceId": manga.sourceId};
|
||||
// final res = await MBridge.http(json.encode(data), 0);
|
||||
// if (res.isEmpty) {
|
||||
// return manga;
|
||||
// }
|
||||
// manga.urls = MBridge.xpath(res, '//*[@class^="post-title"]/h3/a/@href', '-.')
|
||||
// .split("-.");
|
||||
// String images =
|
||||
// MBridge.xpath(res, '//*[@id^="manga-item"]/a/img/@data-src', '-.');
|
||||
// if (images.isEmpty) {
|
||||
// images =
|
||||
// MBridge.xpath(res, '//*[@id^="manga-item"]/a/img/@data-lazy-src', '-.');
|
||||
// if (images.isEmpty) {
|
||||
// images = MBridge.xpath(res, '//*[@id^="manga-item"]/a/img/@srcset', '-.');
|
||||
// if (images.isEmpty) {
|
||||
// images = MBridge.xpath(res, '//*[@id^="manga-item"]/a/img/@src', '-.');
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// manga.images = images.split("-.");
|
||||
// manga.names =
|
||||
// MBridge.xpath(res, '//*[@id^="manga-item"]/a/@title', '-.').split("-.");
|
||||
|
||||
// return manga;
|
||||
// }
|
||||
|
||||
// getMangaDetail(MangaModel manga) async {
|
||||
// final statusList = [
|
||||
// {
|
||||
// "OnGoing": 0,
|
||||
// "Продолжается": 0,
|
||||
// "Updating": 0,
|
||||
// "Em Lançamento": 0,
|
||||
// "Em lançamento": 0,
|
||||
// "Em andamento": 0,
|
||||
// "Em Andamento": 0,
|
||||
// "En cours": 0,
|
||||
// "Ativo": 0,
|
||||
// "Lançando": 0,
|
||||
// "Đang Tiến Hành": 0,
|
||||
// "Devam Ediyor": 0,
|
||||
// "Devam ediyor": 0,
|
||||
// "In Corso": 0,
|
||||
// "In Arrivo": 0,
|
||||
// "مستمرة": 0,
|
||||
// "مستمر": 0,
|
||||
// "En Curso": 0,
|
||||
// "En curso": 0,
|
||||
// "Emision": 0,
|
||||
// "En marcha": 0,
|
||||
// "Publicandose": 0,
|
||||
// "En emision": 0,
|
||||
// "连载中": 0,
|
||||
// "Completed": 1,
|
||||
// "Completo": 1,
|
||||
// "Completado": 1,
|
||||
// "Concluído": 1,
|
||||
// "Concluido": 1,
|
||||
// "Finalizado": 1,
|
||||
// "Terminé": 1,
|
||||
// "Hoàn Thành": 1,
|
||||
// "مكتملة": 1,
|
||||
// "مكتمل": 1,
|
||||
// "已完结": 1,
|
||||
// "On Hold": 2,
|
||||
// "Pausado": 2,
|
||||
// "En espera": 2,
|
||||
// "Canceled": 3,
|
||||
// "Cancelado": 3,
|
||||
// }
|
||||
// ];
|
||||
|
||||
// final datas = {
|
||||
// "url": manga.link,
|
||||
// "headers": null,
|
||||
// "sourceId": manga.sourceId
|
||||
// };
|
||||
// final res = await MBridge.http(json.encode(datas), 0);
|
||||
// if (res.isEmpty) {
|
||||
// return manga;
|
||||
// }
|
||||
// manga.author =
|
||||
// MBridge.querySelectorAll(res, "div.author-content > a", 0, "", 0, 0, "");
|
||||
// manga.description = MBridge.querySelectorAll(
|
||||
// res,
|
||||
// "div.description-summary div.summary__content, div.summary_content div.post-content_item > h5 + div, div.summary_content div.manga-excerpt, div.sinopsis div.contenedor, .description-summary > p",
|
||||
// 0,
|
||||
// "",
|
||||
// 0,
|
||||
// 0,
|
||||
// "");
|
||||
// manga.imageUrl =
|
||||
// MBridge.querySelectorAll(res, "div.summary_image img", 2, "", 2, 1, "");
|
||||
// final mangaId = MBridge.querySelectorAll(
|
||||
// res, "div[id^=manga-chapters-holder]", 3, "data-id", 0, 1, "");
|
||||
// manga.status = MBridge.parseStatus(
|
||||
// MBridge.querySelectorAll(res, "div.summary-content", 0, "", 0, 2, ""),
|
||||
// statusList);
|
||||
|
||||
// manga.genre =
|
||||
// MBridge.querySelectorAll(res, "div.genres-content a", 0, "", 0, 0, "-.")
|
||||
// .split("-.");
|
||||
|
||||
// final baseUrl = "${manga.baseUrl}/";
|
||||
// final headers = {
|
||||
// "Referer": baseUrl,
|
||||
// "Content-Type": "application/x-www-form-urlencoded",
|
||||
// "X-Requested-With": "XMLHttpRequest"
|
||||
// };
|
||||
// final url =
|
||||
// "${baseUrl}wp-admin/admin-ajax.php?action=manga_get_chapters&manga=$mangaId";
|
||||
// final datasP = {"url": url, "headers": headers, "sourceId": manga.sourceId};
|
||||
|
||||
// String resP = await MBridge.http(json.encode(datasP), 1);
|
||||
// if (resP == "400") {
|
||||
// final urlP = "${manga.link}ajax/chapters";
|
||||
// final datasP = {
|
||||
// "url": urlP,
|
||||
// "headers": headers,
|
||||
// "sourceId": manga.sourceId
|
||||
// };
|
||||
// resP = await MBridge.http(json.encode(datasP), 1);
|
||||
// }
|
||||
// manga.urls = MBridge.xpath(resP, "//li/a/@href", '-.').split("-.");
|
||||
// List<dynamic> chaptersNames =
|
||||
// MBridge.xpath(resP, "//li/a/text()", '-.').split("-.");
|
||||
|
||||
// List<dynamic> dateF =
|
||||
// MBridge.xpath(resP, "//li/span/i/text()", '-.').split("-.");
|
||||
// if (MBridge.xpath(resP, "//li/a/text()", "").isEmpty) {
|
||||
// final resWebview = await MBridge.getHtmlViaWebview(manga.link,
|
||||
// "//*[@id='manga-chapters-holder']/div[2]/div/ul/li/a/@href");
|
||||
// manga.urls = MBridge.xpath(resWebview,
|
||||
// "//*[@id='manga-chapters-holder']/div[2]/div/ul/li/a/@href", '-.')
|
||||
// .split("-.");
|
||||
// chaptersNames = MBridge.xpath(resWebview,
|
||||
// "//*[@id='manga-chapters-holder']/div[2]/div/ul/li/a/text()", '-.')
|
||||
// .split("-.");
|
||||
// dateF = MBridge.xpath(
|
||||
// resWebview,
|
||||
// "//*[@id='manga-chapters-holder']/div[2]/div/ul/li/span/i/text()",
|
||||
// '-.')
|
||||
// .split("-.");
|
||||
// }
|
||||
|
||||
// manga.names = chaptersNames;
|
||||
// List<String> chapterDate = [];
|
||||
// if (dateF.length == chaptersNames.length) {
|
||||
// manga.chaptersDateUploads = MBridge.listParseDateTime(
|
||||
// dateF, manga.dateFormat, manga.dateFormatLocale);
|
||||
// } else if (dateF.length < chaptersNames.length) {
|
||||
// final length = chaptersNames.length - dateF.length;
|
||||
// String date = "${DateTime.now().millisecondsSinceEpoch}";
|
||||
// for (var i = 0; i < length - 1; i++) {
|
||||
// date += "--..${DateTime.now().millisecondsSinceEpoch}";
|
||||
// }
|
||||
|
||||
// final dateFF = MBridge.listParseDateTime(
|
||||
// dateF, manga.dateFormat, manga.dateFormatLocale);
|
||||
// List<String> chapterDate = MBridge.listParse(date.split('--..'), 0);
|
||||
|
||||
// for (var date in dateFF) {
|
||||
// chapterDate.add(date);
|
||||
// }
|
||||
// manga.chaptersDateUploads = chapterDate;
|
||||
// }
|
||||
// return manga;
|
||||
// }
|
||||
|
||||
// getChapterUrl(MangaModel manga) async {
|
||||
// final datas = {
|
||||
// "url": manga.link,
|
||||
// "headers": null,
|
||||
// "sourceId": manga.sourceId
|
||||
// };
|
||||
// final res = await MBridge.http(json.encode(datas), 0);
|
||||
// if (res.isEmpty) {
|
||||
// return [];
|
||||
// }
|
||||
// final pagesSelectorRes = MBridge.querySelector(
|
||||
// res,
|
||||
// "div.page-break, li.blocks-gallery-item, .reading-content, .text-left img",
|
||||
// 1,
|
||||
// "");
|
||||
// final imgs =
|
||||
// MBridge.querySelectorAll(pagesSelectorRes, "img", 2, "", 2, 0, '-.')
|
||||
// .split('-.');
|
||||
// List<dynamic> pageUrls = [];
|
||||
|
||||
// if (imgs.length == 1) {
|
||||
// final pages = MBridge.querySelector(res, "#single-pager", 2, "");
|
||||
|
||||
// final pagesNumber =
|
||||
// MBridge.querySelectorAll(pages, "option", 2, "", 0, 0, '-.')
|
||||
// .split('-.');
|
||||
|
||||
// for (var i = 0; i < pagesNumber.length; i++) {
|
||||
// final val = i + 1;
|
||||
// if (i.toString().length == 1) {
|
||||
// pageUrls.add(
|
||||
// MBridge.querySelectorAll(pagesSelectorRes, "img", 2, "", 2, 0, "")
|
||||
// .replaceAll("01", '0$val'));
|
||||
// } else {
|
||||
// pageUrls.add(
|
||||
// MBridge.querySelectorAll(pagesSelectorRes, "img", 2, "", 2, 0, "")
|
||||
// .replaceAll("01", val.toString()));
|
||||
// }
|
||||
// }
|
||||
// } else {
|
||||
// return imgs;
|
||||
// }
|
||||
// return pageUrls;
|
||||
// }
|
||||
|
||||
// getLatestUpdatesManga(MangaModel manga) async {
|
||||
// final url = "${manga.baseUrl}/manga/page/${manga.page}/?m_orderby=latest";
|
||||
// final datas = {"url": url, "headers": null, "sourceId": manga.sourceId};
|
||||
// final res = await MBridge.http(json.encode(datas), 0);
|
||||
// if (res.isEmpty) {
|
||||
// return manga;
|
||||
// }
|
||||
// manga.urls = MBridge.xpath(res, '//*[@class^="post-title"]/h3/a/@href', '-.')
|
||||
// .split("-.");
|
||||
// String images =
|
||||
// MBridge.xpath(res, '//*[@id^="manga-item"]/a/img/@data-src', '-.');
|
||||
// if (images.isEmpty) {
|
||||
// images =
|
||||
// MBridge.xpath(res, '//*[@id^="manga-item"]/a/img/@data-lazy-src', '-.');
|
||||
// if (images.isEmpty) {
|
||||
// images = MBridge.xpath(res, '//*[@id^="manga-item"]/a/img/@srcset', '-.');
|
||||
// if (images.isEmpty) {
|
||||
// images = MBridge.xpath(res, '//*[@id^="manga-item"]/a/img/@src', '-.');
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// manga.images = images.split("-.");
|
||||
// manga.names =
|
||||
// MBridge.xpath(res, '//*[@id^="manga-item"]/a/@title', '-.').split("-.");
|
||||
// return manga;
|
||||
// }
|
||||
|
||||
// searchManga(MangaModel manga) async {
|
||||
// final urll = "${manga.baseUrl}/?s=${manga.query}&post_type=wp-manga";
|
||||
// final datas = {"url": urll, "headers": null, "sourceId": manga.sourceId};
|
||||
// final res = await MBridge.http(json.encode(datas), 0);
|
||||
// if (res.isEmpty) {
|
||||
// return manga;
|
||||
// }
|
||||
// manga.urls =
|
||||
// MBridge.xpath(res, '//*[@class^="tab-thumb c-image-hover"]/a/@href', '-.')
|
||||
// .split("-.");
|
||||
// String images = MBridge.xpath(
|
||||
// res, '//*[@class^="tab-thumb c-image-hover"]/a/img/@data-src', '-.');
|
||||
// if (images.isEmpty) {
|
||||
// images = MBridge.xpath(res,
|
||||
// '//*[@class^="tab-thumb c-image-hover"]/a/img/@data-lazy-src', '-.');
|
||||
// if (images.isEmpty) {
|
||||
// images = MBridge.xpath(
|
||||
// res, '//*[@class^="tab-thumb c-image-hover"]/a/img/@srcset', '-.');
|
||||
// if (images.isEmpty) {
|
||||
// images = MBridge.xpath(
|
||||
// res, '//*[@class^="tab-thumb c-image-hover"]/a/img/@src', '-.');
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// manga.images = images.split("-.");
|
||||
// manga.names = MBridge.xpath(
|
||||
// res, '//*[@class^="tab-thumb c-image-hover"]/a/@title', '-.')
|
||||
// .split("-.");
|
||||
// return manga;
|
||||
// }
|
||||
|
||||
// Map<String, String> getHeader(String url) {
|
||||
// final headers = {
|
||||
// "Referer": "$url/",
|
||||
// };
|
||||
// return headers;
|
||||
// }
|
||||
637
multisrc/madara/sources.dart
Normal file
637
multisrc/madara/sources.dart
Normal file
@@ -0,0 +1,637 @@
|
||||
import '../../model/source.dart';
|
||||
|
||||
const madaraVersion = "0.0.1";
|
||||
const madaraSourceCodeUrl =
|
||||
"https://raw.githubusercontent.com/kodjodevf/External-source-test/main/multisrc/madara/madara-v$madaraVersion.dart";
|
||||
const defaultDateFormat = "MMMM dd, yyyy";
|
||||
const defaultDateFormatLocale = "en_US";
|
||||
List<Source> get madaraSourcesList => _madaraSourcesList;
|
||||
List<Source> _madaraSourcesList = [
|
||||
Source(
|
||||
name: "FR-Scan",
|
||||
baseUrl: "https://fr-scan.com",
|
||||
lang: "fr",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: "fr",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "AstralManga",
|
||||
baseUrl: "https://astral-manga.fr",
|
||||
lang: "fr",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd/mm/yyyy",
|
||||
dateFormatLocale: "fr",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Akuma no Tenshi",
|
||||
baseUrl: "https://akumanotenshi.com",
|
||||
lang: "tr",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd/MM/yyyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Adult Webtoon",
|
||||
baseUrl: "https://adultwebtoon.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
isNsfw: true,
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "ArazNovel",
|
||||
baseUrl: "https://www.araznovel.com",
|
||||
lang: "tr",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "d MMMM yyyy",
|
||||
dateFormatLocale: "en",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "BestManga",
|
||||
baseUrl: "https://bestmanga.club",
|
||||
lang: "ru",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd.MM.yyyy",
|
||||
dateFormatLocale: "ru",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Chibi Manga",
|
||||
baseUrl: "https://www.cmreader.info",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "CookieToon",
|
||||
baseUrl: "https://cookietoon.online",
|
||||
lang: "pt-br",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd/MM/yyyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Drope Scan",
|
||||
baseUrl: "https://dropescan.com",
|
||||
lang: "pt-br",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd/MM/yyyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "EvaScans",
|
||||
baseUrl: "https://evascans.com",
|
||||
lang: "tr",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMM d, yyy",
|
||||
dateFormatLocale: "tr",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Final Scans",
|
||||
baseUrl: "https://finalscans.com",
|
||||
lang: "pt-br",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
isNsfw: true,
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Glory Manga",
|
||||
baseUrl: "https://glorymanga.com",
|
||||
lang: "tr",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd/MM/yyy",
|
||||
dateFormatLocale: "tr",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Hentai Manga",
|
||||
baseUrl: "https://hentaimanga.me",
|
||||
isNsfw: true,
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "HentaiWebtoon",
|
||||
baseUrl: "https://hentaiwebtoon.com",
|
||||
isNsfw: true,
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Ikifeng",
|
||||
baseUrl: "https://ikifeng.com",
|
||||
lang: "es",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
isNsfw: true,
|
||||
dateFormat: "dd/MM/yyyy",
|
||||
dateFormatLocale: "es",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Inmortal Scan",
|
||||
baseUrl: "https://manga.mundodrama.site",
|
||||
lang: "es",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: "es",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Its Your Right Manhua",
|
||||
baseUrl: "https://itsyourightmanhua.com/",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Kami Sama Explorer",
|
||||
baseUrl: "https://leitor.kamisama.com.br",
|
||||
lang: "pt-br",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd 'de' MMMM 'de' yyyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "KlikManga",
|
||||
baseUrl: "https://klikmanga.id",
|
||||
lang: "id",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: "id",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "KSGroupScans",
|
||||
baseUrl: "https://ksgroupscans.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "LHTranslation",
|
||||
baseUrl: "https://lhtranslation.net",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Lolicon",
|
||||
baseUrl: "https://lolicon.mobi",
|
||||
lang: "en",
|
||||
isNsfw: true,
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Lord Manga",
|
||||
baseUrl: "https://lordmanga.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "MangaVisa",
|
||||
baseUrl: "https://mangavisa.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "MangaClash",
|
||||
baseUrl: "https://mangaclash.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MM/dd/yy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Manga District",
|
||||
baseUrl: "https://mangadistrict.com",
|
||||
lang: "tr",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
isNsfw: true,
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Manga-fast.com",
|
||||
baseUrl: "https://manga-fast.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "d MMMM'،' yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Manga Fenix",
|
||||
baseUrl: "https://manga-fenix.com",
|
||||
lang: "es",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: "es",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "MangaFreak.online",
|
||||
baseUrl: "https://mangafreak.online",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "d MMMM، yyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "MangaGreat",
|
||||
baseUrl: "https://mangagreat.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Manga Hentai",
|
||||
baseUrl: "https://mangahentai.me",
|
||||
lang: "en",
|
||||
isNsfw: true,
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "MangaMe",
|
||||
baseUrl: "https://mangame.org",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd.MM.yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Manga One Love",
|
||||
baseUrl: "https://mangaonelove.site",
|
||||
lang: "ru",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
isNsfw: true,
|
||||
dateFormat: "dd.MM.yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Manga Read",
|
||||
baseUrl: "https://mangaread.co",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "yyyy-MM-dd",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "MangaRolls",
|
||||
baseUrl: "https://mangarolls.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Manga Şehri",
|
||||
baseUrl: "https://mangasehri.com",
|
||||
lang: "tr",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd/MM/yyy",
|
||||
dateFormatLocale: "tr",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Mangasushi",
|
||||
baseUrl: "https://mangasushi.org",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Manhwa68",
|
||||
baseUrl: "https://manhwa68.com",
|
||||
lang: "en",
|
||||
isNsfw: true,
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Manhwua.fans",
|
||||
baseUrl: "https://manhwua.fans",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "yyyy'年'M'月'd",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "ManyToon.me",
|
||||
baseUrl: "https://manytoon.me",
|
||||
lang: "en",
|
||||
isNsfw: true,
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Milftoon",
|
||||
baseUrl: "https://milftoon.xxx",
|
||||
lang: "en",
|
||||
isNsfw: true,
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "d MMMM, yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "MurimScan",
|
||||
baseUrl: "https://murimscan.run",
|
||||
lang: "en",
|
||||
isNsfw: true,
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Ninja Scan",
|
||||
baseUrl: "https://ninjascan.xyz",
|
||||
lang: "pt-br",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd 'de' MMMMM 'de' yyyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "NovelCrow",
|
||||
baseUrl: "https://novelcrow.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
isNsfw: true,
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Pirulito Rosa",
|
||||
baseUrl: "https://pirulitorosa.site",
|
||||
lang: "pt-br",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
isNsfw: true,
|
||||
dateFormat: "dd/MM/yyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "RagnarokScan",
|
||||
baseUrl: "https://ragnarokscan.com",
|
||||
lang: "es",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMMM dd, yyyy",
|
||||
dateFormatLocale: "es",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Ragnarok Scanlation",
|
||||
baseUrl: "https://ragnarokscanlation.com",
|
||||
lang: "es",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: "es",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Rio2 Manga",
|
||||
baseUrl: "https://rio2manga.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Romantik Manga",
|
||||
baseUrl: "https://rio2manga.com",
|
||||
lang: "tr",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "SamuraiScan",
|
||||
baseUrl: "https://samuraiscan.com",
|
||||
lang: "es",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: "es",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Sdl scans",
|
||||
baseUrl: "https://sdlscans.com",
|
||||
lang: "es",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMMM dd, yyyy",
|
||||
dateFormatLocale: "es",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Shayami",
|
||||
baseUrl: "https://shayami.com",
|
||||
lang: "es",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMM d, yyy",
|
||||
dateFormatLocale: "es",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Taurus Fansub",
|
||||
baseUrl: "https://tatakaescan.com",
|
||||
lang: "es",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd/MM/yyy",
|
||||
dateFormatLocale: "es",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "The Sugar",
|
||||
baseUrl: "https://thesugarscan.com",
|
||||
lang: "pt-br",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd/MM/yyyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "365Manga",
|
||||
baseUrl: "https://365manga.com",
|
||||
lang: "en",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale,
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Tortuga Ceviri",
|
||||
baseUrl: "https://tortuga-ceviri.com",
|
||||
lang: "tr",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "MMMM d, yyyy",
|
||||
dateFormatLocale: "tr",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Tumangaonline.site",
|
||||
baseUrl: "https://tumangaonline.site",
|
||||
lang: "es",
|
||||
isNsfw: true,
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd MMMMM, yyyy",
|
||||
dateFormatLocale: "es",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Winter Scan",
|
||||
baseUrl: "https://winterscan.com",
|
||||
lang: "pt-br",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd 'de' MMMM 'de' yyyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Yuri Verso",
|
||||
baseUrl: "https://yuri.live",
|
||||
lang: "pt-br",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd/MM/yyyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "Zero Scan",
|
||||
baseUrl: "https://zeroscan.com.br",
|
||||
lang: "pt-br",
|
||||
isNsfw: true,
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: "dd/MM/yyyy",
|
||||
dateFormatLocale: "pt-BR",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
Source(
|
||||
name: "مانجا ليك",
|
||||
baseUrl: "https://mangalek.com",
|
||||
lang: "ar",
|
||||
typeSource: "madara",
|
||||
iconUrl: '',
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: "ar",
|
||||
version: madaraVersion,
|
||||
sourceCodeUrl: madaraSourceCodeUrl),
|
||||
];
|
||||
Reference in New Issue
Block a user