Skip to content

chore: update changelog to 6.1.96#3314

Merged
deepin-bot[bot] merged 1 commit into
linuxdeepin:masterfrom
mhduiy:dev-changelog-6.1.96
Jun 24, 2026
Merged

chore: update changelog to 6.1.96#3314
deepin-bot[bot] merged 1 commit into
linuxdeepin:masterfrom
mhduiy:dev-changelog-6.1.96

Conversation

@mhduiy

@mhduiy mhduiy commented Jun 24, 2026

Copy link
Copy Markdown
Contributor

更新说明

自动更新 changelog 到版本 6.1.96

变更内容

  • 更新 debian/changelog

版本信息

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

Summary by Sourcery

Documentation:

  • Document release 6.1.96 in debian/changelog.

update changelog to 6.1.96

Log: update changelog to 6.1.96
@github-actions

Copy link
Copy Markdown

TAG Bot

TAG: 6.1.96
EXISTED: no
DISTRIBUTION: unstable

@sourcery-ai

sourcery-ai Bot commented Jun 24, 2026

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

Reviewer's Guide

Updates the Debian packaging changelog to bump the package version to 6.1.96 on the master branch.

File-Level Changes

Change Details Files
Bump Debian changelog entry to version 6.1.96.
  • Add or update the latest changelog stanza to reflect version 6.1.96.
  • Ensure changelog metadata (e.g., distribution/branch target) matches master.
  • Document that this is an automated changelog update for the new release.
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.

@deepin-ci-robot

Copy link
Copy Markdown

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: 18202781743, 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

@mhduiy

mhduiy commented Jun 24, 2026

Copy link
Copy Markdown
Contributor Author

/forcemerge

@deepin-ci-robot

Copy link
Copy Markdown

deepin pr auto review

★ 总体评分:100分

■ 【总体评价】

代码仅更新了debian/changelog,准确记录了移除不可靠暗色壁纸检测逻辑等修复内容
逻辑正确且无任何安全风险,得满分

■ 【详细分析】

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

changelog文件格式完全符合Debian打包规范,版本号递增正确,维护者信息和日期格式无误

  • 2.代码质量(良好)✓

日志条目分类清晰,使用fix、chore等标准前缀标识了不同类型的变更,便于追踪和阅读

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

纯文本日志变更,不涉及任何运行时代码,对系统性能无影响

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

漏洞对比统计:新增漏洞 0 个,减少漏洞 0 个,持平 0 个
本次变更仅为纯文本的变更日志更新,不包含任何可执行逻辑、文件操作或网络请求,无攻击面

  • 建议:继续保持规范的变更记录习惯

■ 【改进建议代码示例】

// 针对changelog中提及移除的"2x2缩略图暗色检测"逻辑,提供一种更可靠的替代实现方案
// 使用完整的壁纸图像数据进行像素亮度分析,而非依赖极低分辨率的缩略图
#include <QImage>
#include <QRgb>

bool isWallpaperDark(const QImage &fullWallpaperImage) {
    if (fullWallpaperImage.isNull()) {
        return false;
    }

    // 降采样以提升性能,但保证最小分辨率(如 64x64)以获取准确统计
    QImage scaledImage = fullWallpaperImage.scaled(64, 64, Qt::KeepAspectRatio, Qt::FastTransformation);
    
    long long totalBrightness = 0;
    const int pixelCount = scaledImage.width() * scaledImage.height();
    
    if (pixelCount == 0) {
        return false;
    }

    for (int y = 0; y < scaledImage.height(); ++y) {
        const QRgb *line = reinterpret_cast<const QRgb*>(scaledImage.constScanLine(y));
        if (!line) {
            continue;
        }
        for (int x = 0; x < scaledImage.width(); ++x) {
            // 计算相对亮度 (ITU-R BT.601)
            QRgb pixel = line[x];
            totalBrightness += 0.299 * qRed(pixel) + 0.587 * qGreen(pixel) + 0.114 * qBlue(pixel);
        }
    }

    // 判断平均亮度是否低于暗色阈值
    const double averageBrightness = static_cast<double>(totalBrightness) / pixelCount;
    const double darkThreshold = 85.0; 
    
    return averageBrightness < darkThreshold;
}

@deepin-bot

deepin-bot Bot commented Jun 24, 2026

Copy link
Copy Markdown

This pr force merged! (status: blocked)

@deepin-bot deepin-bot Bot merged commit 1f2af61 into linuxdeepin:master Jun 24, 2026
19 of 21 checks passed
@deepin-bot

deepin-bot Bot commented Jun 24, 2026

Copy link
Copy Markdown

TAG Bot

Tag created successfully

📋 Tag Details
  • Tag Name: 6.1.96
  • Tag SHA: 7321eb8a8d7107932b3f9ae1c96b63fa9598d048
  • Commit SHA: 1f2af61bdf3ece9e258ca6122e091a0daf614d45
  • Tag Message:
    Release dde-control-center 6.1.96
    
    
  • Tagger:
    • Name: mhduiy
  • Distribution: unstable

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