This commit is contained in:
kunfei
2023-03-19 20:04:06 +08:00
parent 67dd0ce187
commit 5e624f1f1a
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -11,13 +11,15 @@
* 正文出现缺字漏字、内容缺失、排版错乱等情况,有可能是净化规则或简繁转换出现问题。
* 漫画源看书显示乱码,**阅读与其他软件的源并不通用**,请导入阅读的支持的漫画源!
**2023/03/17**
**2023/03/19**
* 修复书签界面删除条目后界面错乱bug
* 一些带有搜索框的界面自动隐藏软键盘
* 本地书籍和远程书籍导入界面支持压缩包
* 内置了两个直链上传配置,可以通过导入默认切换
* 修复无法导入不在数组内的单个书源的本地文件
* getVariable() 默认返回 ""
* 其中一些更新由 Xwite, Horis提供
**2023/03/14**
@@ -28,7 +28,7 @@ interface BaseBook : RuleDataInterface {
}
fun getCustomVariable(): String {
return getVariable("custom") ?: ""
return getVariable("custom")
}
override fun putBigVariable(key: String, value: String?) {