RawXZ: update domain (#3901)

This commit is contained in:
Vetle Ledaal 2024-07-07 14:20:02 +02:00 committed by Draff
parent 0eb1915ee0
commit fc20cb2228
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 7 additions and 4 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'RawXZ' extName = 'RawXZ'
extClass = '.RawXZ' extClass = '.RawXZ'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://rawxz.net' baseUrl = 'https://rawxz.si'
overrideVersionCode = 0 overrideVersionCode = 1
isNsfw = true isNsfw = true
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -1,14 +1,17 @@
package eu.kanade.tachiyomi.extension.ja.rawxz package eu.kanade.tachiyomi.extension.ja.rawxz
import eu.kanade.tachiyomi.multisrc.madara.Madara import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class RawXZ : Madara( class RawXZ : Madara(
"RawXZ", "RawXZ",
"https://rawxz.net", "https://rawxz.si",
"ja", "ja",
dateFormat = SimpleDateFormat("M月 d, yyyy", Locale.ROOT),
) { ) {
override val useLoadMoreRequest = LoadMoreStrategy.Never override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = false override val useNewChapterEndpoint = false
override val mangaSubString = "comic" override val mangaSubString = "jp-manga"
} }