Refactor
@@ -1,68 +1,22 @@
|
||||
import '../../../model/source.dart';
|
||||
import '../../../utils/utils.dart';
|
||||
import 'src/yugenmangas/yugenmangas.dart';
|
||||
import 'src/omegascans/omegascans.dart';
|
||||
import 'src/perfscan/perfscan.dart';
|
||||
|
||||
const heancmsVersion = "0.0.4";
|
||||
const heancmsSourceCodeUrl =
|
||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/heancms/heancms-v$heancmsVersion.dart";
|
||||
const defaultDateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ";
|
||||
const defaultDateFormatLocale = "en";
|
||||
List<Source> get heanCmsSourcesList => _heanCmsSourcesList;
|
||||
List<Source> _heanCmsSourcesList = [
|
||||
Source(
|
||||
name: "YugenMangas",
|
||||
baseUrl: "https://yugenmangas.lat",
|
||||
apiUrl: "https://api.yugenmangas.net",
|
||||
lang: "es",
|
||||
typeSource: "heancms",
|
||||
isNsfw: true,
|
||||
iconUrl: getIconUrl("yugenmangas", "es"),
|
||||
sourceCodeUrl: heancmsSourceCodeUrl,
|
||||
version: heancmsVersion,
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale),
|
||||
Source(
|
||||
name: "OmegaScans",
|
||||
baseUrl: "https://omegascans.org",
|
||||
apiUrl: "https://api.omegascans.org",
|
||||
lang: "en",
|
||||
typeSource: "heancms",
|
||||
isNsfw: true,
|
||||
iconUrl: getIconUrl("omegascans", "en"),
|
||||
sourceCodeUrl: heancmsSourceCodeUrl,
|
||||
version: heancmsVersion,
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale),
|
||||
// Source(
|
||||
// name: "Reaper Scans",
|
||||
// baseUrl: "https://reaperscans.net",
|
||||
// apiUrl: "https://api.reaperscans.net",
|
||||
// lang: "pt-br",
|
||||
// typeSource: "heancms",
|
||||
// iconUrl: getIconUrl("reaperscans", "pt"),
|
||||
// sourceCodeUrl: heancmsSourceCodeUrl,
|
||||
// version: heancmsVersion,
|
||||
// dateFormat: defaultDateFormat,
|
||||
// dateFormatLocale: defaultDateFormatLocale),
|
||||
Source(
|
||||
name: "Perf Scan",
|
||||
baseUrl: "https://perf-scan.fr",
|
||||
apiUrl: "https://api.perf-scan.fr",
|
||||
lang: "fr",
|
||||
typeSource: "heancms",
|
||||
iconUrl: getIconUrl("perfscan", "fr"),
|
||||
sourceCodeUrl: heancmsSourceCodeUrl,
|
||||
version: heancmsVersion,
|
||||
dateFormat: defaultDateFormat,
|
||||
dateFormatLocale: defaultDateFormatLocale),
|
||||
// Source(
|
||||
// name: "Glorious Scan",
|
||||
// baseUrl: "https://gloriousscan.com",
|
||||
// apiUrl: "https://api.gloriousscan.com",
|
||||
// lang: "pt-br",
|
||||
// typeSource: "heancms",
|
||||
// iconUrl: getIconUrl("gloriousscan", "pt"),
|
||||
// sourceCodeUrl: heancmsSourceCodeUrl,
|
||||
// version: heancmsVersion,
|
||||
// dateFormat: defaultDateFormat,
|
||||
// dateFormatLocale: defaultDateFormatLocale),
|
||||
];
|
||||
|
||||
List<Source> get heancmsSourcesList => _heancmsSourcesList;
|
||||
List<Source> _heancmsSourcesList = [
|
||||
//YugenMangas (ES)
|
||||
yugenmangasSource,
|
||||
//OmegaScans (EN)
|
||||
omegascansSource,
|
||||
//Perf Scan (FR)
|
||||
perfscanSource,
|
||||
]
|
||||
.map((e) => e
|
||||
..sourceCodeUrl = heancmsSourceCodeUrl
|
||||
..version = heancmsVersion)
|
||||
.toList();
|
||||
|
||||
BIN
manga/multisrc/heancms/src/omegascans/icon.png
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
14
manga/multisrc/heancms/src/omegascans/omegascans.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get omegascansSource => _omegascansSource;
|
||||
|
||||
Source _omegascansSource = Source(
|
||||
name: "OmegaScans",
|
||||
baseUrl: "https://omegascans.org",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "heancms",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/heancms/src/omegascans/icon.png",
|
||||
dateFormat:"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ",
|
||||
dateFormatLocale:"en",
|
||||
);
|
||||
BIN
manga/multisrc/heancms/src/perfscan/icon.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
14
manga/multisrc/heancms/src/perfscan/perfscan.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get perfscanSource => _perfscanSource;
|
||||
|
||||
Source _perfscanSource = Source(
|
||||
name: "Perf Scan",
|
||||
baseUrl: "https://perf-scan.fr",
|
||||
lang: "fr",
|
||||
isNsfw: true,
|
||||
typeSource: "heancms",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/heancms/src/perfscan/icon.png",
|
||||
dateFormat:"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ",
|
||||
dateFormatLocale:"en",
|
||||
);
|
||||
BIN
manga/multisrc/heancms/src/yugenmangas/icon.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
14
manga/multisrc/heancms/src/yugenmangas/yugenmangas.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get yugenmangasSource => _yugenmangasSource;
|
||||
|
||||
Source _yugenmangasSource = Source(
|
||||
name: "YugenMangas",
|
||||
baseUrl: "https://yugenmangas.lat",
|
||||
lang: "es",
|
||||
|
||||
typeSource: "heancms",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/heancms/src/yugenmangas/icon.png",
|
||||
dateFormat:"yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ",
|
||||
dateFormatLocale:"en",
|
||||
);
|
||||
@@ -321,7 +321,7 @@ class Madara extends MProvider {
|
||||
.first;
|
||||
final imgs = querySelectorAll(pagesSelectorRes,
|
||||
selector: "img", typeElement: 2, attributes: "", typeRegExp: 2);
|
||||
var pageUrls = [];
|
||||
List<String> pageUrls = [];
|
||||
|
||||
if (imgs.length == 1) {
|
||||
final pages = querySelectorAll(res,
|
||||
|
||||
14
manga/multisrc/madara/src/adultwebtoon/adultwebtoon.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get adultwebtoonSource => _adultwebtoonSource;
|
||||
|
||||
Source _adultwebtoonSource = Source(
|
||||
name: "Adult Webtoon",
|
||||
baseUrl: "https://adultwebtoon.com",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/adultwebtoon/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/adultwebtoon/icon.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
14
manga/multisrc/madara/src/akumanotenshi/akumanotenshi.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get akumanotenshiSource => _akumanotenshiSource;
|
||||
|
||||
Source _akumanotenshiSource = Source(
|
||||
name: "Akuma no Tenshi",
|
||||
baseUrl: "https://akumanotenshi.com",
|
||||
lang: "pt-BR",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/akumanotenshi/icon.png",
|
||||
dateFormat:"dd/MM/yyyy",
|
||||
dateFormatLocale:"pt-br",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/akumanotenshi/icon.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
14
manga/multisrc/madara/src/anikiga/anikiga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get anikigaSource => _anikigaSource;
|
||||
|
||||
Source _anikigaSource = Source(
|
||||
name: "Anikiga",
|
||||
baseUrl: "https://anikiga.com",
|
||||
lang: "tr",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/anikiga/icon.png",
|
||||
dateFormat:"d MMMMM yyyy",
|
||||
dateFormatLocale:"tr",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/anikiga/icon.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
14
manga/multisrc/madara/src/apollcomics/apollcomics.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get apollcomicsSource => _apollcomicsSource;
|
||||
|
||||
Source _apollcomicsSource = Source(
|
||||
name: "ApollComics",
|
||||
baseUrl: "https://apollcomics.xyz",
|
||||
lang: "es",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/apollcomics/icon.png",
|
||||
dateFormat:"dd MMMM, yyyy",
|
||||
dateFormatLocale:"es",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/apollcomics/icon.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
14
manga/multisrc/madara/src/apolltoons/apolltoons.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get apolltoonsSource => _apolltoonsSource;
|
||||
|
||||
Source _apolltoonsSource = Source(
|
||||
name: "Apolltoons",
|
||||
baseUrl: "https://apolltoons.xyz",
|
||||
lang: "es",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/apolltoons/icon.png",
|
||||
dateFormat:"dd MMMMM, yyyy",
|
||||
dateFormatLocale:"es",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/apolltoons/icon.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
14
manga/multisrc/madara/src/araznovel/araznovel.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get araznovelSource => _araznovelSource;
|
||||
|
||||
Source _araznovelSource = Source(
|
||||
name: "ArazNovel",
|
||||
baseUrl: "https://www.araznovel.com",
|
||||
lang: "tr",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/araznovel/icon.png",
|
||||
dateFormat:"d MMMM yyyy",
|
||||
dateFormatLocale:"en",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/araznovel/icon.png
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
14
manga/multisrc/madara/src/arthurscan/arthurscan.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get arthurscanSource => _arthurscanSource;
|
||||
|
||||
Source _arthurscanSource = Source(
|
||||
name: "Arthur Scan",
|
||||
baseUrl: "https://arthurscan.xyz",
|
||||
lang: "pt-BR",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/arthurscan/icon.png",
|
||||
dateFormat:"MMMMM dd, yyyy",
|
||||
dateFormatLocale:"pt-br",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/arthurscan/icon.png
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
14
manga/multisrc/madara/src/astralmanga/astralmanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get astralmangaSource => _astralmangaSource;
|
||||
|
||||
Source _astralmangaSource = Source(
|
||||
name: "AstralManga",
|
||||
baseUrl: "https://astral-manga.fr",
|
||||
lang: "fr",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/astralmanga/icon.png",
|
||||
dateFormat:"dd/mm/yyyy",
|
||||
dateFormatLocale:"fr",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/astralmanga/icon.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
14
manga/multisrc/madara/src/asurascansus/asurascansus.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get asurascansusSource => _asurascansusSource;
|
||||
|
||||
Source _asurascansusSource = Source(
|
||||
name: "Asura Scans.us (unoriginal)",
|
||||
baseUrl: "https://asurascans.us",
|
||||
lang: "en",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/asurascansus/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/asurascansus/icon.png
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
14
manga/multisrc/madara/src/bakamh/bakamh.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get bakamhSource => _bakamhSource;
|
||||
|
||||
Source _bakamhSource = Source(
|
||||
name: "巴卡漫画",
|
||||
baseUrl: "https://bakamh.com",
|
||||
lang: "zh",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/bakamh/icon.png",
|
||||
|
||||
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/bakamh/icon.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
14
manga/multisrc/madara/src/bananamanga/bananamanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get bananamangaSource => _bananamangaSource;
|
||||
|
||||
Source _bananamangaSource = Source(
|
||||
name: "Banana Manga",
|
||||
baseUrl: "https://bananamanga.net",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/bananamanga/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/bananamanga/icon.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
14
manga/multisrc/madara/src/barmanga/barmanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get barmangaSource => _barmangaSource;
|
||||
|
||||
Source _barmangaSource = Source(
|
||||
name: "BarManga",
|
||||
baseUrl: "https://barmanga.com",
|
||||
lang: "es",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/barmanga/icon.png",
|
||||
dateFormat:"MM/dd/yyyy",
|
||||
dateFormatLocale:"es",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/barmanga/icon.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
14
manga/multisrc/madara/src/bestmanga/bestmanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get bestmangaSource => _bestmangaSource;
|
||||
|
||||
Source _bestmangaSource = Source(
|
||||
name: "BestManga",
|
||||
baseUrl: "https://bestmanga.club",
|
||||
lang: "ru",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/bestmanga/icon.png",
|
||||
dateFormat:"dd.MM.yyyy",
|
||||
dateFormatLocale:"ru",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/bestmanga/icon.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
14
manga/multisrc/madara/src/birdtoon/birdtoon.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get birdtoonSource => _birdtoonSource;
|
||||
|
||||
Source _birdtoonSource = Source(
|
||||
name: "BirdToon",
|
||||
baseUrl: "https://birdtoon.net",
|
||||
lang: "id",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/birdtoon/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/birdtoon/icon.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
14
manga/multisrc/madara/src/cerisescans/cerisescans.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get cerisescansSource => _cerisescansSource;
|
||||
|
||||
Source _cerisescansSource = Source(
|
||||
name: "Cerise Scan",
|
||||
baseUrl: "https://cerisescan.com",
|
||||
lang: "pt-BR",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/cerisescans/icon.png",
|
||||
dateFormat:"dd 'de' MMMMM 'de' yyyy",
|
||||
dateFormatLocale:"pt-br",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/cerisescans/icon.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
14
manga/multisrc/madara/src/chibimanga/chibimanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get chibimangaSource => _chibimangaSource;
|
||||
|
||||
Source _chibimangaSource = Source(
|
||||
name: "Chibi Manga",
|
||||
baseUrl: "https://www.cmreader.info",
|
||||
lang: "en",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/chibimanga/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/chibimanga/icon.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
14
manga/multisrc/madara/src/clovermanga/clovermanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get clovermangaSource => _clovermangaSource;
|
||||
|
||||
Source _clovermangaSource = Source(
|
||||
name: "Clover Manga",
|
||||
baseUrl: "https://clover-manga.com",
|
||||
lang: "tr",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/clovermanga/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"tr",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/clovermanga/icon.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
14
manga/multisrc/madara/src/cocorip/cocorip.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get cocoripSource => _cocoripSource;
|
||||
|
||||
Source _cocoripSource = Source(
|
||||
name: "Coco Rip",
|
||||
baseUrl: "https://cocorip.net",
|
||||
lang: "es",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/cocorip/icon.png",
|
||||
dateFormat:"dd/MM/yyyy",
|
||||
dateFormatLocale:"es",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/cocorip/icon.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
14
manga/multisrc/madara/src/coffeemanga/coffeemanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get coffeemangaSource => _coffeemangaSource;
|
||||
|
||||
Source _coffeemangaSource = Source(
|
||||
name: "Coffee Manga",
|
||||
baseUrl: "https://coffeemanga.io",
|
||||
lang: "en",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/coffeemanga/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/coffeemanga/icon.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
14
manga/multisrc/madara/src/comicarab/comicarab.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get comicarabSource => _comicarabSource;
|
||||
|
||||
Source _comicarabSource = Source(
|
||||
name: "كوميك العرب",
|
||||
baseUrl: "https://comicarab.com",
|
||||
lang: "ar",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/comicarab/icon.png",
|
||||
|
||||
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/comicarab/icon.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
14
manga/multisrc/madara/src/comicznetv2/comicznetv2.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get comicznetv2Source => _comicznetv2Source;
|
||||
|
||||
Source _comicznetv2Source = Source(
|
||||
name: "Comicz.net v2",
|
||||
baseUrl: "https://v2.comiz.net",
|
||||
lang: "all",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/comicznetv2/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/comicznetv2/icon.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
14
manga/multisrc/madara/src/decadencescans/decadencescans.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get decadencescansSource => _decadencescansSource;
|
||||
|
||||
Source _decadencescansSource = Source(
|
||||
name: "Decadence Scans",
|
||||
baseUrl: "https://reader.decadencescans.com",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/decadencescans/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/decadencescans/icon.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
14
manga/multisrc/madara/src/dessertscan/dessertscan.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get dessertscanSource => _dessertscanSource;
|
||||
|
||||
Source _dessertscanSource = Source(
|
||||
name: "Dessert Scan",
|
||||
baseUrl: "https://cabaredowatame.site",
|
||||
lang: "pt-BR",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/dessertscan/icon.png",
|
||||
dateFormat:"dd/MM/yyyy",
|
||||
dateFormatLocale:"pt-br",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/dessertscan/icon.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
14
manga/multisrc/madara/src/doodmanga/doodmanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get doodmangaSource => _doodmangaSource;
|
||||
|
||||
Source _doodmangaSource = Source(
|
||||
name: "Doodmanga",
|
||||
baseUrl: "https://www.doodmanga.com",
|
||||
lang: "th",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/doodmanga/icon.png",
|
||||
dateFormat:"dd MMMMM yyyy",
|
||||
dateFormatLocale:"th",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/doodmanga/icon.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
14
manga/multisrc/madara/src/elitemanga/elitemanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get elitemangaSource => _elitemangaSource;
|
||||
|
||||
Source _elitemangaSource = Source(
|
||||
name: "Elite Manga",
|
||||
baseUrl: "https://www.elitemanga.org",
|
||||
lang: "en",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/elitemanga/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/elitemanga/icon.png
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
14
manga/multisrc/madara/src/emperorscan/emperorscan.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get emperorscanSource => _emperorscanSource;
|
||||
|
||||
Source _emperorscanSource = Source(
|
||||
name: "Emperor Scan",
|
||||
baseUrl: "https://emperorscan.com",
|
||||
lang: "es",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/emperorscan/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"es",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/emperorscan/icon.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
14
manga/multisrc/madara/src/evascans/evascans.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get evascansSource => _evascansSource;
|
||||
|
||||
Source _evascansSource = Source(
|
||||
name: "EvaScans",
|
||||
baseUrl: "https://evascans.com",
|
||||
lang: "tr",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/evascans/icon.png",
|
||||
dateFormat:"MMM d, yyy",
|
||||
dateFormatLocale:"tr",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/evascans/icon.png
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
14
manga/multisrc/madara/src/factmanga/factmanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get factmangaSource => _factmangaSource;
|
||||
|
||||
Source _factmangaSource = Source(
|
||||
name: "FactManga",
|
||||
baseUrl: "https://factmanga.com",
|
||||
lang: "en",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/factmanga/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/factmanga/icon.png
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
14
manga/multisrc/madara/src/falconmanga/falconmanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get falconmangaSource => _falconmangaSource;
|
||||
|
||||
Source _falconmangaSource = Source(
|
||||
name: "فالكون مانجا",
|
||||
baseUrl: "https://falconmanga.com",
|
||||
lang: "ar",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/falconmanga/icon.png",
|
||||
|
||||
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/falconmanga/icon.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
14
manga/multisrc/madara/src/finalscans/finalscans.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get finalscansSource => _finalscansSource;
|
||||
|
||||
Source _finalscansSource = Source(
|
||||
name: "Final Scans",
|
||||
baseUrl: "https://finalscans.com",
|
||||
lang: "pt-br",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/finalscans/icon.png",
|
||||
dateFormat:"MMMM d, yyyy",
|
||||
dateFormatLocale:"pt-br",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/finalscans/icon.png
Normal file
|
After Width: | Height: | Size: 9.1 KiB |
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get firstkissdashmangaSource => _firstkissdashmangaSource;
|
||||
|
||||
Source _firstkissdashmangaSource = Source(
|
||||
name: "1st Kiss-Manga (unoriginal)",
|
||||
baseUrl: "https://1stkiss-manga.com",
|
||||
lang: "en",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/firstkissdashmanga/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/firstkissdashmanga/icon.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
14
manga/multisrc/madara/src/firstmanhwa/firstmanhwa.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get firstmanhwaSource => _firstmanhwaSource;
|
||||
|
||||
Source _firstmanhwaSource = Source(
|
||||
name: "1st Manhwa",
|
||||
baseUrl: "https://1stmanhwa.com",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/firstmanhwa/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/firstmanhwa/icon.png
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
14
manga/multisrc/madara/src/flextapescans/flextapescans.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get flextapescansSource => _flextapescansSource;
|
||||
|
||||
Source _flextapescansSource = Source(
|
||||
name: "Flex Tape Scans",
|
||||
baseUrl: "https://flextapescans.com",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/flextapescans/icon.png",
|
||||
dateFormat:"MM/dd/yyy",
|
||||
dateFormatLocale:"en",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/flextapescans/icon.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
14
manga/multisrc/madara/src/freemanga/freemanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get freemangaSource => _freemangaSource;
|
||||
|
||||
Source _freemangaSource = Source(
|
||||
name: "Free Manga",
|
||||
baseUrl: "https://freemanga.me",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/freemanga/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/freemanga/icon.png
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
14
manga/multisrc/madara/src/freemangatop/freemangatop.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get freemangatopSource => _freemangatopSource;
|
||||
|
||||
Source _freemangatopSource = Source(
|
||||
name: "FreeMangaTop",
|
||||
baseUrl: "https://freemangatop.com",
|
||||
lang: "en",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/freemangatop/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/freemangatop/icon.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
14
manga/multisrc/madara/src/frscan/frscan.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get frscanSource => _frscanSource;
|
||||
|
||||
Source _frscanSource = Source(
|
||||
name: "FR-Scan",
|
||||
baseUrl: "https://fr-scan.com",
|
||||
lang: "fr",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/frscan/icon.png",
|
||||
dateFormat:"MMMM d, yyyy",
|
||||
dateFormatLocale:"fr",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/frscan/icon.png
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
14
manga/multisrc/madara/src/ghostscan/ghostscan.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get ghostscanSource => _ghostscanSource;
|
||||
|
||||
Source _ghostscanSource = Source(
|
||||
name: "Ghost Scan",
|
||||
baseUrl: "https://ghostscan.com.br",
|
||||
lang: "pt-BR",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/ghostscan/icon.png",
|
||||
dateFormat:"dd 'de' MMMMM 'de' yyyy",
|
||||
dateFormatLocale:"pt-br",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/ghostscan/icon.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
14
manga/multisrc/madara/src/girlslovemanga/girlslovemanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get girlslovemangaSource => _girlslovemangaSource;
|
||||
|
||||
Source _girlslovemangaSource = Source(
|
||||
name: "Girls Love Manga!",
|
||||
baseUrl: "https://glmanga.com",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/girlslovemanga/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/girlslovemanga/icon.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
14
manga/multisrc/madara/src/glorymanga/glorymanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get glorymangaSource => _glorymangaSource;
|
||||
|
||||
Source _glorymangaSource = Source(
|
||||
name: "Glory Manga",
|
||||
baseUrl: "https://glorymanga.com",
|
||||
lang: "tr",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/glorymanga/icon.png",
|
||||
dateFormat:"dd/MM/yyy",
|
||||
dateFormatLocale:"tr",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/glorymanga/icon.png
Normal file
|
After Width: | Height: | Size: 6.7 KiB |
14
manga/multisrc/madara/src/gooffansub/gooffansub.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get gooffansubSource => _gooffansubSource;
|
||||
|
||||
Source _gooffansubSource = Source(
|
||||
name: "Goof Fansub",
|
||||
baseUrl: "https://gooffansub.com",
|
||||
lang: "pt-BR",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/gooffansub/icon.png",
|
||||
dateFormat:"dd/MM/yyy",
|
||||
dateFormatLocale:"pt-br",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/gooffansub/icon.png
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
14
manga/multisrc/madara/src/harimanga/harimanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get harimangaSource => _harimangaSource;
|
||||
|
||||
Source _harimangaSource = Source(
|
||||
name: "Harimanga",
|
||||
baseUrl: "https://harimanga.com",
|
||||
lang: "en",
|
||||
isNsfw:true,
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/harimanga/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/harimanga/icon.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
14
manga/multisrc/madara/src/hentai3z/hentai3z.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get hentai3zSource => _hentai3zSource;
|
||||
|
||||
Source _hentai3zSource = Source(
|
||||
name: "Hentai3z",
|
||||
baseUrl: "https://hentai3z.xyz",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/hentai3z/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/hentai3z/icon.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
14
manga/multisrc/madara/src/hentaicube/hentaicube.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get hentaicubeSource => _hentaicubeSource;
|
||||
|
||||
Source _hentaicubeSource = Source(
|
||||
name: "Hentai CB",
|
||||
baseUrl: "https://hentaicube.net",
|
||||
lang: "vi",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/hentaicube/icon.png",
|
||||
dateFormat:"dd/MM/yyyy",
|
||||
dateFormatLocale:"vi",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/hentaicube/icon.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
14
manga/multisrc/madara/src/hentaimanga/hentaimanga.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get hentaimangaSource => _hentaimangaSource;
|
||||
|
||||
Source _hentaimangaSource = Source(
|
||||
name: "Hentai Manga",
|
||||
baseUrl: "https://hentaimanga.me",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/hentaimanga/icon.png",
|
||||
dateFormat:"MMM d, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/hentaimanga/icon.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
14
manga/multisrc/madara/src/hentaiteca/hentaiteca.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get hentaitecaSource => _hentaitecaSource;
|
||||
|
||||
Source _hentaitecaSource = Source(
|
||||
name: "Hentai Teca",
|
||||
baseUrl: "https://hentaiteca.net",
|
||||
lang: "pt-BR",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/hentaiteca/icon.png",
|
||||
dateFormat:"MMMMM dd, yyyy",
|
||||
dateFormatLocale:"pt-br",
|
||||
);
|
||||
BIN
manga/multisrc/madara/src/hentaiteca/icon.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
14
manga/multisrc/madara/src/hentaiwebtoon/hentaiwebtoon.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import '../../../../../model/source.dart';
|
||||
|
||||
Source get hentaiwebtoonSource => _hentaiwebtoonSource;
|
||||
|
||||
Source _hentaiwebtoonSource = Source(
|
||||
name: "HentaiWebtoon",
|
||||
baseUrl: "https://hentaiwebtoon.com",
|
||||
lang: "en",
|
||||
|
||||
typeSource: "madara",
|
||||
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/madara/src/hentaiwebtoon/icon.png",
|
||||
dateFormat:"MMMM dd, yyyy",
|
||||
dateFormatLocale:"en_us",
|
||||
);
|
||||