@@ -8,33 +8,56 @@ class Madara extends MProvider {
|
|||||||
|
|
||||||
final Client client = Client();
|
final Client client = Client();
|
||||||
|
|
||||||
|
MPages mangaFromElements(List<MElement> elements) {
|
||||||
|
List<MManga> mangaList = [];
|
||||||
|
|
||||||
|
for (final el in elements) {
|
||||||
|
final postTitle = el.selectFirst(
|
||||||
|
"div.post-title a:not(:has(span.manga-title-badges))",
|
||||||
|
);
|
||||||
|
final image = extractImageUrl(el.selectFirst("img"));
|
||||||
|
|
||||||
|
MManga manga = MManga();
|
||||||
|
manga.name = postTitle.text;
|
||||||
|
manga.imageUrl = substringBefore(image, " ");
|
||||||
|
manga.link = postTitle.getHref;
|
||||||
|
mangaList.add(manga);
|
||||||
|
}
|
||||||
|
|
||||||
|
return MPages(mangaList, true);
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<MPages> getPopular(int page) async {
|
Future<MPages> getPopular(int page) async {
|
||||||
final res = (await client.get(
|
final res = (await client.get(
|
||||||
Uri.parse(
|
Uri.parse(
|
||||||
"${source.baseUrl}/${getMangaSubString()}/page/$page/?m_orderby=views",
|
"${getBaseUrl()}/${getMangaSubString()}/page/$page/?m_orderby=views",
|
||||||
),
|
),
|
||||||
)).body;
|
)).body;
|
||||||
final document = parseHtml(res);
|
final document = parseHtml(res);
|
||||||
return mangaFromElements(document.select("div.page-item-detail"));
|
return mangaFromElements(
|
||||||
|
document.select("div.page-item-detail, div.manga__item"),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<MPages> getLatestUpdates(int page) async {
|
Future<MPages> getLatestUpdates(int page) async {
|
||||||
final res = (await client.get(
|
final res = (await client.get(
|
||||||
Uri.parse(
|
Uri.parse(
|
||||||
"${source.baseUrl}/${getMangaSubString()}/page/$page/?m_orderby=latest",
|
"${getBaseUrl()}/${getMangaSubString()}/page/$page/?m_orderby=latest",
|
||||||
),
|
),
|
||||||
)).body;
|
)).body;
|
||||||
final document = parseHtml(res);
|
final document = parseHtml(res);
|
||||||
return mangaFromElements(document.select("div.page-item-detail"));
|
return mangaFromElements(
|
||||||
|
document.select("div.page-item-detail, div.manga__item"),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<MPages> search(String query, int page, FilterList filterList) async {
|
Future<MPages> search(String query, int page, FilterList filterList) async {
|
||||||
final filters = filterList.filters;
|
final filters = filterList.filters;
|
||||||
|
|
||||||
String url = "${source.baseUrl}/?s=$query&post_type=wp-manga";
|
String url = "${getBaseUrl()}/?s=$query&post_type=wp-manga";
|
||||||
|
|
||||||
for (var filter in filters) {
|
for (var filter in filters) {
|
||||||
if (filter.type == "AuthorFilter") {
|
if (filter.type == "AuthorFilter") {
|
||||||
@@ -121,6 +144,7 @@ class Madara extends MProvider {
|
|||||||
Future<MManga> getDetail(String url) async {
|
Future<MManga> getDetail(String url) async {
|
||||||
final statusList = [
|
final statusList = [
|
||||||
{
|
{
|
||||||
|
// Ongoing
|
||||||
"OnGoing": 0,
|
"OnGoing": 0,
|
||||||
"Продолжается": 0,
|
"Продолжается": 0,
|
||||||
"Updating": 0,
|
"Updating": 0,
|
||||||
@@ -129,38 +153,77 @@ class Madara extends MProvider {
|
|||||||
"Em andamento": 0,
|
"Em andamento": 0,
|
||||||
"Em Andamento": 0,
|
"Em Andamento": 0,
|
||||||
"En cours": 0,
|
"En cours": 0,
|
||||||
|
"En Cours": 0,
|
||||||
|
"En cours de publication": 0,
|
||||||
"Ativo": 0,
|
"Ativo": 0,
|
||||||
"Lançando": 0,
|
"Lançando": 0,
|
||||||
"Đang Tiến Hành": 0,
|
"Đang Tiến Hành": 0,
|
||||||
"Devam Ediyor": 0,
|
"Devam Ediyor": 0,
|
||||||
"Devam ediyor": 0,
|
"Devam ediyor": 0,
|
||||||
|
"Devam Ediyo": 0,
|
||||||
|
"Devam Eden": 0,
|
||||||
"In Corso": 0,
|
"In Corso": 0,
|
||||||
"In Arrivo": 0,
|
"In Arrivo": 0,
|
||||||
"مستمرة": 0,
|
"مستمرة": 0,
|
||||||
"مستمر": 0,
|
"مستمر": 0,
|
||||||
"En Curso": 0,
|
"En Curso": 0,
|
||||||
"En curso": 0,
|
"En curso": 0,
|
||||||
|
"Curso": 0,
|
||||||
"Emision": 0,
|
"Emision": 0,
|
||||||
"En marcha": 0,
|
"En marcha": 0,
|
||||||
"Publicandose": 0,
|
"Publicandose": 0,
|
||||||
|
"Publicándose": 0,
|
||||||
"En emision": 0,
|
"En emision": 0,
|
||||||
"连载中": 0,
|
"连载中": 0,
|
||||||
|
"Đang làm": 0,
|
||||||
|
"Em postagem": 0,
|
||||||
|
"Em progresso": 0,
|
||||||
|
"Em curso": 0,
|
||||||
|
"Atualizações Semanais": 0,
|
||||||
|
|
||||||
|
// Completed
|
||||||
"Completed": 1,
|
"Completed": 1,
|
||||||
"Completo": 1,
|
"Completo": 1,
|
||||||
"Completado": 1,
|
"Completado": 1,
|
||||||
"Concluído": 1,
|
"Concluído": 1,
|
||||||
"Concluido": 1,
|
"Concluido": 1,
|
||||||
"Finalizado": 1,
|
"Finalizado": 1,
|
||||||
|
"Achevé": 1,
|
||||||
"Terminé": 1,
|
"Terminé": 1,
|
||||||
|
"Complété": 1,
|
||||||
"Hoàn Thành": 1,
|
"Hoàn Thành": 1,
|
||||||
|
"Tamamlandı": 1,
|
||||||
|
"Tamamlanan": 1,
|
||||||
|
"Đã hoàn thành": 1,
|
||||||
|
"Завершено": 1,
|
||||||
"مكتملة": 1,
|
"مكتملة": 1,
|
||||||
"مكتمل": 1,
|
"مكتمل": 1,
|
||||||
"已完结": 1,
|
"已完结": 1,
|
||||||
|
|
||||||
|
// On Hold
|
||||||
"On Hold": 2,
|
"On Hold": 2,
|
||||||
"Pausado": 2,
|
"Pausado": 2,
|
||||||
"En espera": 2,
|
"En espera": 2,
|
||||||
|
"Durduruldu": 2,
|
||||||
|
"Beklemede": 2,
|
||||||
|
"Đang chờ": 2,
|
||||||
|
"متوقف": 2,
|
||||||
|
"En Pause": 2,
|
||||||
|
"Заморожено": 2,
|
||||||
|
"En attente": 2,
|
||||||
|
|
||||||
|
// Canceled
|
||||||
"Canceled": 3,
|
"Canceled": 3,
|
||||||
"Cancelado": 3,
|
"Cancelado": 3,
|
||||||
|
"İptal Edildi": 3,
|
||||||
|
"Güncel": 3,
|
||||||
|
"Đã hủy": 3,
|
||||||
|
"ملغي": 3,
|
||||||
|
"Abandonné": 3,
|
||||||
|
"Заброшено": 3,
|
||||||
|
"Annulé": 3,
|
||||||
|
|
||||||
|
// Publishing Finished 4
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
MManga manga = MManga();
|
MManga manga = MManga();
|
||||||
@@ -169,20 +232,28 @@ class Madara extends MProvider {
|
|||||||
final document = parseHtml(res);
|
final document = parseHtml(res);
|
||||||
manga.author = document.selectFirst("div.author-content > a")?.text ?? "";
|
manga.author = document.selectFirst("div.author-content > a")?.text ?? "";
|
||||||
|
|
||||||
manga.description =
|
final descriptionElement = document.select(
|
||||||
document
|
"div.description-summary div.summary__content, div.summary_content div.post-content_item > h5 + div, div.summary_content div.manga-excerpt, .manga-summary, div.c-page__content div.modal-contenido",
|
||||||
.selectFirst(
|
);
|
||||||
"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",
|
if (descriptionElement.isNotEmpty) {
|
||||||
)
|
final paragraphs = descriptionElement
|
||||||
?.text ??
|
.expand((e) => e.select("p"))
|
||||||
"";
|
.toList();
|
||||||
|
|
||||||
|
if (paragraphs.isNotEmpty &&
|
||||||
|
paragraphs.any((p) => p.text.trim().isNotEmpty)) {
|
||||||
|
manga.description = paragraphs
|
||||||
|
.map((p) => p.text.replaceAll("<br>", "\n").trim())
|
||||||
|
.join("\n\n");
|
||||||
|
} else {
|
||||||
|
manga.description = descriptionElement
|
||||||
|
.map((e) => e.text.trim())
|
||||||
|
.join("\n\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
final imageElement = document.selectFirst("div.summary_image img");
|
final imageElement = document.selectFirst("div.summary_image img");
|
||||||
manga.imageUrl =
|
manga.imageUrl = extractImageUrl(imageElement);
|
||||||
imageElement?.attr("data-src") ??
|
|
||||||
imageElement?.attr("data-lazy-src") ??
|
|
||||||
imageElement?.attr("srcset")?.split(" ")?.first ??
|
|
||||||
imageElement?.getSrc;
|
|
||||||
|
|
||||||
final id =
|
final id =
|
||||||
document
|
document
|
||||||
@@ -193,13 +264,20 @@ class Madara extends MProvider {
|
|||||||
if (id.isNotEmpty) {
|
if (id.isNotEmpty) {
|
||||||
mangaId = id;
|
mangaId = id;
|
||||||
}
|
}
|
||||||
final status = document.selectFirst("div.summary-content")?.text ?? "";
|
final status =
|
||||||
|
document
|
||||||
|
.selectFirst(
|
||||||
|
".summary-content > .tags-content, div.summary-content, div.summary-heading:contains(Status) + div",
|
||||||
|
)
|
||||||
|
?.text ??
|
||||||
|
"";
|
||||||
|
|
||||||
manga.status = parseStatus(status, statusList);
|
manga.status = parseStatus(status, statusList);
|
||||||
manga.genre =
|
manga.genre =
|
||||||
document.select("div.genres-content a")?.map((e) => e.text).toList() ??
|
document.select("div.genres-content a")?.map((e) => e.text).toList() ??
|
||||||
[];
|
[];
|
||||||
|
|
||||||
final baseUrl = "${source.baseUrl}/";
|
final baseUrl = "${getBaseUrl()}/";
|
||||||
final headers = {"Referer": baseUrl, "X-Requested-With": "XMLHttpRequest"};
|
final headers = {"Referer": baseUrl, "X-Requested-With": "XMLHttpRequest"};
|
||||||
|
|
||||||
final oldXhrChaptersRequest = await client.post(
|
final oldXhrChaptersRequest = await client.post(
|
||||||
@@ -235,65 +313,103 @@ class Madara extends MProvider {
|
|||||||
final res = (await client.get(Uri.parse(url)));
|
final res = (await client.get(Uri.parse(url)));
|
||||||
final document = parseHtml(res.body);
|
final document = parseHtml(res.body);
|
||||||
|
|
||||||
final pageElements = document.select(
|
var images = getImagesFromPage(document);
|
||||||
"div.page-break, li.blocks-gallery-item, .reading-content .text-left:not(:has(.blocks-gallery-item)) img",
|
if (images.length == 1) {
|
||||||
|
images = buildPageUrls(images, document);
|
||||||
|
}
|
||||||
|
|
||||||
|
return images.isNotEmpty ? images : parseProtectorImage(document);
|
||||||
|
}
|
||||||
|
|
||||||
|
List<String> getImagesFromPage(MDocument doc) {
|
||||||
|
final elements = doc.select(
|
||||||
|
"div.page-break img, li.blocks-gallery-item img, .reading-content .text-left:not(:has(.blocks-gallery-item)) img",
|
||||||
);
|
);
|
||||||
|
return elements.map((e) => extractImageUrl(e)?.trim()).toList();
|
||||||
|
}
|
||||||
|
|
||||||
List<String> imgs = [];
|
List<String> parseProtectorImage(Document doc) {
|
||||||
for (var element in pageElements) {
|
final protectorData = doc.selectFirst(chapterProtectorSelector)?.innerHtml;
|
||||||
try {
|
if (protectorData == null) return [];
|
||||||
final imgElement = element.selectFirst("img");
|
|
||||||
final img =
|
final password = getPasswordFromProtector(protectorData);
|
||||||
imgElement.attr("src") ??
|
final chapterDataStr = getChapterDataStr(protectorData);
|
||||||
imgElement.attr("data-src") ??
|
|
||||||
imgElement.attr("data-lazy-src") ??
|
if (chapterDataStr == null || password == null) return [];
|
||||||
imgElement.attr("srcset");
|
|
||||||
imgs.add(img);
|
final decryptedText = decryptChapterData(chapterDataStr, password);
|
||||||
} catch (_) {}
|
if (decryptedText == null) return [];
|
||||||
|
|
||||||
|
return List<String>.from(jsonDecode(jsonDecode(decryptedText)));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extract password
|
||||||
|
String? getPasswordFromProtector(String protectorData) {
|
||||||
|
final regex = RegExp(r"wpmangaprotectornonce='(.*?)';");
|
||||||
|
final match = regex.firstMatch(protectorData);
|
||||||
|
return match != null ? match.group(1) : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Extract encrypted chapter string
|
||||||
|
String? getChapterDataStr(String protectorData) {
|
||||||
|
final regex = RegExp(r"chapter_data='(.*?)';");
|
||||||
|
final match = regex.firstMatch(protectorData);
|
||||||
|
return match != null ? match.group(1)!.replaceAll(r"\/", "/") : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Decrypt AES encrypted string
|
||||||
|
String? decryptChapterData(String chapterDataStr, String password) {
|
||||||
|
try {
|
||||||
|
final Map<String, dynamic> chapterData = jsonDecode(chapterDataStr);
|
||||||
|
final salt = _hexToBytes(chapterData["s"]);
|
||||||
|
final ct = base64Decode(chapterData["ct"]);
|
||||||
|
|
||||||
|
// Prefix with 'Salted__' and salt
|
||||||
|
final completeCipher = Uint8List.fromList([
|
||||||
|
...utf8.encode('Salted__'),
|
||||||
|
...salt,
|
||||||
|
...ct,
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Encode completeCipher again to base64
|
||||||
|
final base64Cipher = base64Encode(completeCipher);
|
||||||
|
|
||||||
|
// Decrypt
|
||||||
|
final decrypted = decryptAESCryptoJS(base64Cipher, password);
|
||||||
|
return decrypted;
|
||||||
|
} catch (e) {
|
||||||
|
print("Error decrypting chapter data: $e");
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<String> buildPageUrls(List<String> imgs, MDocument document) {
|
||||||
List<String> pageUrls = [];
|
List<String> pageUrls = [];
|
||||||
|
final pagesNumber = document
|
||||||
|
.selectFirst("#single-pager")
|
||||||
|
.select("option")
|
||||||
|
.length;
|
||||||
|
|
||||||
if (imgs.length == 1) {
|
final imgUrl = imgs.first;
|
||||||
final pagesNumber = document
|
for (var i = 0; i < pagesNumber; i++) {
|
||||||
.selectFirst("#single-pager")
|
final val = i + 1;
|
||||||
.select("option")
|
if (i.toString().length == 1) {
|
||||||
.length;
|
pageUrls.add(imgUrl.replaceAll("01", '0$val'));
|
||||||
final imgUrl = imgs.first;
|
} else {
|
||||||
for (var i = 0; i < pagesNumber; i++) {
|
pageUrls.add(imgUrl.replaceAll("01", val.toString()));
|
||||||
final val = i + 1;
|
|
||||||
if (i.toString().length == 1) {
|
|
||||||
pageUrls.add(imgUrl.replaceAll("01", '0$val'));
|
|
||||||
} else {
|
|
||||||
pageUrls.add(imgUrl.replaceAll("01", val.toString()));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
return imgs;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return pageUrls;
|
return pageUrls;
|
||||||
}
|
}
|
||||||
|
|
||||||
MPages mangaFromElements(List<MElement> elements) {
|
// Convert hex string to bytes
|
||||||
List<MManga> mangaList = [];
|
List<int> _hexToBytes(String hex) {
|
||||||
|
final List<int> result = [];
|
||||||
for (var i = 0; i < elements.length; i++) {
|
for (var i = 0; i < hex.length; i += 2) {
|
||||||
final postTitle = elements[i].selectFirst("div.post-title a");
|
result.add(int.parse(hex.substring(i, i + 2), radix: 16));
|
||||||
final imageElement = elements[i].selectFirst("img");
|
|
||||||
final image =
|
|
||||||
imageElement?.attr("data-src") ??
|
|
||||||
imageElement?.attr("data-lazy-src") ??
|
|
||||||
imageElement?.attr("srcset") ??
|
|
||||||
imageElement?.getSrc ??
|
|
||||||
"";
|
|
||||||
MManga manga = MManga();
|
|
||||||
manga.name = postTitle.text;
|
|
||||||
manga.imageUrl = substringBefore(image, " ");
|
|
||||||
manga.link = postTitle.getHref;
|
|
||||||
mangaList.add(manga);
|
|
||||||
}
|
}
|
||||||
|
return result;
|
||||||
return MPages(mangaList, true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -325,6 +441,53 @@ class Madara extends MProvider {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
List<dynamic> getSourcePreferences() {
|
||||||
|
return [
|
||||||
|
EditTextPreference(
|
||||||
|
key: "domain_url",
|
||||||
|
title: getTitleByLang(source.lang),
|
||||||
|
summary: "",
|
||||||
|
value: source.baseUrl,
|
||||||
|
dialogTitle: "URL",
|
||||||
|
dialogMessage: "",
|
||||||
|
),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
String getBaseUrl() {
|
||||||
|
final baseUrl = getPreferenceValue(source.id, "domain_url")?.trim();
|
||||||
|
|
||||||
|
if (baseUrl == null || baseUrl.isEmpty) {
|
||||||
|
return source.baseUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
return baseUrl.endsWith("/")
|
||||||
|
? baseUrl.substring(0, baseUrl.length - 1)
|
||||||
|
: baseUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
String getTitleByLang(String? lang) {
|
||||||
|
const titles = {
|
||||||
|
'ar': 'تحرير الرابط',
|
||||||
|
'en': 'Edit URL',
|
||||||
|
'fr': 'Modifier l’URL',
|
||||||
|
'es': 'Editar URL',
|
||||||
|
'de': 'URL bearbeiten',
|
||||||
|
'tr': 'URL’yi düzenle',
|
||||||
|
'ru': 'Редактировать URL',
|
||||||
|
'id': 'Edit URL',
|
||||||
|
'pt': 'Editar URL',
|
||||||
|
'it': 'Modifica URL',
|
||||||
|
'ja': 'URLを編集',
|
||||||
|
'zh': '编辑网址',
|
||||||
|
'ko': 'URL 편집',
|
||||||
|
'fa': 'ویرایش نشانی',
|
||||||
|
};
|
||||||
|
|
||||||
|
return titles[lang?.toLowerCase()] ?? titles['en']!;
|
||||||
|
}
|
||||||
|
|
||||||
String ll(String url) {
|
String ll(String url) {
|
||||||
if (url.contains("?")) {
|
if (url.contains("?")) {
|
||||||
return "&";
|
return "&";
|
||||||
@@ -332,9 +495,27 @@ class Madara extends MProvider {
|
|||||||
return "?";
|
return "?";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String? extractImageUrl(Element? imageElement) {
|
||||||
|
if (imageElement == null) return "";
|
||||||
|
|
||||||
|
return imageElement.attr("data-src") ??
|
||||||
|
imageElement.attr("data-lazy-src") ??
|
||||||
|
imageElement.attr("srcset")?.split(" ")?.first ??
|
||||||
|
imageElement.getSrc ??
|
||||||
|
"";
|
||||||
|
}
|
||||||
|
|
||||||
String getMangaSubString() {
|
String getMangaSubString() {
|
||||||
const worksSources = {"Olaoe", "Mangax Core"};
|
const sourceTypeMap = {
|
||||||
return worksSources.contains(source.name) ? "works" : "manga";
|
"Olaoe": "works",
|
||||||
|
"Mangax Core": "works",
|
||||||
|
"Azora": "series",
|
||||||
|
"Manga Crab": "series",
|
||||||
|
"KlikManga": "series",
|
||||||
|
"Hwago": "komik",
|
||||||
|
};
|
||||||
|
|
||||||
|
return sourceTypeMap[source.name] ?? "manga";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
import '../../../../model/source.dart';
|
import '../../../../model/source.dart';
|
||||||
import 'src/en/firstkissdashmanga/firstkissdashmanga.dart';
|
import 'src/en/firstkissdashmanga/firstkissdashmanga.dart';
|
||||||
import 'src/en/manhwaworld/manhwaworld.dart';
|
|
||||||
import 'src/pt/akumanotenshi/akumanotenshi.dart';
|
import 'src/pt/akumanotenshi/akumanotenshi.dart';
|
||||||
import 'src/tr/anikiga/anikiga.dart';
|
import 'src/tr/anikiga/anikiga.dart';
|
||||||
import 'src/tr/araznovel/araznovel.dart';
|
import 'src/tr/araznovel/araznovel.dart';
|
||||||
@@ -9,7 +8,6 @@ import 'src/fr/astralmanga/astralmanga.dart';
|
|||||||
import 'src/en/asurascansus/asurascansus.dart';
|
import 'src/en/asurascansus/asurascansus.dart';
|
||||||
import 'src/es/barmanga/barmanga.dart';
|
import 'src/es/barmanga/barmanga.dart';
|
||||||
import 'src/ru/bestmanga/bestmanga.dart';
|
import 'src/ru/bestmanga/bestmanga.dart';
|
||||||
import 'src/en/chibimanga/chibimanga.dart';
|
|
||||||
import 'src/tr/clovermanga/clovermanga.dart';
|
import 'src/tr/clovermanga/clovermanga.dart';
|
||||||
import 'src/es/cocorip/cocorip.dart';
|
import 'src/es/cocorip/cocorip.dart';
|
||||||
import 'src/en/coffeemanga/coffeemanga.dart';
|
import 'src/en/coffeemanga/coffeemanga.dart';
|
||||||
@@ -17,12 +15,9 @@ import 'src/th/doodmanga/doodmanga.dart';
|
|||||||
import 'src/en/elitemanga/elitemanga.dart';
|
import 'src/en/elitemanga/elitemanga.dart';
|
||||||
import 'src/es/emperorscan/emperorscan.dart';
|
import 'src/es/emperorscan/emperorscan.dart';
|
||||||
import 'src/tr/evascans/evascans.dart';
|
import 'src/tr/evascans/evascans.dart';
|
||||||
import 'src/fr/frscan/frscan.dart';
|
|
||||||
import 'src/en/factmanga/factmanga.dart';
|
|
||||||
import 'src/en/freemangatop/freemangatop.dart';
|
import 'src/en/freemangatop/freemangatop.dart';
|
||||||
import 'src/tr/glorymanga/glorymanga.dart';
|
import 'src/tr/glorymanga/glorymanga.dart';
|
||||||
import 'src/en/harimanga/harimanga.dart';
|
import 'src/en/harimanga/harimanga.dart';
|
||||||
import 'src/en/immortalupdates/immortalupdates.dart';
|
|
||||||
import 'src/pt/imperioscans/imperioscans.dart';
|
import 'src/pt/imperioscans/imperioscans.dart';
|
||||||
import 'src/es/inmortalscan/inmortalscan.dart';
|
import 'src/es/inmortalscan/inmortalscan.dart';
|
||||||
import 'src/en/isekaiscanmanga/isekaiscanmanga.dart';
|
import 'src/en/isekaiscanmanga/isekaiscanmanga.dart';
|
||||||
@@ -30,70 +25,54 @@ import 'src/en/jimanga/jimanga.dart';
|
|||||||
import 'src/en/ksgroupscans/ksgroupscans.dart';
|
import 'src/en/ksgroupscans/ksgroupscans.dart';
|
||||||
import 'src/pt/kakuseiproject/kakuseiproject.dart';
|
import 'src/pt/kakuseiproject/kakuseiproject.dart';
|
||||||
import 'src/pt/kamisamaexplorer/kamisamaexplorer.dart';
|
import 'src/pt/kamisamaexplorer/kamisamaexplorer.dart';
|
||||||
import 'src/en/komikchan/komikchan.dart';
|
|
||||||
import 'src/en/lhtranslation/lhtranslation.dart';
|
import 'src/en/lhtranslation/lhtranslation.dart';
|
||||||
import 'src/pt/ladyestelarscan/ladyestelarscan.dart';
|
import 'src/pt/ladyestelarscan/ladyestelarscan.dart';
|
||||||
import 'src/en/leviatanscans/leviatanscans.dart';
|
import 'src/en/leviatanscans/leviatanscans.dart';
|
||||||
import 'src/en/luffymanga/luffymanga.dart';
|
|
||||||
import 'src/pt/maidscan/maidscan.dart';
|
|
||||||
import 'src/tr/mangadiyari/mangadiyari.dart';
|
import 'src/tr/mangadiyari/mangadiyari.dart';
|
||||||
import 'src/es/mangafenix/mangafenix.dart';
|
|
||||||
import 'src/en/mangagalaxy/mangagalaxy.dart';
|
import 'src/en/mangagalaxy/mangagalaxy.dart';
|
||||||
import 'src/en/mangaread/mangaread.dart';
|
import 'src/en/mangaread/mangaread.dart';
|
||||||
import 'src/en/mangatxgg/mangatxgg.dart';
|
import 'src/en/mangatxgg/mangatxgg.dart';
|
||||||
import 'src/en/mangaweebs/mangaweebs.dart';
|
|
||||||
import 'src/tr/mangasehri/mangasehri.dart';
|
import 'src/tr/mangasehri/mangasehri.dart';
|
||||||
import 'src/en/mangatxunoriginal/mangatxunoriginal.dart';
|
|
||||||
import 'src/en/mangaclash/mangaclash.dart';
|
import 'src/en/mangaclash/mangaclash.dart';
|
||||||
import 'src/en/mangafreakonline/mangafreakonline.dart';
|
import 'src/en/mangafreakonline/mangafreakonline.dart';
|
||||||
import 'src/en/mangagreat/mangagreat.dart';
|
|
||||||
import 'src/en/mangakomi/mangakomi.dart';
|
import 'src/en/mangakomi/mangakomi.dart';
|
||||||
import 'src/en/mangareadorg/mangareadorg.dart';
|
import 'src/en/mangareadorg/mangareadorg.dart';
|
||||||
import 'src/en/mangarolls/mangarolls.dart';
|
|
||||||
import 'src/en/mangatyrant/mangatyrant.dart';
|
import 'src/en/mangatyrant/mangatyrant.dart';
|
||||||
import 'src/en/mangaus/mangaus.dart';
|
|
||||||
import 'src/en/mangasushi/mangasushi.dart';
|
import 'src/en/mangasushi/mangasushi.dart';
|
||||||
import 'src/pt/mangananquim/mangananquim.dart';
|
import 'src/pt/mangananquim/mangananquim.dart';
|
||||||
import 'src/en/manhuaes/manhuaes.dart';
|
|
||||||
import 'src/en/manhuaus/manhuaus.dart';
|
import 'src/en/manhuaus/manhuaus.dart';
|
||||||
import 'src/en/manhuazone/manhuazone.dart';
|
import 'src/en/manhuazone/manhuazone.dart';
|
||||||
import 'src/en/manhwaclan/manhwaclan.dart';
|
import 'src/en/manhwaclan/manhwaclan.dart';
|
||||||
import 'src/en/manhwafull/manhwafull.dart';
|
import 'src/en/manhwafull/manhwafull.dart';
|
||||||
import 'src/es/mantrazscan/mantrazscan.dart';
|
import 'src/es/mantrazscan/mantrazscan.dart';
|
||||||
import 'src/pt/momonohanascan/momonohanascan.dart';
|
import 'src/pt/momonohanascan/momonohanascan.dart';
|
||||||
import 'src/es/monarcamanga/monarcamanga.dart';
|
|
||||||
import 'src/pt/moonwitchinlove/moonwitchinlove.dart';
|
import 'src/pt/moonwitchinlove/moonwitchinlove.dart';
|
||||||
import 'src/th/nekopostco/nekopostco.dart';
|
import 'src/th/nekopostco/nekopostco.dart';
|
||||||
import 'src/ar/nijitranslations/nijitranslations.dart';
|
import 'src/ar/nijitranslations/nijitranslations.dart';
|
||||||
import 'src/fr/pantheonscan/pantheonscan.dart';
|
import 'src/fr/pantheonscan/pantheonscan.dart';
|
||||||
import 'src/id/pojokmanga/pojokmanga.dart';
|
import 'src/id/pojokmanga/pojokmanga.dart';
|
||||||
import 'src/pt/projetoscanlator/projetoscanlator.dart';
|
|
||||||
import 'src/pt/mangasoverall/mangasoverall.dart';
|
import 'src/pt/mangasoverall/mangasoverall.dart';
|
||||||
import 'src/es/ragnarokscanlation/ragnarokscanlation.dart';
|
import 'src/es/ragnarokscanlation/ragnarokscanlation.dart';
|
||||||
import 'src/pt/rainbowfairyscan/rainbowfairyscan.dart';
|
import 'src/pt/rainbowfairyscan/rainbowfairyscan.dart';
|
||||||
import 'src/pt/randomscan/randomscan.dart';
|
import 'src/pt/randomscan/randomscan.dart';
|
||||||
import 'src/fr/readergen/readergen.dart';
|
|
||||||
import 'src/es/richtoscan/richtoscan.dart';
|
import 'src/es/richtoscan/richtoscan.dart';
|
||||||
import 'src/es/rightdarkscan/rightdarkscan.dart';
|
import 'src/es/rightdarkscan/rightdarkscan.dart';
|
||||||
import 'src/en/rio2manga/rio2manga.dart';
|
|
||||||
import 'src/tr/romantikmanga/romantikmanga.dart';
|
import 'src/tr/romantikmanga/romantikmanga.dart';
|
||||||
import 'src/en/s2manga/s2manga.dart';
|
import 'src/en/s2manga/s2manga.dart';
|
||||||
import 'src/es/samuraiscan/samuraiscan.dart';
|
import 'src/es/samuraiscan/samuraiscan.dart';
|
||||||
import 'src/es/scambertraslator/scambertraslator.dart';
|
|
||||||
import 'src/fr/scantradvf/scantradvf.dart';
|
import 'src/fr/scantradvf/scantradvf.dart';
|
||||||
import 'src/fr/shadowtrad/shadowtrad.dart';
|
|
||||||
import 'src/en/shibamanga/shibamanga.dart';
|
import 'src/en/shibamanga/shibamanga.dart';
|
||||||
import 'src/pt/sinensis/sinensis.dart';
|
import 'src/pt/sinensis/sinensis.dart';
|
||||||
import 'src/pt/sweettimescan/sweettimescan.dart';
|
import 'src/pt/sweettimescan/sweettimescan.dart';
|
||||||
import 'src/pt/tatakaescan/tatakaescan.dart';
|
import 'src/pt/tatakaescan/tatakaescan.dart';
|
||||||
import 'src/es/taurusfansub/taurusfansub.dart';
|
import 'src/es/taurusfansub/taurusfansub.dart';
|
||||||
import 'src/fr/thebeginningaftertheend/thebeginningaftertheend.dart';
|
|
||||||
import 'src/tr/tortugaceviri/tortugaceviri.dart';
|
import 'src/tr/tortugaceviri/tortugaceviri.dart';
|
||||||
import 'src/pt/wickedwitchscan/wickedwitchscan.dart';
|
import 'src/pt/wickedwitchscan/wickedwitchscan.dart';
|
||||||
import 'src/pt/winterscan/winterscan.dart';
|
import 'src/pt/winterscan/winterscan.dart';
|
||||||
import 'src/pt/wonderlandscan/wonderlandscan.dart';
|
import 'src/pt/wonderlandscan/wonderlandscan.dart';
|
||||||
import 'src/pt/yuriverso/yuriverso.dart';
|
import 'src/pt/yuriverso/yuriverso.dart';
|
||||||
import 'src/ar/manga3asq/manga3asq.dart';
|
import 'src/ar/manga3asq/manga3asq.dart';
|
||||||
|
import 'src/ar/azora/azora.dart';
|
||||||
import 'src/ar/detectiveconanar/detectiveconanar.dart';
|
import 'src/ar/detectiveconanar/detectiveconanar.dart';
|
||||||
import 'src/ar/mangaxcore/mangaxcore.dart';
|
import 'src/ar/mangaxcore/mangaxcore.dart';
|
||||||
import 'src/all/grabberzone/grabberzone.dart';
|
import 'src/all/grabberzone/grabberzone.dart';
|
||||||
@@ -106,13 +85,8 @@ import 'src/ar/mangastarz/mangastarz.dart';
|
|||||||
import 'src/ar/olaoe/olaoe.dart';
|
import 'src/ar/olaoe/olaoe.dart';
|
||||||
import 'src/ar/rocksmanga/rocksmanga.dart';
|
import 'src/ar/rocksmanga/rocksmanga.dart';
|
||||||
import 'src/en/dragontea/dragontea.dart';
|
import 'src/en/dragontea/dragontea.dart';
|
||||||
import 'src/en/globalbloging/globalbloging.dart';
|
|
||||||
import 'src/en/manga347/manga347.dart';
|
|
||||||
import 'src/en/mangaeffect/mangaeffect.dart';
|
import 'src/en/mangaeffect/mangaeffect.dart';
|
||||||
import 'src/en/mangafastcom/mangafastcom.dart';
|
|
||||||
import 'src/en/mangaleveling/mangaleveling.dart';
|
import 'src/en/mangaleveling/mangaleveling.dart';
|
||||||
import 'src/en/neatmanga/neatmanga.dart';
|
|
||||||
import 'src/en/nvmanga/nvmanga.dart';
|
|
||||||
import 'src/en/pmscans/pmscans.dart';
|
import 'src/en/pmscans/pmscans.dart';
|
||||||
import 'src/en/readmanhua/readmanhua.dart';
|
import 'src/en/readmanhua/readmanhua.dart';
|
||||||
import 'src/en/stonescape/stonescape.dart';
|
import 'src/en/stonescape/stonescape.dart';
|
||||||
@@ -120,13 +94,10 @@ import 'src/en/tappytoonnet/tappytoonnet.dart';
|
|||||||
import 'src/en/zinmanganet/zinmanganet.dart';
|
import 'src/en/zinmanganet/zinmanganet.dart';
|
||||||
import 'src/es/bokugentranslation/bokugentranslation.dart';
|
import 'src/es/bokugentranslation/bokugentranslation.dart';
|
||||||
import 'src/es/daprob/daprob.dart';
|
import 'src/es/daprob/daprob.dart';
|
||||||
import 'src/es/demanhuas/demanhuas.dart';
|
|
||||||
import 'src/es/herenscan/herenscan.dart';
|
import 'src/es/herenscan/herenscan.dart';
|
||||||
import 'src/es/housemangas/housemangas.dart';
|
|
||||||
import 'src/es/infrafandub/infrafandub.dart';
|
import 'src/es/infrafandub/infrafandub.dart';
|
||||||
import 'src/es/inmoralnofansub/inmoralnofansub.dart';
|
|
||||||
import 'src/es/jeazscans/jeazscans.dart';
|
import 'src/es/jeazscans/jeazscans.dart';
|
||||||
import 'src/es/jobsibe/jobsibe.dart';
|
import 'src/es/lmtos/lmtos.dart';
|
||||||
import 'src/es/legendsnofansub/legendsnofansub.dart';
|
import 'src/es/legendsnofansub/legendsnofansub.dart';
|
||||||
import 'src/es/mangacrab/mangacrab.dart';
|
import 'src/es/mangacrab/mangacrab.dart';
|
||||||
import 'src/es/mangasnosekai/mangasnosekai.dart';
|
import 'src/es/mangasnosekai/mangasnosekai.dart';
|
||||||
@@ -135,18 +106,14 @@ import 'src/es/mhscans/mhscans.dart';
|
|||||||
import 'src/es/noblessetranslations/noblessetranslations.dart';
|
import 'src/es/noblessetranslations/noblessetranslations.dart';
|
||||||
import 'src/es/princediciones/princediciones.dart';
|
import 'src/es/princediciones/princediciones.dart';
|
||||||
import 'src/es/sapphirescan/sapphirescan.dart';
|
import 'src/es/sapphirescan/sapphirescan.dart';
|
||||||
import 'src/es/tresdaosscan/tresdaosscan.dart';
|
|
||||||
import 'src/es/unitoon/unitoon.dart';
|
import 'src/es/unitoon/unitoon.dart';
|
||||||
import 'src/fr/mangascantrad/mangascantrad.dart';
|
import 'src/fr/mangascantrad/mangascantrad.dart';
|
||||||
import 'src/fr/mangasoriginesfr/mangasoriginesfr.dart';
|
import 'src/fr/mangasoriginesfr/mangasoriginesfr.dart';
|
||||||
import 'src/fr/raijinscans/raijinscans.dart';
|
|
||||||
import 'src/en/reaperscans/reaperscans.dart';
|
|
||||||
import 'src/fr/softepsilonscan/softepsilonscan.dart';
|
import 'src/fr/softepsilonscan/softepsilonscan.dart';
|
||||||
import 'src/id/hwago/hwago.dart';
|
import 'src/id/hwago/hwago.dart';
|
||||||
import 'src/id/klikmanga/klikmanga.dart';
|
import 'src/id/klikmanga/klikmanga.dart';
|
||||||
import 'src/id/komikuzan/komikuzan.dart';
|
import 'src/id/komikuzan/komikuzan.dart';
|
||||||
import 'src/id/mgkomik/mgkomik.dart';
|
import 'src/id/mgkomik/mgkomik.dart';
|
||||||
import 'src/id/siimanga/siimanga.dart';
|
|
||||||
import 'src/id/yubikiri/yubikiri.dart';
|
import 'src/id/yubikiri/yubikiri.dart';
|
||||||
import 'src/pl/mangahona/mangahona.dart';
|
import 'src/pl/mangahona/mangahona.dart';
|
||||||
import 'src/pt/alonescanlator/alonescanlator.dart';
|
import 'src/pt/alonescanlator/alonescanlator.dart';
|
||||||
@@ -160,11 +127,9 @@ import 'src/pt/leitordemanga/leitordemanga.dart';
|
|||||||
import 'src/pt/lscans/lscans.dart';
|
import 'src/pt/lscans/lscans.dart';
|
||||||
import 'src/pt/lunarscan/lunarscan.dart';
|
import 'src/pt/lunarscan/lunarscan.dart';
|
||||||
import 'src/pt/minitwoscan/minitwoscan.dart';
|
import 'src/pt/minitwoscan/minitwoscan.dart';
|
||||||
import 'src/pt/nexoscans/nexoscans.dart';
|
|
||||||
import 'src/pt/ninjascan/ninjascan.dart';
|
import 'src/pt/ninjascan/ninjascan.dart';
|
||||||
import 'src/pt/onepieceteca/onepieceteca.dart';
|
import 'src/pt/onepieceteca/onepieceteca.dart';
|
||||||
import 'src/pt/prismascans/prismascans.dart';
|
import 'src/pt/prismascans/prismascans.dart';
|
||||||
import 'src/pt/sussyscan/sussyscan.dart';
|
|
||||||
import 'src/th/kingsmanga/kingsmanga.dart';
|
import 'src/th/kingsmanga/kingsmanga.dart';
|
||||||
import 'src/th/mangadeemak/mangadeemak.dart';
|
import 'src/th/mangadeemak/mangadeemak.dart';
|
||||||
import 'src/th/manhuabug/manhuabug.dart';
|
import 'src/th/manhuabug/manhuabug.dart';
|
||||||
@@ -184,7 +149,7 @@ import 'src/tr/ruyamanga/ruyamanga.dart';
|
|||||||
import 'src/tr/turkcemangaoku/turkcemangaoku.dart';
|
import 'src/tr/turkcemangaoku/turkcemangaoku.dart';
|
||||||
import 'src/tr/webtoonhatti/webtoonhatti.dart';
|
import 'src/tr/webtoonhatti/webtoonhatti.dart';
|
||||||
|
|
||||||
const madaraVersion = "0.1.2";
|
const madaraVersion = "0.1.3";
|
||||||
const madaraSourceCodeUrl =
|
const madaraSourceCodeUrl =
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/madara.dart";
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/madara.dart";
|
||||||
|
|
||||||
@@ -193,8 +158,6 @@ List<Source> _madaraSourcesList =
|
|||||||
[
|
[
|
||||||
//1st Kiss-Manga (unoriginal) (EN)
|
//1st Kiss-Manga (unoriginal) (EN)
|
||||||
firstkissdashmangaSource,
|
firstkissdashmangaSource,
|
||||||
//AQUA Scans (EN)
|
|
||||||
manhwaworldSource,
|
|
||||||
//Akuma no Tenshi (PT-BR)
|
//Akuma no Tenshi (PT-BR)
|
||||||
akumanotenshiSource,
|
akumanotenshiSource,
|
||||||
//Anikiga (TR)
|
//Anikiga (TR)
|
||||||
@@ -211,8 +174,6 @@ List<Source> _madaraSourcesList =
|
|||||||
barmangaSource,
|
barmangaSource,
|
||||||
//BestManga (RU)
|
//BestManga (RU)
|
||||||
bestmangaSource,
|
bestmangaSource,
|
||||||
//Chibi Manga (EN)
|
|
||||||
chibimangaSource,
|
|
||||||
//Clover Manga (TR)
|
//Clover Manga (TR)
|
||||||
clovermangaSource,
|
clovermangaSource,
|
||||||
//Coco Rip (ES)
|
//Coco Rip (ES)
|
||||||
@@ -227,18 +188,12 @@ List<Source> _madaraSourcesList =
|
|||||||
emperorscanSource,
|
emperorscanSource,
|
||||||
//EvaScans (TR)
|
//EvaScans (TR)
|
||||||
evascansSource,
|
evascansSource,
|
||||||
//FR-Scan (FR)
|
|
||||||
frscanSource,
|
|
||||||
//FactManga (EN)
|
|
||||||
factmangaSource,
|
|
||||||
//FreeMangaTop (EN)
|
//FreeMangaTop (EN)
|
||||||
freemangatopSource,
|
freemangatopSource,
|
||||||
//Glory Manga (TR)
|
//Glory Manga (TR)
|
||||||
glorymangaSource,
|
glorymangaSource,
|
||||||
//Harimanga (EN)
|
//Harimanga (EN)
|
||||||
harimangaSource,
|
harimangaSource,
|
||||||
//Immortal Updates (EN)
|
|
||||||
immortalupdatesSource,
|
|
||||||
//Império Scans (PT-BR)
|
//Império Scans (PT-BR)
|
||||||
imperioscansSource,
|
imperioscansSource,
|
||||||
//Inmortal Scan (ES)
|
//Inmortal Scan (ES)
|
||||||
@@ -253,56 +208,36 @@ List<Source> _madaraSourcesList =
|
|||||||
kakuseiprojectSource,
|
kakuseiprojectSource,
|
||||||
//Kami Sama Explorer (PT-BR)
|
//Kami Sama Explorer (PT-BR)
|
||||||
kamisamaexplorerSource,
|
kamisamaexplorerSource,
|
||||||
//Komik Chan (EN)
|
|
||||||
komikchanSource,
|
|
||||||
//LHTranslation (EN)
|
//LHTranslation (EN)
|
||||||
lhtranslationSource,
|
lhtranslationSource,
|
||||||
//Lady Estelar Scan (PT-BR)
|
//Lady Estelar Scan (PT-BR)
|
||||||
ladyestelarscanSource,
|
ladyestelarscanSource,
|
||||||
//Leviatan Scans (EN)
|
//Leviatan Scans (EN)
|
||||||
leviatanscansSource,
|
leviatanscansSource,
|
||||||
//Luffy Manga (EN)
|
|
||||||
luffymangaSource,
|
|
||||||
//Maid Scan (PT-BR)
|
|
||||||
maidscanSource,
|
|
||||||
//Manga Diyari (TR)
|
//Manga Diyari (TR)
|
||||||
mangadiyariSource,
|
mangadiyariSource,
|
||||||
//Manga Fenix (ES)
|
|
||||||
mangafenixSource,
|
|
||||||
//Manga Galaxy (EN)
|
//Manga Galaxy (EN)
|
||||||
mangagalaxySource,
|
mangagalaxySource,
|
||||||
//Manga Read (EN)
|
//Manga Read (EN)
|
||||||
mangareadSource,
|
mangareadSource,
|
||||||
//Manga Tx.gg (unoriginal) (EN)
|
//Manga Tx.gg (unoriginal) (EN)
|
||||||
mangatxggSource,
|
mangatxggSource,
|
||||||
//Manga Weebs (EN)
|
|
||||||
mangaweebsSource,
|
|
||||||
//Manga Şehri (TR)
|
//Manga Şehri (TR)
|
||||||
mangasehriSource,
|
mangasehriSource,
|
||||||
//Manga-TX (EN)
|
|
||||||
mangatxunoriginalSource,
|
|
||||||
//MangaClash (EN)
|
//MangaClash (EN)
|
||||||
mangaclashSource,
|
mangaclashSource,
|
||||||
//MangaFreak.online (EN)
|
//MangaFreak.online (EN)
|
||||||
mangafreakonlineSource,
|
mangafreakonlineSource,
|
||||||
//MangaGreat (EN)
|
|
||||||
mangagreatSource,
|
|
||||||
//MangaKomi (EN)
|
//MangaKomi (EN)
|
||||||
mangakomiSource,
|
mangakomiSource,
|
||||||
//MangaRead.org (EN)
|
//MangaRead.org (EN)
|
||||||
mangareadorgSource,
|
mangareadorgSource,
|
||||||
//MangaRolls (EN)
|
|
||||||
mangarollsSource,
|
|
||||||
//MangaTyrant (EN)
|
//MangaTyrant (EN)
|
||||||
mangatyrantSource,
|
mangatyrantSource,
|
||||||
//MangaUS (EN)
|
|
||||||
mangausSource,
|
|
||||||
//Mangasushi (EN)
|
//Mangasushi (EN)
|
||||||
mangasushiSource,
|
mangasushiSource,
|
||||||
//Mangá Nanquim (PT-BR)
|
//Mangá Nanquim (PT-BR)
|
||||||
mangananquimSource,
|
mangananquimSource,
|
||||||
//Manhua ES (EN)
|
|
||||||
manhuaesSource,
|
|
||||||
//ManhuaUS (EN)
|
//ManhuaUS (EN)
|
||||||
manhuausSource,
|
manhuausSource,
|
||||||
//ManhuaZone (EN)
|
//ManhuaZone (EN)
|
||||||
@@ -315,8 +250,6 @@ List<Source> _madaraSourcesList =
|
|||||||
mantrazscanSource,
|
mantrazscanSource,
|
||||||
//Momo no Hana Scan (PT-BR)
|
//Momo no Hana Scan (PT-BR)
|
||||||
momonohanascanSource,
|
momonohanascanSource,
|
||||||
//MonarcaManga (ES)
|
|
||||||
monarcamangaSource,
|
|
||||||
//Moon Witch In Love (PT-BR)
|
//Moon Witch In Love (PT-BR)
|
||||||
moonwitchinloveSource,
|
moonwitchinloveSource,
|
||||||
//NekoPost.co (unoriginal) (TH)
|
//NekoPost.co (unoriginal) (TH)
|
||||||
@@ -327,8 +260,6 @@ List<Source> _madaraSourcesList =
|
|||||||
pantheonscanSource,
|
pantheonscanSource,
|
||||||
//Pojok Manga (ID)
|
//Pojok Manga (ID)
|
||||||
pojokmangaSource,
|
pojokmangaSource,
|
||||||
//Projeto Scanlator (PT-BR)
|
|
||||||
projetoscanlatorSource,
|
|
||||||
//ROG Mangás (PT-BR)
|
//ROG Mangás (PT-BR)
|
||||||
mangasoverallSource,
|
mangasoverallSource,
|
||||||
//Ragnarok Scanlation (ES)
|
//Ragnarok Scanlation (ES)
|
||||||
@@ -337,26 +268,18 @@ List<Source> _madaraSourcesList =
|
|||||||
rainbowfairyscanSource,
|
rainbowfairyscanSource,
|
||||||
//Random Scan (PT-BR)
|
//Random Scan (PT-BR)
|
||||||
randomscanSource,
|
randomscanSource,
|
||||||
//ReaderGen (FR)
|
|
||||||
readergenSource,
|
|
||||||
//RichtoScan (ES)
|
//RichtoScan (ES)
|
||||||
richtoscanSource,
|
richtoscanSource,
|
||||||
//Rightdark Scan (ES)
|
//Rightdark Scan (ES)
|
||||||
rightdarkscanSource,
|
rightdarkscanSource,
|
||||||
//Rio2 Manga (EN)
|
|
||||||
rio2mangaSource,
|
|
||||||
//Romantik Manga (TR)
|
//Romantik Manga (TR)
|
||||||
romantikmangaSource,
|
romantikmangaSource,
|
||||||
//S2Manga (EN)
|
//S2Manga (EN)
|
||||||
s2mangaSource,
|
s2mangaSource,
|
||||||
//SamuraiScan (ES)
|
//SamuraiScan (ES)
|
||||||
samuraiscanSource,
|
samuraiscanSource,
|
||||||
//ScamberTraslator (ES)
|
|
||||||
scambertraslatorSource,
|
|
||||||
//Scantrad-VF (FR)
|
//Scantrad-VF (FR)
|
||||||
scantradvfSource,
|
scantradvfSource,
|
||||||
//Shadowtrad (FR)
|
|
||||||
shadowtradSource,
|
|
||||||
//Shiba Manga (EN)
|
//Shiba Manga (EN)
|
||||||
shibamangaSource,
|
shibamangaSource,
|
||||||
//Sinensis Scan (PT-BR)
|
//Sinensis Scan (PT-BR)
|
||||||
@@ -367,8 +290,6 @@ List<Source> _madaraSourcesList =
|
|||||||
tatakaescanSource,
|
tatakaescanSource,
|
||||||
//Taurus Fansub (ES)
|
//Taurus Fansub (ES)
|
||||||
taurusfansubSource,
|
taurusfansubSource,
|
||||||
//The Beginning After The End (FR)
|
|
||||||
thebeginningaftertheendSource,
|
|
||||||
//Tortuga Ceviri (TR)
|
//Tortuga Ceviri (TR)
|
||||||
tortugaceviriSource,
|
tortugaceviriSource,
|
||||||
//Wicked Witch Scan (PT-BR)
|
//Wicked Witch Scan (PT-BR)
|
||||||
@@ -381,6 +302,8 @@ List<Source> _madaraSourcesList =
|
|||||||
yuriversoSource,
|
yuriversoSource,
|
||||||
//مانجا العاشق (AR)
|
//مانجا العاشق (AR)
|
||||||
manga3asqSource,
|
manga3asqSource,
|
||||||
|
// Azora (AR)
|
||||||
|
azoraSource,
|
||||||
//Mangax Core (AR)
|
//Mangax Core (AR)
|
||||||
mangaxcoreSource,
|
mangaxcoreSource,
|
||||||
//Grabber Zone (ALL)
|
//Grabber Zone (ALL)
|
||||||
@@ -405,20 +328,10 @@ List<Source> _madaraSourcesList =
|
|||||||
detectiveconanarSource,
|
detectiveconanarSource,
|
||||||
//DragonTea (EN)
|
//DragonTea (EN)
|
||||||
dragonteaSource,
|
dragonteaSource,
|
||||||
//Global Bloging (EN)
|
|
||||||
globalblogingSource,
|
|
||||||
//Manga347 (EN)
|
|
||||||
manga347Source,
|
|
||||||
//MangaEffect (EN)
|
//MangaEffect (EN)
|
||||||
mangaeffectSource,
|
mangaeffectSource,
|
||||||
//Manga-fast.com (EN)
|
|
||||||
mangafastcomSource,
|
|
||||||
//Manga Leveling (EN)
|
//Manga Leveling (EN)
|
||||||
mangalevelingSource,
|
mangalevelingSource,
|
||||||
//NeatManga (EN)
|
|
||||||
neatmangaSource,
|
|
||||||
//NvManga (EN)
|
|
||||||
nvmangaSource,
|
|
||||||
//PMScans (EN)
|
//PMScans (EN)
|
||||||
pmscansSource,
|
pmscansSource,
|
||||||
//ReadManhua (EN)
|
//ReadManhua (EN)
|
||||||
@@ -433,52 +346,36 @@ List<Source> _madaraSourcesList =
|
|||||||
bokugentranslationSource,
|
bokugentranslationSource,
|
||||||
//DapRob (ES)
|
//DapRob (ES)
|
||||||
daprobSource,
|
daprobSource,
|
||||||
//DeManhuas (ES)
|
|
||||||
demanhuasSource,
|
|
||||||
//HerenScan (ES)
|
//HerenScan (ES)
|
||||||
herenscanSource,
|
herenscanSource,
|
||||||
//HouseMangas (ES)
|
|
||||||
housemangasSource,
|
|
||||||
//InfraFandub (ES)
|
//InfraFandub (ES)
|
||||||
infrafandubSource,
|
infrafandubSource,
|
||||||
//Inmoral No Fansub (ES)
|
|
||||||
inmoralnofansubSource,
|
|
||||||
//JeazScans (ES)
|
//JeazScans (ES)
|
||||||
jeazscansSource,
|
jeazscansSource,
|
||||||
//Jobsibe (ES)
|
//Lmtos (ES)
|
||||||
jobsibeSource,
|
lmtosSource,
|
||||||
//LegnMangas (ES)
|
//LegnMangas (ES)
|
||||||
legendsnofansubSource,
|
legendsnofansubSource,
|
||||||
//Manga Crab (ES)
|
//Manga Crab (ES)
|
||||||
mangacrabSource,
|
mangacrabSource,
|
||||||
//MMFenix (ES)
|
|
||||||
mangafenixSource,
|
|
||||||
//Mangas No Sekai (ES)
|
//Mangas No Sekai (ES)
|
||||||
mangasnosekaiSource,
|
mangasnosekaiSource,
|
||||||
//Manhua Online (ES)
|
//Manhua Online (ES)
|
||||||
manhuaonlineSource,
|
manhuaonlineSource,
|
||||||
//MHScans (ES)
|
//MHScans (ES)
|
||||||
mhscansSource,
|
mhscansSource,
|
||||||
//Visormonarca (ES)
|
|
||||||
monarcamangaSource,
|
|
||||||
//Noblesse Translations (ES)
|
//Noblesse Translations (ES)
|
||||||
noblessetranslationsSource,
|
noblessetranslationsSource,
|
||||||
//Prince Ediciones (ES)
|
//Prince Ediciones (ES)
|
||||||
princedicionesSource,
|
princedicionesSource,
|
||||||
//SapphireScan (ES)
|
//SapphireScan (ES)
|
||||||
sapphirescanSource,
|
sapphirescanSource,
|
||||||
//Tres Daos Scan (ES)
|
|
||||||
tresdaosscanSource,
|
|
||||||
//Unitoon (ES)
|
//Unitoon (ES)
|
||||||
unitoonSource,
|
unitoonSource,
|
||||||
//Manga-Scantrad (FR)
|
//Manga-Scantrad (FR)
|
||||||
mangascantradSource,
|
mangascantradSource,
|
||||||
//Mangas-Origines.fr (FR)
|
//Mangas-Origines.fr (FR)
|
||||||
mangasoriginesfrSource,
|
mangasoriginesfrSource,
|
||||||
//Raijin Scans (FR)
|
|
||||||
raijinscansSource,
|
|
||||||
//Reaper Scans (EN)
|
|
||||||
reaperscansSource,
|
|
||||||
//Soft Epsilon Scan (FR)
|
//Soft Epsilon Scan (FR)
|
||||||
softepsilonscanSource,
|
softepsilonscanSource,
|
||||||
//Hwago (ID)
|
//Hwago (ID)
|
||||||
@@ -489,8 +386,6 @@ List<Source> _madaraSourcesList =
|
|||||||
komikuzanSource,
|
komikuzanSource,
|
||||||
//MG Komik (ID)
|
//MG Komik (ID)
|
||||||
mgkomikSource,
|
mgkomikSource,
|
||||||
//Siimanga (ID)
|
|
||||||
siimangaSource,
|
|
||||||
//Yubikiri (ID)
|
//Yubikiri (ID)
|
||||||
yubikiriSource,
|
yubikiriSource,
|
||||||
//MangaHoNa (PL)
|
//MangaHoNa (PL)
|
||||||
@@ -519,16 +414,12 @@ List<Source> _madaraSourcesList =
|
|||||||
lunarscanSource,
|
lunarscanSource,
|
||||||
//MiniTwo Scan (PT-BR)
|
//MiniTwo Scan (PT-BR)
|
||||||
minitwoscanSource,
|
minitwoscanSource,
|
||||||
//Nexo Scans (PT-BR)
|
|
||||||
nexoscansSource,
|
|
||||||
//Ninja Scan (PT-BR)
|
//Ninja Scan (PT-BR)
|
||||||
ninjascanSource,
|
ninjascanSource,
|
||||||
//One Piece TECA (PT-BR)
|
//One Piece TECA (PT-BR)
|
||||||
onepiecetecaSource,
|
onepiecetecaSource,
|
||||||
//Demon Sect (PT-BR)
|
//Demon Sect (PT-BR)
|
||||||
prismascansSource,
|
prismascansSource,
|
||||||
//Sussy Scan (PT-BR)
|
|
||||||
sussyscanSource,
|
|
||||||
//Kings-Manga (TH)
|
//Kings-Manga (TH)
|
||||||
kingsmangaSource,
|
kingsmangaSource,
|
||||||
//MangaDeemak (TH)
|
//MangaDeemak (TH)
|
||||||
|
|||||||
13
dart/manga/multisrc/madara/src/ar/azora/azora.dart
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import '../../../../../../../model/source.dart';
|
||||||
|
|
||||||
|
Source get azoraSource => _azoraSource;
|
||||||
|
|
||||||
|
Source _azoraSource = Source(
|
||||||
|
name: "Azora",
|
||||||
|
baseUrl: "https://azoramoon.com",
|
||||||
|
lang: "ar",
|
||||||
|
|
||||||
|
typeSource: "madara",
|
||||||
|
iconUrl:
|
||||||
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/ar/azora/icon.png",
|
||||||
|
);
|
||||||
BIN
dart/manga/multisrc/madara/src/ar/azora/icon.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get chibimangaSource => _chibimangaSource;
|
|
||||||
|
|
||||||
Source _chibimangaSource = Source(
|
|
||||||
name: "Chibi Manga",
|
|
||||||
baseUrl: "https://www.cmreader.info",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/chibimanga/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get factmangaSource => _factmangaSource;
|
|
||||||
|
|
||||||
Source _factmangaSource = Source(
|
|
||||||
name: "FactManga",
|
|
||||||
baseUrl: "https://factmanga.com",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/factmanga/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 5.4 KiB |
@@ -4,7 +4,7 @@ Source get firstkissdashmangaSource => _firstkissdashmangaSource;
|
|||||||
|
|
||||||
Source _firstkissdashmangaSource = Source(
|
Source _firstkissdashmangaSource = Source(
|
||||||
name: "1st Kiss-Manga (unoriginal)",
|
name: "1st Kiss-Manga (unoriginal)",
|
||||||
baseUrl: "https://1stkiss-manga.com",
|
baseUrl: "https://1stkissmanga.org",
|
||||||
lang: "en",
|
lang: "en",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get globalblogingSource => _globalblogingSource;
|
|
||||||
Source _globalblogingSource = Source(
|
|
||||||
name: "Global Bloging",
|
|
||||||
baseUrl: "https://globalbloging.com",
|
|
||||||
lang: "en",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/en/globalbloging/icon.png",
|
|
||||||
dateFormat: "dd MMMM yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 9.8 KiB |
@@ -4,7 +4,7 @@ Source get harimangaSource => _harimangaSource;
|
|||||||
|
|
||||||
Source _harimangaSource = Source(
|
Source _harimangaSource = Source(
|
||||||
name: "Harimanga",
|
name: "Harimanga",
|
||||||
baseUrl: "https://harimanga.com",
|
baseUrl: "https://harimanga.me",
|
||||||
lang: "en",
|
lang: "en",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 5.0 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get immortalupdatesSource => _immortalupdatesSource;
|
|
||||||
|
|
||||||
Source _immortalupdatesSource = Source(
|
|
||||||
name: "Immortal Updates",
|
|
||||||
baseUrl: "https://immortalupdates.com",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/immortalupdates/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 2.7 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get komikchanSource => _komikchanSource;
|
|
||||||
|
|
||||||
Source _komikchanSource = Source(
|
|
||||||
name: "Komik Chan",
|
|
||||||
baseUrl: "https://komikchan.com",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/komikchan/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 4.2 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get luffymangaSource => _luffymangaSource;
|
|
||||||
|
|
||||||
Source _luffymangaSource = Source(
|
|
||||||
name: "Luffy Manga",
|
|
||||||
baseUrl: "https://luffymanga.com",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/luffymanga/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 19 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get manga347Source => _manga347Source;
|
|
||||||
Source _manga347Source = Source(
|
|
||||||
name: "Manga347",
|
|
||||||
baseUrl: "https://manga347.com",
|
|
||||||
lang: "en",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/en/manga347/icon.png",
|
|
||||||
dateFormat: "d MMM, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
@@ -4,7 +4,7 @@ Source get mangaclashSource => _mangaclashSource;
|
|||||||
|
|
||||||
Source _mangaclashSource = Source(
|
Source _mangaclashSource = Source(
|
||||||
name: "MangaClash",
|
name: "MangaClash",
|
||||||
baseUrl: "https://mangaclash.com",
|
baseUrl: "https://toonclash.com",
|
||||||
lang: "en",
|
lang: "en",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import '../../../../../../../model/source.dart';
|
|||||||
Source get mangaeffectSource => _mangaeffectSource;
|
Source get mangaeffectSource => _mangaeffectSource;
|
||||||
Source _mangaeffectSource = Source(
|
Source _mangaeffectSource = Source(
|
||||||
name: "MangaEffect",
|
name: "MangaEffect",
|
||||||
baseUrl: "https://mangaeffect.com",
|
baseUrl: "https://www.mangaread.org",
|
||||||
lang: "en",
|
lang: "en",
|
||||||
isNsfw: false,
|
isNsfw: false,
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 7.4 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get mangafastcomSource => _mangafastcomSource;
|
|
||||||
Source _mangafastcomSource = Source(
|
|
||||||
name: "Manga-fast.com",
|
|
||||||
baseUrl: "https://manga-fast.com",
|
|
||||||
lang: "en",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/en/mangafastcom/icon.png",
|
|
||||||
dateFormat: "d MMMM'،' yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 9.0 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get mangagreatSource => _mangagreatSource;
|
|
||||||
|
|
||||||
Source _mangagreatSource = Source(
|
|
||||||
name: "MangaGreat",
|
|
||||||
baseUrl: "https://mangagreat.com",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/mangagreat/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 6.3 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get mangarollsSource => _mangarollsSource;
|
|
||||||
|
|
||||||
Source _mangarollsSource = Source(
|
|
||||||
name: "MangaRolls",
|
|
||||||
baseUrl: "https://mangarolls.com",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/mangarolls/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 3.5 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get mangatxunoriginalSource => _mangatxunoriginalSource;
|
|
||||||
|
|
||||||
Source _mangatxunoriginalSource = Source(
|
|
||||||
name: "Manga-TX",
|
|
||||||
baseUrl: "https://manga-tx.com",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/mangatxunoriginal/icon.png",
|
|
||||||
dateFormat: "MMM d, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 4.8 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get mangausSource => _mangausSource;
|
|
||||||
|
|
||||||
Source _mangausSource = Source(
|
|
||||||
name: "MangaUS",
|
|
||||||
baseUrl: "https://mangaus.xyz",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/mangaus/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 7.1 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get mangaweebsSource => _mangaweebsSource;
|
|
||||||
|
|
||||||
Source _mangaweebsSource = Source(
|
|
||||||
name: "Manga Weebs",
|
|
||||||
baseUrl: "https://mangaweebs.in",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/mangaweebs/icon.png",
|
|
||||||
dateFormat: "dd MMMM HH:mm",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 4.9 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get manhuaesSource => _manhuaesSource;
|
|
||||||
|
|
||||||
Source _manhuaesSource = Source(
|
|
||||||
name: "Manhua ES",
|
|
||||||
baseUrl: "https://manhuaaz.com",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/manhuaes/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 6.6 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get manhwaworldSource => _manhwaworldSource;
|
|
||||||
|
|
||||||
Source _manhwaworldSource = Source(
|
|
||||||
name: "AQUA Scans",
|
|
||||||
baseUrl: "https://aquascans.com",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/manhwaworld/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 4.0 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get neatmangaSource => _neatmangaSource;
|
|
||||||
Source _neatmangaSource = Source(
|
|
||||||
name: "NeatManga",
|
|
||||||
baseUrl: "https://neatmanga.com",
|
|
||||||
lang: "en",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/en/neatmanga/icon.png",
|
|
||||||
dateFormat: "dd MMM yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 12 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get nvmangaSource => _nvmangaSource;
|
|
||||||
Source _nvmangaSource = Source(
|
|
||||||
name: "NvManga",
|
|
||||||
baseUrl: "https://nvmanga.com",
|
|
||||||
lang: "en",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/en/nvmanga/icon.png",
|
|
||||||
dateFormat: "dd/MM/yyyy",
|
|
||||||
dateFormatLocale: "en",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 5.6 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get reaperscansSource => _reaperscansSource;
|
|
||||||
Source _reaperscansSource = Source(
|
|
||||||
name: "Reaper Scans",
|
|
||||||
baseUrl: "https://reaperscans.com",
|
|
||||||
lang: "en",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/en/reaperscans/icon.png",
|
|
||||||
dateFormat: "dd/MM/yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 5.0 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get rio2mangaSource => _rio2mangaSource;
|
|
||||||
|
|
||||||
Source _rio2mangaSource = Source(
|
|
||||||
name: "Rio2 Manga",
|
|
||||||
baseUrl: "https://rio2manga.com",
|
|
||||||
lang: "en",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/en/rio2manga/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
@@ -4,7 +4,7 @@ Source get s2mangaSource => _s2mangaSource;
|
|||||||
|
|
||||||
Source _s2mangaSource = Source(
|
Source _s2mangaSource = Source(
|
||||||
name: "S2Manga",
|
name: "S2Manga",
|
||||||
baseUrl: "https://www.s2manga.com",
|
baseUrl: "https://s2manga.com",
|
||||||
lang: "en",
|
lang: "en",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import '../../../../../../../model/source.dart';
|
|||||||
Source get zinmanganetSource => _zinmanganetSource;
|
Source get zinmanganetSource => _zinmanganetSource;
|
||||||
Source _zinmanganetSource = Source(
|
Source _zinmanganetSource = Source(
|
||||||
name: "Zinmanga.net",
|
name: "Zinmanga.net",
|
||||||
baseUrl: "https://zinmanga.net",
|
baseUrl: "https://www.zinmanga.net",
|
||||||
lang: "en",
|
lang: "en",
|
||||||
isNsfw: false,
|
isNsfw: false,
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ Source get barmangaSource => _barmangaSource;
|
|||||||
|
|
||||||
Source _barmangaSource = Source(
|
Source _barmangaSource = Source(
|
||||||
name: "BarManga",
|
name: "BarManga",
|
||||||
baseUrl: "https://barmanga.com",
|
baseUrl: "https://archiviumbar.com",
|
||||||
lang: "es",
|
lang: "es",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get demanhuasSource => _demanhuasSource;
|
|
||||||
Source _demanhuasSource = Source(
|
|
||||||
name: "DeManhuas",
|
|
||||||
baseUrl: "https://demanhuas.com",
|
|
||||||
lang: "es",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/es/demanhuas/icon.png",
|
|
||||||
dateFormat: "MMMM d, yyyy",
|
|
||||||
dateFormatLocale: "es",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 7.8 KiB |
@@ -4,7 +4,7 @@ Source get emperorscanSource => _emperorscanSource;
|
|||||||
|
|
||||||
Source _emperorscanSource = Source(
|
Source _emperorscanSource = Source(
|
||||||
name: "Emperor Scan",
|
name: "Emperor Scan",
|
||||||
baseUrl: "https://emperorscan.com",
|
baseUrl: "https://emperorscan.mundoalterno.org",
|
||||||
lang: "es",
|
lang: "es",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get housemangasSource => _housemangasSource;
|
|
||||||
Source _housemangasSource = Source(
|
|
||||||
name: "HouseMangas",
|
|
||||||
baseUrl: "https://housemangas.com",
|
|
||||||
lang: "es",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/es/housemangas/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "es",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 8.1 KiB |
|
Before Width: | Height: | Size: 10 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get inmoralnofansubSource => _inmoralnofansubSource;
|
|
||||||
Source _inmoralnofansubSource = Source(
|
|
||||||
name: "Inmoral No Fansub",
|
|
||||||
baseUrl: "https://inmoralnofansub.xyz",
|
|
||||||
lang: "es",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/es/inmoralnofansub/icon.png",
|
|
||||||
dateFormat: "dd/MM/yyyy",
|
|
||||||
dateFormatLocale: "es",
|
|
||||||
);
|
|
||||||
@@ -4,7 +4,7 @@ Source get inmortalscanSource => _inmortalscanSource;
|
|||||||
|
|
||||||
Source _inmortalscanSource = Source(
|
Source _inmortalscanSource = Source(
|
||||||
name: "Inmortal Scan",
|
name: "Inmortal Scan",
|
||||||
baseUrl: "https://manga.mundodrama.site",
|
baseUrl: "https://scaninmortal.com",
|
||||||
lang: "es",
|
lang: "es",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import '../../../../../../../model/source.dart';
|
|||||||
Source get jeazscansSource => _jeazscansSource;
|
Source get jeazscansSource => _jeazscansSource;
|
||||||
Source _jeazscansSource = Source(
|
Source _jeazscansSource = Source(
|
||||||
name: "JeazScans",
|
name: "JeazScans",
|
||||||
baseUrl: "https://jeazscansv2.com",
|
baseUrl: "https://lectorhub.j5z.xyz",
|
||||||
lang: "es",
|
lang: "es",
|
||||||
isNsfw: false,
|
isNsfw: false,
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 6.4 KiB |
BIN
dart/manga/multisrc/madara/src/es/lmtos/icon.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
@@ -1,14 +1,14 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
import '../../../../../../../model/source.dart';
|
||||||
|
|
||||||
Source get jobsibeSource => _jobsibeSource;
|
Source get lmtosSource => _lmtosSource;
|
||||||
Source _jobsibeSource = Source(
|
Source _lmtosSource = Source(
|
||||||
name: "Jobsibe",
|
name: "Lmtos",
|
||||||
baseUrl: "https://jobsibe.com",
|
baseUrl: "https://www.lmtos.com",
|
||||||
lang: "es",
|
lang: "es",
|
||||||
isNsfw: false,
|
isNsfw: false,
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
iconUrl:
|
iconUrl:
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/es/jobsibe/icon.png",
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/es/lmtos/icon.png",
|
||||||
dateFormat: "MMMM d, yyyy",
|
dateFormat: "MMMM d, yyyy",
|
||||||
dateFormatLocale: "es",
|
dateFormatLocale: "es",
|
||||||
);
|
);
|
||||||
@@ -3,7 +3,7 @@ import '../../../../../../../model/source.dart';
|
|||||||
Source get mangacrabSource => _mangacrabSource;
|
Source get mangacrabSource => _mangacrabSource;
|
||||||
Source _mangacrabSource = Source(
|
Source _mangacrabSource = Source(
|
||||||
name: "Manga Crab",
|
name: "Manga Crab",
|
||||||
baseUrl: "https://visorcrab.com",
|
baseUrl: "https://mangacrab.org",
|
||||||
lang: "es",
|
lang: "es",
|
||||||
isNsfw: false,
|
isNsfw: false,
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 10 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get mangafenixSource => _mangafenixSource;
|
|
||||||
|
|
||||||
Source _mangafenixSource = Source(
|
|
||||||
name: "Manga Fenix",
|
|
||||||
baseUrl: "https://manhua-fenix.com",
|
|
||||||
lang: "es",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/es/mangafenix/icon.png",
|
|
||||||
dateFormat: "dd MMMM, yyyy",
|
|
||||||
dateFormatLocale: "es",
|
|
||||||
);
|
|
||||||
@@ -3,7 +3,7 @@ import '../../../../../../../model/source.dart';
|
|||||||
Source get mhscansSource => _mhscansSource;
|
Source get mhscansSource => _mhscansSource;
|
||||||
Source _mhscansSource = Source(
|
Source _mhscansSource = Source(
|
||||||
name: "MHScans",
|
name: "MHScans",
|
||||||
baseUrl: "https://lectormh.com",
|
baseUrl: "https://twobluescans.com",
|
||||||
lang: "es",
|
lang: "es",
|
||||||
isNsfw: false,
|
isNsfw: false,
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 9.2 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get monarcamangaSource => _monarcamangaSource;
|
|
||||||
|
|
||||||
Source _monarcamangaSource = Source(
|
|
||||||
name: "MonarcaManga",
|
|
||||||
baseUrl: "https://monarcamanga.com",
|
|
||||||
lang: "es",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/es/monarcamanga/icon.png",
|
|
||||||
dateFormat: "MMM d, yyy",
|
|
||||||
dateFormatLocale: "es",
|
|
||||||
);
|
|
||||||
@@ -4,7 +4,7 @@ Source get ragnarokscanlationSource => _ragnarokscanlationSource;
|
|||||||
|
|
||||||
Source _ragnarokscanlationSource = Source(
|
Source _ragnarokscanlationSource = Source(
|
||||||
name: "Ragnarok Scanlation",
|
name: "Ragnarok Scanlation",
|
||||||
baseUrl: "https://ragnarokscanlation.com",
|
baseUrl: "https://ragnarokscanlation.org",
|
||||||
lang: "es",
|
lang: "es",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ Source get richtoscanSource => _richtoscanSource;
|
|||||||
|
|
||||||
Source _richtoscanSource = Source(
|
Source _richtoscanSource = Source(
|
||||||
name: "RichtoScan",
|
name: "RichtoScan",
|
||||||
baseUrl: "https://richtoscan.com",
|
baseUrl: "https://r1.richtoon.top",
|
||||||
lang: "es",
|
lang: "es",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 5.7 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get scambertraslatorSource => _scambertraslatorSource;
|
|
||||||
|
|
||||||
Source _scambertraslatorSource = Source(
|
|
||||||
name: "ScamberTraslator",
|
|
||||||
baseUrl: "https://scambertraslator.com",
|
|
||||||
lang: "es",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/es/scambertraslator/icon.png",
|
|
||||||
dateFormat: "dd/MM/yyyy",
|
|
||||||
dateFormatLocale: "es",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 6.4 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get tresdaosscanSource => _tresdaosscanSource;
|
|
||||||
Source _tresdaosscanSource = Source(
|
|
||||||
name: "Tres Daos Scan",
|
|
||||||
baseUrl: "https://tresdaos.com",
|
|
||||||
lang: "es",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/es/tresdaosscan/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "es",
|
|
||||||
);
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get frscanSource => _frscanSource;
|
|
||||||
|
|
||||||
Source _frscanSource = Source(
|
|
||||||
name: "FR-Scan",
|
|
||||||
baseUrl: "https://fr-scan.com",
|
|
||||||
lang: "fr",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/fr/frscan/icon.png",
|
|
||||||
dateFormat: "MMMM d, yyyy",
|
|
||||||
dateFormatLocale: "fr",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 6.5 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get raijinscansSource => _raijinscansSource;
|
|
||||||
Source _raijinscansSource = Source(
|
|
||||||
name: "Raijin Scans",
|
|
||||||
baseUrl: "https://raijinscans.com",
|
|
||||||
lang: "fr",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/fr/raijinscans/icon.png",
|
|
||||||
dateFormat: "dd/MM/yyyy",
|
|
||||||
dateFormatLocale: "fr",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get readergenSource => _readergenSource;
|
|
||||||
|
|
||||||
Source _readergenSource = Source(
|
|
||||||
name: "ReaderGen",
|
|
||||||
baseUrl: "https://fr.readergen.fr",
|
|
||||||
lang: "fr",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/fr/readergen/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 3.1 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get shadowtradSource => _shadowtradSource;
|
|
||||||
|
|
||||||
Source _shadowtradSource = Source(
|
|
||||||
name: "Shadowtrad",
|
|
||||||
baseUrl: "https://shadowtrad.net",
|
|
||||||
lang: "fr",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/fr/shadowtrad/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "fr",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 6.0 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get thebeginningaftertheendSource => _thebeginningaftertheendSource;
|
|
||||||
|
|
||||||
Source _thebeginningaftertheendSource = Source(
|
|
||||||
name: "The Beginning After The End",
|
|
||||||
baseUrl: "https://www.thebeginningaftertheend.fr",
|
|
||||||
lang: "fr",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/fr/thebeginningaftertheend/icon.png",
|
|
||||||
dateFormat: "MMMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "fr",
|
|
||||||
);
|
|
||||||
@@ -3,7 +3,7 @@ import '../../../../../../../model/source.dart';
|
|||||||
Source get hwagoSource => _hwagoSource;
|
Source get hwagoSource => _hwagoSource;
|
||||||
Source _hwagoSource = Source(
|
Source _hwagoSource = Source(
|
||||||
name: "Hwago",
|
name: "Hwago",
|
||||||
baseUrl: "https://hwago.org",
|
baseUrl: "https://hwago01.xyz",
|
||||||
lang: "id",
|
lang: "id",
|
||||||
isNsfw: false,
|
isNsfw: false,
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import '../../../../../../../model/source.dart';
|
|||||||
Source get klikmangaSource => _klikmangaSource;
|
Source get klikmangaSource => _klikmangaSource;
|
||||||
Source _klikmangaSource = Source(
|
Source _klikmangaSource = Source(
|
||||||
name: "KlikManga",
|
name: "KlikManga",
|
||||||
baseUrl: "https://klikmanga.id",
|
baseUrl: "https://klikmanga.org",
|
||||||
lang: "id",
|
lang: "id",
|
||||||
isNsfw: false,
|
isNsfw: false,
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 11 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get siimangaSource => _siimangaSource;
|
|
||||||
Source _siimangaSource = Source(
|
|
||||||
name: "Siimanga",
|
|
||||||
baseUrl: "https://siimanga.cyou",
|
|
||||||
lang: "id",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/id/siimanga/icon.png",
|
|
||||||
dateFormat: "d MMMM",
|
|
||||||
dateFormatLocale: "en",
|
|
||||||
);
|
|
||||||
@@ -4,7 +4,7 @@ Source get kakuseiprojectSource => _kakuseiprojectSource;
|
|||||||
|
|
||||||
Source _kakuseiprojectSource = Source(
|
Source _kakuseiprojectSource = Source(
|
||||||
name: "Kakusei Project",
|
name: "Kakusei Project",
|
||||||
baseUrl: "https://kakuseiproject.com.br",
|
baseUrl: "https://kakuseiproject.com",
|
||||||
lang: "pt-BR",
|
lang: "pt-BR",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get maidscanSource => _maidscanSource;
|
|
||||||
|
|
||||||
Source _maidscanSource = Source(
|
|
||||||
name: "Maid Scan",
|
|
||||||
baseUrl: "https://maidscan.com.br",
|
|
||||||
lang: "pt-BR",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/pt/maidscan/icon.png",
|
|
||||||
dateFormat: "dd 'de' MMMMM 'de' yyyy",
|
|
||||||
dateFormatLocale: "pt-br",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 6.9 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get nexoscansSource => _nexoscansSource;
|
|
||||||
Source _nexoscansSource = Source(
|
|
||||||
name: "Nexo Scans",
|
|
||||||
baseUrl: "https://nexoscans.net",
|
|
||||||
lang: "pt-br",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/pt/nexoscans/icon.png",
|
|
||||||
dateFormat: "dd/MM/yyyy",
|
|
||||||
dateFormatLocale: "en_us",
|
|
||||||
);
|
|
||||||
@@ -3,7 +3,7 @@ import '../../../../../../../model/source.dart';
|
|||||||
Source get prismascansSource => _prismascansSource;
|
Source get prismascansSource => _prismascansSource;
|
||||||
Source _prismascansSource = Source(
|
Source _prismascansSource = Source(
|
||||||
name: "Demon Sect",
|
name: "Demon Sect",
|
||||||
baseUrl: "https://dsectcomics.org",
|
baseUrl: "https://seitacelestial.com",
|
||||||
lang: "pt-br",
|
lang: "pt-br",
|
||||||
isNsfw: false,
|
isNsfw: false,
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 13 KiB |
@@ -1,15 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get projetoscanlatorSource => _projetoscanlatorSource;
|
|
||||||
|
|
||||||
Source _projetoscanlatorSource = Source(
|
|
||||||
name: "Projeto Scanlator",
|
|
||||||
baseUrl: "https://projetoscanlator.com",
|
|
||||||
lang: "pt-BR",
|
|
||||||
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/manga/multisrc/madara/src/pt/projetoscanlator/icon.png",
|
|
||||||
dateFormat: "dd/MM/yyyy",
|
|
||||||
dateFormatLocale: "pt-br",
|
|
||||||
);
|
|
||||||
|
Before Width: | Height: | Size: 8.7 KiB |
@@ -1,14 +0,0 @@
|
|||||||
import '../../../../../../../model/source.dart';
|
|
||||||
|
|
||||||
Source get sussyscanSource => _sussyscanSource;
|
|
||||||
Source _sussyscanSource = Source(
|
|
||||||
name: "Sussy Scan",
|
|
||||||
baseUrl: "https://sussyscan.com",
|
|
||||||
lang: "pt-br",
|
|
||||||
isNsfw: false,
|
|
||||||
typeSource: "madara",
|
|
||||||
iconUrl:
|
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/dart/manga/multisrc/madara/src/pt/sussyscan/icon.png",
|
|
||||||
dateFormat: "MMMM dd, yyyy",
|
|
||||||
dateFormatLocale: "pt-br",
|
|
||||||
);
|
|
||||||
@@ -4,7 +4,7 @@ Source get araznovelSource => _araznovelSource;
|
|||||||
|
|
||||||
Source _araznovelSource = Source(
|
Source _araznovelSource = Source(
|
||||||
name: "ArazNovel",
|
name: "ArazNovel",
|
||||||
baseUrl: "https://www.araznovel.com",
|
baseUrl: "https://araznovel.com",
|
||||||
lang: "tr",
|
lang: "tr",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import '../../../../../../../model/source.dart';
|
|||||||
Source get atikrostSource => _atikrostSource;
|
Source get atikrostSource => _atikrostSource;
|
||||||
Source _atikrostSource = Source(
|
Source _atikrostSource = Source(
|
||||||
name: "Atikrost",
|
name: "Atikrost",
|
||||||
baseUrl: "https://www.atikrost.com",
|
baseUrl: "https://www.mangaoku.org",
|
||||||
lang: "tr",
|
lang: "tr",
|
||||||
isNsfw: false,
|
isNsfw: false,
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ Source get clovermangaSource => _clovermangaSource;
|
|||||||
|
|
||||||
Source _clovermangaSource = Source(
|
Source _clovermangaSource = Source(
|
||||||
name: "Clover Manga",
|
name: "Clover Manga",
|
||||||
baseUrl: "https://clover-manga.com",
|
baseUrl: "https://webtoonhatti.me",
|
||||||
lang: "tr",
|
lang: "tr",
|
||||||
|
|
||||||
typeSource: "madara",
|
typeSource: "madara",
|
||||||
|
|||||||