-
Notifications
You must be signed in to change notification settings - Fork 535
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
ext { | ||
extName = 'Monte Tai' | ||
extClass = '.MonteTai' | ||
themePkg = 'madara' | ||
baseUrl = 'https://montetaiscanlator.xyz' | ||
overrideVersionCode = 0 | ||
} | ||
|
||
apply from: "$rootDir/common.gradle" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions
14
src/pt/montetai/src/eu/kanade/tachiyomi/extension/pt/montetai/MonteTai.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package eu.kanade.tachiyomi.extension.pt.montetai | ||
|
||
import eu.kanade.tachiyomi.multisrc.madara.Madara | ||
import java.text.SimpleDateFormat | ||
import java.util.Locale | ||
|
||
class MonteTai : Madara( | ||
"Monte Tai", | ||
"https://montetaiscanlator.xyz", | ||
"pt-BR", | ||
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")), | ||
) { | ||
override val useNewChapterEndpoint = true | ||
} |