- Fix categories modal showing when adding from source with no categories - Use old categories icon in library bottom action menu (cherry picked from commit 688cc64dffa8cdf1241d3b4e2467b5e8c8529800) # Conflicts: # app/src/main/java/eu/kanade/presentation/components/MangaBottomActionMenu.kt # app/src/main/java/eu/kanade/tachiyomi/App.kt
13 lines
234 B
Kotlin
13 lines
234 B
Kotlin
package eu.kanade.tachiyomi
|
|
|
|
/**
|
|
* Used by extensions.
|
|
*
|
|
* @since extension-lib 1.3
|
|
*/
|
|
@Suppress("UNUSED")
|
|
object AppInfo {
|
|
fun getVersionCode() = BuildConfig.VERSION_CODE
|
|
fun getVersionName() = BuildConfig.VERSION_NAME
|
|
}
|