Fix EHentai/ExHentai Fix hitomi.la Fix hitomi.la crashing application Rewrite hitomi.la search engine to be faster, use less CPU and require no preloading Fix nhentai Add additional filters to nhentai Fix PervEden Introduce delegated sources Rewrite HentaiCafe to be a delegated source Introduce ability to save/load search presets Temporarily disable misbehaving native Tachiyomi migrations Fix tap-to-search-tag breaking on aliased tags Add debug menu Add experimental automatic captcha solver Add app name to wakelock names Add ability to interrupt metadata migrator Fix incognito open-in-browser being zoomed in immediately when it's opened
21 lines
647 B
Kotlin
21 lines
647 B
Kotlin
package exh.metadata.sql.models
|
|
|
|
data class SearchMetadata(
|
|
// Manga ID this gallery is linked to
|
|
val mangaId: Long,
|
|
|
|
// Gallery uploader
|
|
val uploader: String?,
|
|
|
|
// Extra data attached to this metadata, in JSON format
|
|
val extra: String,
|
|
|
|
// Indexed extra data attached to this metadata
|
|
val indexedExtra: String?,
|
|
|
|
// The version of this metadata's extra. Used to track changes to the 'extra' field's schema
|
|
val extraVersion: Int
|
|
) {
|
|
// Transient information attached to this piece of metadata, useful for caching
|
|
var transientCache: Map<String, Any>? = null
|
|
} |