Skip to content

Commit

Permalink
Merge branch 'master' into port-more-refactors
Browse files Browse the repository at this point in the history
  • Loading branch information
jmir1 committed Feb 5, 2024
2 parents f07fbcf + 3d05621 commit c257761
Show file tree
Hide file tree
Showing 21 changed files with 541 additions and 819 deletions.
2 changes: 1 addition & 1 deletion src/id/oploverz/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'Oploverz'
extClass = '.Oploverz'
extVersionCode = 22
extVersionCode = 23
}

apply from: "$rootDir/common.gradle"
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import java.util.Locale

class Oploverz : ConfigurableAnimeSource, AnimeHttpSource() {
override val name: String = "Oploverz"
override val baseUrl: String = "https://oploverz.wiki"
override val baseUrl: String = "https://oploverz.guru"
override val lang: String = "id"
override val supportsLatest: Boolean = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ object OploverzFilters {
Pair("Doga Kobo", "doga-kobo"),
Pair("DR Movie", "dr-movie"),
Pair("Drive", "drive"),
Pair("E&H Production", "eh-production"),
Pair("Encourage Films", "encourage-films"),
Pair("Feel", "feel"),
Pair("Gallop", "gallop"),
Expand Down Expand Up @@ -294,6 +295,7 @@ object OploverzFilters {
Pair("SANZIGEN", "sanzigen"),
Pair("Satelight", "satelight"),
Pair("Sentai Filmworks", "sentai-filmworks"),
Pair("Seven Arcs", "seven-arcs"),
Pair("Shaft", "shaft"),
Pair("Shin-Ei Animation", "shin-ei-animation"),
Pair("Shuka", "shuka"),
Expand Down
2 changes: 1 addition & 1 deletion src/id/samehadaku/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'Samehadaku'
extClass = '.Samehadaku'
extVersionCode = 4
extVersionCode = 5
}

apply from: "$rootDir/common.gradle"
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import java.util.Locale

class Samehadaku : ConfigurableAnimeSource, AnimeHttpSource() {
override val name: String = "Samehadaku"
override val baseUrl: String = "https://samehadaku.guru"
override val baseUrl: String = "https://samehadaku.gold"
override val lang: String = "id"
override val supportsLatest: Boolean = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,11 @@ object SamehadakuFilters {
Pair("Police", "police"),
Pair("poling", "poling"),
Pair("Psychological", "psychological"),
Pair("Recomendation", "recomendation"),
Pair("Rame", "recomendation"),
Pair("Reincarnation", "reincarnation"),
Pair("Romance", "romance"),
Pair("Romantic Subtext", "romantic-subtext"),
Pair("Romantic1", "romantic1"),
Pair("Samurai", "samurai"),
Pair("School", "school"),
Pair("Sci-Fi", "sci-fi"),
Expand All @@ -165,6 +166,7 @@ object SamehadakuFilters {
Pair("Sports", "sports"),
Pair("Spring 2023", "spring-2023"),
Pair("Strategy Game", "strategy-game"),
Pair("Subtext", "subtext"),
Pair("Super Power", "super-power"),
Pair("Supernatural", "supernatural"),
Pair("Survival", "survival"),
Expand Down
22 changes: 22 additions & 0 deletions src/it/aniplay/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name=".it.aniplay.AniPlayUrlActivity"
android:excludeFromRecents="true"
android:exported="true"
android:theme="@android:style/Theme.NoDisplay">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data
android:host="aniplay.co"
android:pathPattern="/series/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>
6 changes: 5 additions & 1 deletion src/it/aniplay/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
ext {
extName = 'AniPlay'
extClass = '.AniPlay'
extVersionCode = 6
extVersionCode = 7
}

apply from: "$rootDir/common.gradle"

dependencies {
implementation(project(":lib:playlist-utils"))
}
Binary file removed src/it/aniplay/res/web_hi_res_512.png
Binary file not shown.
Loading

0 comments on commit c257761

Please sign in to comment.