forked from Jays2Kings/tachiyomiJ2K
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'j2k/master'
# Conflicts: # .github/ISSUE_TEMPLATE.md # .github/ISSUE_TEMPLATE/feature_request.yml # .github/ISSUE_TEMPLATE/issue_report.yml # app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaHeaderHolder.kt # app/src/main/java/eu/kanade/tachiyomi/util/system/ImageUtil.kt # app/src/main/res/values-ar/strings.xml # app/src/main/res/values-es/strings.xml # app/src/main/res/values-hr/strings.xml # app/src/main/res/values-ja/strings.xml # app/src/main/res/values-pt-rBR/strings.xml # app/src/main/res/values-sv/strings.xml # app/src/main/res/values-th/strings.xml # app/src/main/res/values-vi/strings.xml # app/src/main/res/values-zh-rCN/strings.xml # app/src/main/res/values/strings.xml # buildSrc/src/main/kotlin/Dependencies.kt
- Loading branch information
Showing
207 changed files
with
4,351 additions
and
2,660 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
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
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
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
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
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 |
---|---|---|
@@ -1,11 +1,32 @@ | ||
package eu.kanade.tachiyomi | ||
|
||
import eu.kanade.tachiyomi.util.system.ImageUtil | ||
|
||
/** | ||
* Used by extensions. | ||
* | ||
* @since extension-lib 1.3 | ||
*/ | ||
object AppInfo { | ||
fun getVersionCode() = BuildConfig.VERSION_CODE | ||
fun getVersionName() = BuildConfig.VERSION_NAME | ||
/** | ||
* Version code of the host application. May be useful for sharing as User-Agent information. | ||
* Note that this value differs between forks so logic should not rely on it. | ||
* | ||
* @since extension-lib 1.3 | ||
*/ | ||
fun getVersionCode(): Int = BuildConfig.VERSION_CODE | ||
|
||
/** | ||
* Version name of the host application. May be useful for sharing as User-Agent information. | ||
* Note that this value differs between forks so logic should not rely on it. | ||
* | ||
* @since extension-lib 1.3 | ||
*/ | ||
fun getVersionName(): String = BuildConfig.VERSION_NAME | ||
|
||
/** | ||
* A list of supported image MIME types by the reader. | ||
* e.g. ["image/jpeg", "image/png", ...] | ||
* | ||
* @since extension-lib 1.5 | ||
*/ | ||
fun getSupportedImageMimeTypes(): List<String> = ImageUtil.ImageType.values().map { it.mime } | ||
} |
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
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
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
99 changes: 0 additions & 99 deletions
99
app/src/main/java/eu/kanade/tachiyomi/data/backup/AbstractBackupManager.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.