fix: rebrand fire scans to firecomics (#4412)

* fix: rebrand fire scans to firecomics

* fix: change gradle

* chore: add old id
This commit is contained in:
jckli 2024-08-04 04:38:45 -07:00 committed by Draff
parent c02273905e
commit 118a905cef
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 6 additions and 5 deletions

View File

@ -1,9 +1,9 @@
ext {
extName = 'Fire Scans'
extClass = '.FireScans'
extName = 'Firecomics'
extClass = '.Firecomics'
themePkg = 'madara'
baseUrl = 'https://firescans.xyz'
overrideVersionCode = 1
baseUrl = 'https://firecomics.org'
overrideVersionCode = 2
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 68 KiB

View File

@ -11,8 +11,9 @@ import kotlinx.serialization.json.jsonPrimitive
import okhttp3.OkHttpClient
import org.jsoup.nodes.Document
class FireScans : Madara("Fire Scans", "https://firescans.xyz", "en") {
class Firecomics : Madara("Firecomics", "https://firecomics.org", "en") {
override val id: Long = 5761461704760730187
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(20, 5)
.build()