diff --git a/src/en/zoro/build.gradle b/src/en/zoro/build.gradle index 27a1b15d2..b793a5142 100644 --- a/src/en/zoro/build.gradle +++ b/src/en/zoro/build.gradle @@ -1,9 +1,9 @@ ext { - extName = 'AniWatch' - extClass = '.AniWatch' + extName = 'HiAnime' + extClass = '.HiAnime' themePkg = 'zorotheme' - baseUrl = 'https://aniwatch.to' - overrideVersionCode = 39 + baseUrl = 'https://hianime.to' + overrideVersionCode = 40 } apply from: "$rootDir/common.gradle" \ No newline at end of file diff --git a/src/en/zoro/res/mipmap-hdpi/ic_launcher.png b/src/en/zoro/res/mipmap-hdpi/ic_launcher.png index 4ee31d9dd..f8eabb6be 100644 Binary files a/src/en/zoro/res/mipmap-hdpi/ic_launcher.png and b/src/en/zoro/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/en/zoro/res/mipmap-mdpi/ic_launcher.png b/src/en/zoro/res/mipmap-mdpi/ic_launcher.png index db658e48d..0795ad029 100644 Binary files a/src/en/zoro/res/mipmap-mdpi/ic_launcher.png and b/src/en/zoro/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/en/zoro/res/mipmap-xhdpi/ic_launcher.png b/src/en/zoro/res/mipmap-xhdpi/ic_launcher.png index 0d963107a..bbfe8578a 100644 Binary files a/src/en/zoro/res/mipmap-xhdpi/ic_launcher.png and b/src/en/zoro/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/en/zoro/res/mipmap-xxhdpi/ic_launcher.png b/src/en/zoro/res/mipmap-xxhdpi/ic_launcher.png index c1a4969c9..c928c25a8 100644 Binary files a/src/en/zoro/res/mipmap-xxhdpi/ic_launcher.png and b/src/en/zoro/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/en/zoro/res/mipmap-xxxhdpi/ic_launcher.png b/src/en/zoro/res/mipmap-xxxhdpi/ic_launcher.png index b114f3d58..8c977b2f5 100644 Binary files a/src/en/zoro/res/mipmap-xxxhdpi/ic_launcher.png and b/src/en/zoro/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/en/zoro/res/play_store_512.png b/src/en/zoro/res/play_store_512.png deleted file mode 100644 index bcad39905..000000000 Binary files a/src/en/zoro/res/play_store_512.png and /dev/null differ diff --git a/src/en/zoro/src/eu/kanade/tachiyomi/animeextension/en/zoro/AniWatch.kt b/src/en/zoro/src/eu/kanade/tachiyomi/animeextension/en/zoro/HiAnime.kt similarity index 81% rename from src/en/zoro/src/eu/kanade/tachiyomi/animeextension/en/zoro/AniWatch.kt rename to src/en/zoro/src/eu/kanade/tachiyomi/animeextension/en/zoro/HiAnime.kt index ca68de642..d2a3cbf87 100644 --- a/src/en/zoro/src/eu/kanade/tachiyomi/animeextension/en/zoro/AniWatch.kt +++ b/src/en/zoro/src/eu/kanade/tachiyomi/animeextension/en/zoro/HiAnime.kt @@ -5,18 +5,18 @@ import eu.kanade.tachiyomi.lib.megacloudextractor.MegaCloudExtractor import eu.kanade.tachiyomi.lib.streamtapeextractor.StreamTapeExtractor import eu.kanade.tachiyomi.multisrc.zorotheme.ZoroTheme -class AniWatch : ZoroTheme( +class HiAnime : ZoroTheme( "en", - "AniWatch", - "https://aniwatch.to", + "HiAnime", + "https://hianime.to", ) { override val id = 6706411382606718900L override val ajaxRoute = "/v2" override val hosterNames: List = listOf( - "Vidstreaming", - "MegaCloud", + "HD-1", + "HD-2", "StreamTape", ) @@ -30,7 +30,7 @@ class AniWatch : ZoroTheme( ?.let(::listOf) ?: emptyList() } - "Vidstreaming", "MegaCloud" -> megaCloudExtractor.getVideosFromUrl(server.link, server.type, server.name) + "HD-1", "HD-2" -> megaCloudExtractor.getVideosFromUrl(server.link, server.type, server.name) else -> emptyList() } }