add novel support

This commit is contained in:
Schnitzel5
2024-11-25 22:51:11 +01:00
parent 8e2b190fd0
commit d9a66b7651
57 changed files with 103 additions and 50 deletions

View File

@@ -0,0 +1,4 @@
import '../../model/source.dart';
List<Source> dartNovelSourceList = [
];

BIN
dart/novel/src/en/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

View File

@@ -0,0 +1,19 @@
import '../../../../model/source.dart';
Source get novelUpdatesSource => _novelUpdatesSource;
const _novelUpdatesVersion = "0.0.1";
const _novelUpdatesSourceCodeUrl =
"https://raw.githubusercontent.com/Schnitzel5/mangayomi-extensions/$branchName/dart/novel/src/en/novelupdates.dart";
Source _novelUpdatesSource = Source(
name: "NovelUpdates",
baseUrl: "https://www.novelupdates.com",
lang: "en",
typeSource: "single",
iconUrl:
"https://raw.githubusercontent.com/Schnitzel5/mangayomi-extensions/$branchName/dart/manga/src/en/icon.png",
sourceCodeUrl: _novelUpdatesSourceCodeUrl,
itemType: ItemType.novel,
version: _novelUpdatesVersion,
dateFormat: "MMM dd,yyyy",
dateFormatLocale: "en",
);