Upgrade some extensions from HTTP to HTTPS (#4816)

* Café com Yaoi: upgrade to https

* KomikIndo.info: upgrade to https

* LemonFont: upgrade to https

* NIFTeam: upgrade to https

* TuttoAnimeManga: upgrade to https

* Sodsaime: upgrade to https
This commit is contained in:
Vetle Ledaal 2024-08-29 10:17:44 +02:00 committed by Draff
parent 27bf92cc04
commit 71ee8dc587
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
12 changed files with 18 additions and 15 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'LemonFont'
extClass = '.LemonFont'
extVersionCode = 2
extVersionCode = 3
isNsfw = true
}

View File

@ -16,7 +16,7 @@ import rx.Observable
class LemonFont : ParsedHttpSource() {
override val name = "LemonFont"
override val baseUrl = "http://lemonfontcomics.com"
override val baseUrl = "https://lemonfontcomics.com"
override val lang = "en"

View File

@ -2,8 +2,8 @@ ext {
extName = 'KomikIndo.info'
extClass = '.KomikIndoInfo'
themePkg = 'zmanga'
baseUrl = 'http://komikindo.info'
overrideVersionCode = 0
baseUrl = 'https://komikindo.info'
overrideVersionCode = 1
isNsfw = true
}

View File

@ -4,7 +4,7 @@ import eu.kanade.tachiyomi.multisrc.zmanga.ZManga
import java.text.SimpleDateFormat
import java.util.Locale
class KomikIndoInfo : ZManga("KomikIndo.info", "http://komikindo.info", "id", dateFormat = SimpleDateFormat("MMM d, yyyy", Locale("id"))) {
class KomikIndoInfo : ZManga("KomikIndo.info", "https://komikindo.info", "id", dateFormat = SimpleDateFormat("MMM d, yyyy", Locale("id"))) {
override val hasProjectPage = true
}

View File

@ -2,8 +2,9 @@ ext {
extName = 'NIFTeam'
extClass = '.NIFTeam'
themePkg = 'foolslide'
baseUrl = 'http://read-nifteam.info'
overrideVersionCode = 0
baseUrl = 'https://read-nifteam.info'
overrideVersionCode = 1
isNsfw = false
}
apply from: "$rootDir/common.gradle"

View File

@ -2,4 +2,4 @@ package eu.kanade.tachiyomi.extension.it.nifteam
import eu.kanade.tachiyomi.multisrc.foolslide.FoolSlide
class NIFTeam : FoolSlide("NIFTeam", "http://read-nifteam.info", "it", "/slide")
class NIFTeam : FoolSlide("NIFTeam", "https://read-nifteam.info", "it", "/slide")

View File

@ -3,7 +3,8 @@ ext {
extClass = '.TuttoAnimeManga'
themePkg = 'pizzareader'
baseUrl = 'https://tuttoanimemanga.net'
overrideVersionCode = 4
overrideVersionCode = 5
isNsfw = false
}
apply from: "$rootDir/common.gradle"

View File

@ -3,7 +3,7 @@ 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") {
class TuttoAnimeManga : PizzaReader("TuttoAnimeManga", "https://tuttoanimemanga.net", "it") {
override val json = Json {
ignoreUnknownKeys = true
coerceInputValues = true

View File

@ -2,8 +2,8 @@ ext {
extName = 'Café com Yaoi'
extClass = '.CafeComYaoi'
themePkg = 'madara'
baseUrl = 'http://cafecomyaoi.com.br'
overrideVersionCode = 1
baseUrl = 'https://cafecomyaoi.com.br'
overrideVersionCode = 2
isNsfw = true
}

View File

@ -9,10 +9,11 @@ import java.util.concurrent.TimeUnit
class CafeComYaoi : Madara(
"Café com Yaoi",
"http://cafecomyaoi.com.br",
"https://cafecomyaoi.com.br",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val useNewChapterEndpoint = true
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)

View File

@ -3,7 +3,7 @@ ext {
extClass = '.Sodsaime'
themePkg = 'mangathemesia'
baseUrl = 'https://www.xn--l3c0azab5a2gta.com'
overrideVersionCode = 1
overrideVersionCode = 2
isNsfw = true
}

View File

@ -4,4 +4,4 @@ import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class Sodsaime : MangaThemesia("สดใสเมะ", "http://www.xn--l3c0azab5a2gta.com", "th", dateFormat = SimpleDateFormat("MMMMM dd, yyyy", Locale("th")))
class Sodsaime : MangaThemesia("สดใสเมะ", "https://www.xn--l3c0azab5a2gta.com", "th", dateFormat = SimpleDateFormat("MMMMM dd, yyyy", Locale("th")))