- Option to blacklist libraries from Latest/Popular Feeds & Suggestions - Option to customize Chapter Titles & Scanlator fields - Option to show the release date instead of added date for chapters/volumes (close #37) - Added `formats` for GroupTags - Action to create releases ## Fixes/Enhancements - Pagination bug (closes #33, thanks to @Freezy) - Optimized API calls - Better cache and cleanup - Better cleaned chapter/volumes titles - Fixed Chapter Parsing Logic - Refactored duplicated codes into multiple helpers - Fixed action to update version badge - More feedbacks on errors & graceful degradation for partial failures - Include Suwayomi install & screenshots in README (closes #41)
18 lines
363 B
Groovy
18 lines
363 B
Groovy
ext {
|
|
kmkVersionCode = 1
|
|
extName = 'Kavita'
|
|
extClass = '.KavitaFactory'
|
|
extVersionCode = 21
|
|
isNsfw = false
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|
|
|
|
dependencies {
|
|
// implementation("org.apache.commons:commons-text:1.14.0")
|
|
// implementation(libs.lib.i18n)
|
|
implementation project(':lib:i18n')
|
|
implementation(libs.commons.text)
|
|
|
|
}
|