Files
kodjodevf-mangayomi-extensions/manga/multisrc/nepnep/sources.dart
kodjomoustapha 33b32ecd27 fix
2023-10-18 13:28:52 +01:00

37 lines
1.1 KiB
Dart

import '../../../model/source.dart';
import '../../../utils/utils.dart';
const nepnepVersion = "0.0.1";
const nepnepSourceCodeUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/nepnep/nepnep-v$nepnepVersion.dart";
const defaultDateFormat = "yyyy-MM-dd HH:mm:ss";
const defaultDateFormatLocale = "en";
List<Source> get nepnepSourcesList => _nepnepSourcesList;
List<Source> _nepnepSourcesList = [
Source(
name: "MangaSee",
baseUrl: "https://mangasee123.com",
lang: "en",
typeSource: "nepnep",
iconUrl: getIconUrl("mangasee", "en"),
dateFormat: defaultDateFormat,
dateFormatLocale: defaultDateFormatLocale,
version: nepnepVersion,
appMinVerReq: "0.0.5",
sourceCodeUrl: nepnepSourceCodeUrl,
),
Source(
name: "MangaLife",
baseUrl: "https://manga4life.com",
lang: "en",
typeSource: "nepnep",
iconUrl: getIconUrl("mangalife", "en"),
dateFormat: defaultDateFormat,
dateFormatLocale: defaultDateFormatLocale,
version: nepnepVersion,
appMinVerReq: "0.0.5",
sourceCodeUrl: nepnepSourceCodeUrl,
),
];