add support for tachiyomi extensions Lib 1.3 (#316)

* closes #315

* provide real values

* add support for tachiyomi extensions lib 1.3
This commit is contained in:
Aria Moradi
2022-03-19 02:36:42 +03:30
committed by GitHub
parent fa035ad9be
commit 44ffed3f7c
8 changed files with 174 additions and 7 deletions

View File

@@ -0,0 +1,8 @@
package eu.kanade.tachiyomi.source
/**
* A source that explicitly doesn't require traffic considerations.
*
* This typically applies for self-hosted sources.
*/
interface UnmeteredSource

View File

@@ -55,6 +55,9 @@ interface SManga : Serializable {
const val ONGOING = 1
const val COMPLETED = 2
const val LICENSED = 3
const val PUBLISHING_FINISHED = 4
const val CANCELLED = 5
const val ON_HIATUS = 6
fun create(): SManga {
return SMangaImpl()