This commit is contained in:
Moustapha Kodjo Amadou
2025-03-01 14:48:13 +01:00
parent 7d5e95679d
commit 185b8b3a3d
2 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ import '../../../../model/source.dart';
import 'src/hianime/hianime.dart'; import 'src/hianime/hianime.dart';
import 'src/kaido/kaido.dart'; import 'src/kaido/kaido.dart';
const _zorothemeVersion = "0.1.3"; const _zorothemeVersion = "0.1.4";
const _zorothemeSourceCodeUrl = const _zorothemeSourceCodeUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/zorotheme/zorotheme.dart"; "https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/$branchName/dart/anime/multisrc/zorotheme/zorotheme.dart";

View File

@@ -637,11 +637,11 @@ class ZoroTheme extends MProvider {
values: ["HD-1", "HD-2", "StreamTape"], values: ["HD-1", "HD-2", "StreamTape"],
), ),
MultiSelectListPreference( MultiSelectListPreference(
key: "type_selection_new", key: "type_selection_1",
title: "Enable/Disable Types", title: "Enable/Disable Types",
summary: "", summary: "",
entries: ["Sub", "Dub", "Raw"], entries: ["Sub", "Dub", "Raw"],
entryValues: ["sub", "dub"], entryValues: ["sub", "dub", "raw"],
values: ["sub", "dub", "raw"], values: ["sub", "dub", "raw"],
), ),
]; ];
@@ -684,7 +684,7 @@ class ZoroTheme extends MProvider {
} }
List<String> preferenceTypeSelection(int sourceId) { List<String> preferenceTypeSelection(int sourceId) {
return getPreferenceValue(sourceId, "type_selection_new"); return getPreferenceValue(sourceId, "type_selection_1");
} }
String ll(String url) { String ll(String url) {