update changelog

This commit is contained in:
yangmin 2023-11-17 10:08:07 +08:00 committed by openkylin-cibot
parent 4890aa56e6
commit ca954abd6e
4 changed files with 59 additions and 1 deletions

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
ukui-biometric-auth (4.10.0.0-ok2~1117) nile; urgency=medium
* BUG号
* 需求号:无
* 其他修改说明:处理编译依赖问题
-- Yang Min <yangmin@kylinos.cn> Fri, 17 Nov 2023 10:06:56 +0800
ukui-biometric-auth (4.10.0.0-ok1~1116) nile; urgency=medium ukui-biometric-auth (4.10.0.0-ok1~1116) nile; urgency=medium
* BUG号 * BUG号

1
debian/control vendored
View File

@ -18,7 +18,6 @@ Build-Depends: cmake (>= 2.6),
libkysdk-sysinfo-dev, libkysdk-sysinfo-dev,
libukui-log4qt-dev, libukui-log4qt-dev,
libssl-dev, libssl-dev,
libkf5windowsystem-dev,
liblightdm-qt5-3-dev liblightdm-qt5-3-dev
Standards-Version: 4.5.0 Standards-Version: 4.5.0
Rules-Requires-Root: no Rules-Requires-Root: no

View File

@ -0,0 +1,50 @@
From: yangmin <winner_yangmin@163.com>
Date: Fri, 17 Nov 2023 10:08:07 +0800
Subject: update changelog
---
polkit-agent/CMakeLists.txt | 3 +--
polkit-agent/src/mainwindow.cpp | 2 --
2 files changed, 1 insertion(+), 4 deletions(-)
diff --git a/polkit-agent/CMakeLists.txt b/polkit-agent/CMakeLists.txt
index c5065d1..fa7768e 100644
--- a/polkit-agent/CMakeLists.txt
+++ b/polkit-agent/CMakeLists.txt
@@ -6,7 +6,6 @@ pkg_check_modules(KDKINFO REQUIRED kysdk-sysinfo)
find_package(PolkitQt5-1 REQUIRED 0.103.0)
find_package(Qt5 COMPONENTS Core Widgets DBus X11Extras Xml Network Svg)
-find_package(KF5WindowSystem)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTORCC ON)
@@ -60,7 +59,7 @@ set(polkit_SRCS
add_executable(polkit-ukui-authentication-agent-1 ${polkit_SRCS})
target_link_libraries(polkit-ukui-authentication-agent-1
- Qt5::Core Qt5::Widgets Qt5::DBus ${EXTRA_LIBS} KF5::WindowSystem
+ Qt5::Core Qt5::Widgets Qt5::DBus ${EXTRA_LIBS}
${POLKITQT-1_LIBRARIES}
BioAuthWidgets
-lrt
diff --git a/polkit-agent/src/mainwindow.cpp b/polkit-agent/src/mainwindow.cpp
index c72a01d..bbc327f 100644
--- a/polkit-agent/src/mainwindow.cpp
+++ b/polkit-agent/src/mainwindow.cpp
@@ -30,7 +30,6 @@
#include <QFontMetrics>
#include <QtMath>
#include <QAbstractItemView>
-#include <KWindowSystem>
#include <fcntl.h>
#include <unistd.h>
#include <sys/types.h>
@@ -62,7 +61,6 @@ MainWindow::MainWindow(QWidget *parent) :
m_nCurLockMin(0),
isbioSuccess(false)
{
- KWindowSystem::setState(this->winId(), NET::SkipTaskbar | NET::SkipPager);
ui->setupUi(this);
setWindowTitle(tr("Authentication"));
setWindowFlags(Qt::WindowCloseButtonHint | Qt::WindowStaysOnTopHint);

View File

@ -1 +1,2 @@
0001-update-change.patch 0001-update-change.patch
0002-update-changelog.patch