chore: update changelog to 2.0.94#567
Conversation
update changelog to 2.0.94 Log: update changelog to 2.0.94
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR updates the Debian changelog to bump the package version to 2.0.94 on the master branch, with no code or functional changes. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
TAG Bot TAG: 2.0.94 |
deepin pr auto review★ 总体评分:85分■ 【总体评价】
■ 【详细分析】
■ 【改进建议代码示例】 diff --git a/debian/changelog b/debian/changelog
index 3fd9271a..1cd716de 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dde-network-core (2.0.94) unstable; urgency=medium
+
+ * feat: adopt xdg-activation protocol for Treeland dock plugin
+
+ -- zhangkun <zhangkun2@uniontech.com> Wed, 17 Jun 2026 16:17:47 +0800
+
dde-network-core (2.0.93) unstable; urgency=medium
* feat(vpn): Add dependency libpolkit-qt6-1-dev in control
diff --git a/src/xdg_activation_wrapper.cpp b/src/xdg_activation_wrapper.cpp
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/src/xdg_activation_wrapper.cpp
@@ -0,0 +1,25 @@
+#include "xdg_activation_wrapper.h"
+#include <wayland-client.h>
+
+XdgActivationWrapper::XdgActivationWrapper(struct wl_display *display)
+ : m_display(display)
+ , m_xdgActivation(nullptr)
+{
+}
+
+XdgActivationWrapper::~XdgActivationWrapper()
+{
+ if (m_xdgActivation) {
+ zxdg_activation_v1_destroy(m_xdgActivation);
+ m_xdgActivation = nullptr;
+ }
+}
+
+bool XdgActivationWrapper::initialize()
+{
+ if (!m_display) return false;
+ m_xdgActivation = zxdg_activation_v1_get_xdg_activation_v1(m_display);
+ if (!m_xdgActivation) return false;
+ return true;
+} |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: Ivy233, mhduiy The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
更新说明
自动更新 changelog 到版本 2.0.94
变更内容
版本信息
Summary by Sourcery
Chores: