* Adds the ability to automatically filter chapters in comick based on their "score" * wording update, version bump * use chapter_ prefix when referring to score filtering * Update src/all/comickfun/assets/i18n/messages_en.properties Co-authored-by: AwkwardPeak7 <48650614+AwkwardPeak7@users.noreply.github.com> * change syntax for filtering based on PR feedback * figured out how to make an extension * updated, thanks! --------- Co-authored-by: AwkwardPeak7 <48650614+AwkwardPeak7@users.noreply.github.com>
13 lines
202 B
Groovy
13 lines
202 B
Groovy
ext {
|
|
extName = 'Comick'
|
|
extClass = '.ComickFactory'
|
|
extVersionCode = 57
|
|
isNsfw = true
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|
|
|
|
dependencies {
|
|
implementation(project(":lib:i18n"))
|
|
}
|