* Add Nekopost V.1.2.1 * Fix genre not shown * Change Icons * Rename monthMap -> monthList * Change from getter to normal declaration * Rename getUrlWithoutDomainFromFullUrl to getMangaOrChapterAlias * Fix duplicate title * Fix unable to search by Genre tag * Change Genre and Status from Enum to Pairs * Minor changes * Fix next page not loaded when previous page has no new title * Fix offset not reset * Change most of extension to API-based * Fix bug where some chapter uses legacy url format * Update build.gradle
13 lines
261 B
Groovy
13 lines
261 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
appName = 'Tachiyomi: Nekopost'
|
|
pkgNameSuffix = 'th.nekopost'
|
|
extClass = '.Nekopost'
|
|
extVersionCode = 3
|
|
libVersion = '1.2'
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|