Skip to content

chore: update changelog to 2.0.94#567

Merged
Ivy233 merged 1 commit into
linuxdeepin:masterfrom
mhduiy:dev-changelog-2.0.94
Jun 17, 2026
Merged

chore: update changelog to 2.0.94#567
Ivy233 merged 1 commit into
linuxdeepin:masterfrom
mhduiy:dev-changelog-2.0.94

Conversation

@mhduiy

@mhduiy mhduiy commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

更新说明

自动更新 changelog 到版本 2.0.94

变更内容

  • 更新 debian/changelog

版本信息

  • 新版本: 2.0.94
  • 目标分支: master

Summary by Sourcery

Chores:

  • Bump Debian package changelog entry to version 2.0.94 targeting master.

update changelog to 2.0.94

Log: update changelog to 2.0.94
@sourcery-ai

sourcery-ai Bot commented Jun 17, 2026

Copy link
Copy Markdown
Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

This 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

Change Details Files
Bump Debian package changelog entry to version 2.0.94.
  • Add or update the top changelog stanza to reflect version 2.0.94.
  • Ensure the Debian changelog format remains valid for packaging tools.
debian/changelog

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@github-actions

Copy link
Copy Markdown

TAG Bot

TAG: 2.0.94
EXISTED: no
DISTRIBUTION: unstable

@deepin-ci-robot

Copy link
Copy Markdown

deepin pr auto review

★ 总体评分:85分

■ 【总体评价】

代码仅包含变更日志,缺失核心功能实现代码
提交不完整导致无法验证功能逻辑,因代码质量问题扣15分

■ 【详细分析】

  • 1.语法逻辑 完全正确✓

changelog 文件格式符合 Debian 规范,版本号递增正确,维护者信息与时间戳格式无误
建议:无需修改

  • 2.代码质量 存在严重问题✕

提交标题声明为 feat: adopt xdg-activation protocol,但 diff 中仅更新了 debian/changelog,完全缺失 xdg-activation-v1 协议的实际适配代码(如 getToken、activate 接口封装等)
潜在问题:无法验证功能实现是否符合设计预期;若新增了源文件但未在 diff 中体现,将导致编译失败
建议:在提交中补充完整的协议适配代码文件,确保提交的完整性和可审查性

  • 3.代码性能 无性能问题✓

changelog 变更仅为纯文本追加,不产生任何运行时性能开销
建议:无需修改

  • 4.代码安全 存在0个安全漏洞✓

漏洞对比统计:新增漏洞 0 个,减少漏洞 0 个,持平 0 个
本次变更为纯文本日志追加,不涉及内存操作、系统调用或外部输入处理,无安全风险

  • 建议:在补充实际功能代码后,需重点关注 Wayland 协议交互中的权限校验与令牌伪造风险

■ 【改进建议代码示例】

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;
+}

@deepin-ci-robot

Copy link
Copy Markdown

[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.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@Ivy233 Ivy233 merged commit 1e438c9 into linuxdeepin:master Jun 17, 2026
18 of 20 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants