更新版本号,更新编译依赖。
This commit is contained in:
parent
3777e48485
commit
934a7e1720
|
@ -1,3 +1,19 @@
|
|||
ukui-search (3.22.2.0-ok0~1129) yangtze; urgency=medium
|
||||
|
||||
* Issues: NULL
|
||||
* 任务号:无
|
||||
* 其他改动:
|
||||
- 增加搜索应用插件动态注册、注销、排序功能.
|
||||
- 优化文件索引操作.
|
||||
- 增加文件内容模糊搜索功能.
|
||||
* 其他改动说明:
|
||||
- 搜索应用插件的注册、注销与排序目前能通过命令行实现。
|
||||
- 取消了文件索引服务的子进程,优化了文件索引的资源占用,索引
|
||||
服务暂停后再启动采取增量更新模式。
|
||||
- 增加了一个gsettings,用于设置文本内容的搜索模式。
|
||||
|
||||
-- zhangpengfei <zhangpengfei@kylinos.cn> Tue, 29 Nov 2022 14:47:34 +0800
|
||||
|
||||
ukui-search (3.22.1.0-ok1~1122) yangtze; urgency=medium
|
||||
|
||||
* 更新版本号
|
||||
|
|
|
@ -27,7 +27,8 @@ Build-Depends: debhelper-compat (=12),
|
|||
libukui-appwidget-manager-dev,
|
||||
libukui-appwidget-provider-dev,
|
||||
libukui-appwidget-qmlplugin0,
|
||||
qml-module-org-ukui-stylehelper
|
||||
qml-module-org-ukui-stylehelper,
|
||||
qtdeclarative5-dev
|
||||
Standards-Version: 4.5.0
|
||||
Rules-Requires-Root: no
|
||||
Homepage: https://www.ukui.org/
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
From: iaom <zhangpengfei@kylinos.cn>
|
||||
Date: Tue, 29 Nov 2022 14:55:37 +0800
|
||||
Subject: =?utf-8?b?5pu05paw54mI5pys5Y+377yM5pu05paw57yW6K+R5L6d6LWW44CC?=
|
||||
|
||||
---
|
||||
frontend/view/result-view-delegate.cpp | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/frontend/view/result-view-delegate.cpp b/frontend/view/result-view-delegate.cpp
|
||||
index 2e151a7..07e8a34 100644
|
||||
--- a/frontend/view/result-view-delegate.cpp
|
||||
+++ b/frontend/view/result-view-delegate.cpp
|
||||
@@ -17,7 +17,7 @@ void ResultViewDelegate::setSearchKeyword(const QString ®FindKeyWords)
|
||||
QSize ResultViewDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const
|
||||
{
|
||||
QSize size = QStyledItemDelegate::sizeHint(option,index);
|
||||
- size.setHeight(size.height() + 10);
|
||||
+ size.setHeight(size.height() + 50);
|
||||
return size;
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
0001-.patch
|
Loading…
Reference in New Issue