mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 10:51:17 +00:00
35 lines
1.3 KiB
Dart
35 lines
1.3 KiB
Dart
import '../../../model/source.dart';
|
|
|
|
const heancmsVersion = "0.0.1";
|
|
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.net",
|
|
apiUrl: "https://api.yugenmangas.net",
|
|
lang: "es",
|
|
typeSource: "heancms",
|
|
isNsfw: true,
|
|
iconUrl: 'https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icon/mangayomi-es-yugenmangas.png',
|
|
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: 'https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/icon/mangayomi-en-omegascans.png',
|
|
sourceCodeUrl: heancmsSourceCodeUrl,
|
|
version: heancmsVersion,
|
|
dateFormat: defaultDateFormat,
|
|
dateFormatLocale: defaultDateFormatLocale),
|
|
];
|