This commit is contained in:
kodjomoustapha
2023-12-08 16:04:42 +01:00
parent 0beb2dd78f
commit fe6bf88086
492 changed files with 3988 additions and 2639 deletions

View File

@@ -1,36 +1,20 @@
import '../../../model/source.dart';
import '../../../utils/utils.dart';
import 'src/mangasee/mangasee.dart';
import 'src/mangalife/mangalife.dart';
const nepnepVersion = "0.0.4";
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"),
isFullData: true,
dateFormat: defaultDateFormat,
dateFormatLocale: defaultDateFormatLocale,
version: nepnepVersion,
sourceCodeUrl: nepnepSourceCodeUrl,
),
Source(
name: "MangaLife",
baseUrl: "https://manga4life.com",
lang: "en",
typeSource: "nepnep",
iconUrl: getIconUrl("mangalife", "en"),
isFullData: true,
dateFormat: defaultDateFormat,
dateFormatLocale: defaultDateFormatLocale,
version: nepnepVersion,
sourceCodeUrl: nepnepSourceCodeUrl,
),
];
//MangaSee (EN)
mangaseeSource,
//MangaLife (EN)
mangalifeSource,
]
.map((e) => e
..sourceCodeUrl = nepnepSourceCodeUrl
..version = nepnepVersion)
.toList();

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,14 @@
import '../../../../../model/source.dart';
Source get mangalifeSource => _mangalifeSource;
Source _mangalifeSource = Source(
name: "MangaLife",
baseUrl: "https://manga4life.com",
lang: "en",
isNsfw: true,
typeSource: "nepnep",
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/nepnep/src/mangalife/icon.png",
dateFormat:"yyyy-MM-dd HH:mm:ss",
dateFormatLocale:"en",
);

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -0,0 +1,14 @@
import '../../../../../model/source.dart';
Source get mangaseeSource => _mangaseeSource;
Source _mangaseeSource = Source(
name: "MangaSee",
baseUrl: "https://mangasee123.com",
lang: "en",
isNsfw: true,
typeSource: "nepnep",
iconUrl:"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/nepnep/src/mangasee/icon.png",
dateFormat:"yyyy-MM-dd HH:mm:ss",
dateFormatLocale:"en",
);