Removed QuegnaReader - Fixed TuttoAnimeManga (#12508)

* Removed QuegnaReader - Fixed TuttoAnimeManga

* Update multisrc/src/main/java/eu/kanade/tachiyomi/multisrc/pizzareader/PizzaReaderGenerator.kt

Co-authored-by: Alessandro Jean <14254807+alessandrojean@users.noreply.github.com>

* Update to TuttoAnimeManga and PizzaReader.kt

Changes to PizzaReader.kt restored and modified TuttoAnimeManga

Co-authored-by: Alessandro Jean <14254807+alessandrojean@users.noreply.github.com>
This commit is contained in:
Renato 2022-07-16 17:11:39 +02:00 committed by GitHub
parent 0fbf2f3e58
commit 9c1b977aa7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 12 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 KiB

View File

@ -1,5 +0,0 @@
package eu.kanade.tachiyomi.extension.it.tuttoanimemanga
import eu.kanade.tachiyomi.multisrc.foolslide.FoolSlide
class TuttoAnimeManga : FoolSlide("TuttoAnimeManga", "https://tuttoanimemanga.net", "it", "/slide")

View File

Before

Width:  |  Height:  |  Size: 323 KiB

After

Width:  |  Height:  |  Size: 323 KiB

View File

@ -0,0 +1,11 @@
package eu.kanade.tachiyomi.extension.it.tuttoanimemanga
import eu.kanade.tachiyomi.multisrc.pizzareader.PizzaReader
import kotlinx.serialization.json.Json
class TuttoAnimeManga : PizzaReader("TuttoAnimeManga", "http://tuttoanimemanga.net", "it") {
override val json = Json {
ignoreUnknownKeys = true
coerceInputValues = true
}
}

View File

@ -33,9 +33,7 @@ class FoolSlideGenerator : ThemeSourceGenerator {
SingleLang("Kirishima Fansub", "https://www.kirishimafansub.net", "es"), SingleLang("Kirishima Fansub", "https://www.kirishimafansub.net", "es"),
SingleLang("Baixar Hentai", "https://leitura.baixarhentai.net", "pt-BR", isNsfw = true, overrideVersionCode = 4), SingleLang("Baixar Hentai", "https://leitura.baixarhentai.net", "pt-BR", isNsfw = true, overrideVersionCode = 4),
MultiLang("HNI-Scantrad", "https://hni-scantrad.com", listOf("fr", "en"), className = "HNIScantradFactory", pkgName = "hniscantrad", overrideVersionCode = 1), MultiLang("HNI-Scantrad", "https://hni-scantrad.com", listOf("fr", "en"), className = "HNIScantradFactory", pkgName = "hniscantrad", overrideVersionCode = 1),
SingleLang("QuegnaReader", "http://pignaquegna.altervista.org", "it", overrideVersionCode = 1),
SingleLang("NIFTeam", "http://read-nifteam.info", "it"), SingleLang("NIFTeam", "http://read-nifteam.info", "it"),
SingleLang("TuttoAnimeManga", "https://tuttoanimemanga.net", "it"),
SingleLang("Rama", "https://www.ramareader.it", "it"), SingleLang("Rama", "https://www.ramareader.it", "it"),
SingleLang("Mabushimajo", "http://mabushimajo.com", "tr"), SingleLang("Mabushimajo", "http://mabushimajo.com", "tr"),
SingleLang("Le Cercle du Scan", "https://lel.lecercleduscan.com", "fr", className = "LeCercleDuScan", overrideVersionCode = 1), SingleLang("Le Cercle du Scan", "https://lel.lecercleduscan.com", "fr", className = "LeCercleDuScan", overrideVersionCode = 1),

View File

@ -16,6 +16,7 @@ class PizzaReaderGenerator : ThemeSourceGenerator {
SingleLang("Phoenix Scans", "https://www.phoenixscans.com", "it", className = "PhoenixScans", overrideVersionCode = 4), SingleLang("Phoenix Scans", "https://www.phoenixscans.com", "it", className = "PhoenixScans", overrideVersionCode = 4),
SingleLang("GTO The Great Site", "https://reader.gtothegreatsite.net", "it", className = "GTO", overrideVersionCode = 3), SingleLang("GTO The Great Site", "https://reader.gtothegreatsite.net", "it", className = "GTO", overrideVersionCode = 3),
SingleLang("LupiTeam", "https://lupiteam.net", "it", overrideVersionCode = 3), SingleLang("LupiTeam", "https://lupiteam.net", "it", overrideVersionCode = 3),
SingleLang("TuttoAnimeManga", "https://tuttoanimemanga.net", "it", overrideVersionCode = 4)
) )
companion object { companion object {