Fix OmegaScans

This commit is contained in:
kodjomoustapha
2024-01-30 10:15:22 +01:00
parent d39428476b
commit bbd9fba0cc
2 changed files with 13 additions and 3 deletions

View File

@@ -215,12 +215,22 @@ class HeanCms extends MProvider {
}
bool useNewQueryEndpoint(String sourceName) {
List<String> sources = ["YugenMangas", "Perf Scan", "Reaper Scans"];
List<String> sources = [
"YugenMangas",
"Perf Scan",
"Reaper Scans",
"OmegaScans"
];
return sources.contains(sourceName);
}
bool useslugStrategy(String sourceName) {
List<String> sources = ["YugenMangas", "Reaper Scans", "Perf Scan"];
List<String> sources = [
"YugenMangas",
"Reaper Scans",
"Perf Scan",
"OmegaScans"
];
return sources.contains(sourceName);
}
}

View File

@@ -3,7 +3,7 @@ import 'src/yugenmangas/yugenmangas.dart';
import 'src/omegascans/omegascans.dart';
import 'src/perfscan/perfscan.dart';
const heancmsVersion = "0.0.6";
const heancmsVersion = "0.0.65";
const heancmsSourceCodeUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/manga/multisrc/heancms/heancms.dart";