pull/32/head
gedoor 6 years ago
parent ce7dc38799
commit 8cf52988a7
  1. 1
      app/src/main/java/io/legado/app/data/entities/BookSource.kt
  2. 7
      app/src/main/res/layout/activity_source_edit.xml

@ -27,6 +27,7 @@ data class BookSource (
var lastUpdateTime: Long = 0, // 最后更新时间,用于排序
var customOrder: Int = 0, // 手动排序编号
var weight: Int = 0, // 智能排序的权重
var exploreIsEnabled: Boolean = true, //启用发现
var exploreRule: String? = null, // 发现规则
var searchRule: String? = null, // 搜索规则
var bookInfoRule: String? = null, // 书籍信息页规则

@ -25,6 +25,13 @@
android:checked="true"
android:text="@string/is_enable"/>
<io.legado.app.lib.theme.view.ATECheckBox
android:id="@+id/cb_is_enable_find"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/find"/>
<io.legado.app.lib.theme.view.ATECheckBox
android:id="@+id/cb_is_audio"
android:layout_width="wrap_content"

Loading…
Cancel
Save