pick develop/eagle to master #567
Merged
deepin-bot[bot] merged 2 commits intolinuxdeepin:masterfrom Dec 1, 2025
Merged
Conversation
-- Add extra information display logic. Log: add feature for GPU. Task: https://pms.uniontech.com/task-view-378987.html
Fixed refresh rate errors and spelling mistakes in Device Manager → Display → Supported Resolutions. Now accurately obtains resolutions from xrandr output (keeping only integer values) instead of potentially problematic hwinfo detection. pick from: linuxdeepin@496262e Log: Fix display resolution detection method Bug: https://pms.uniontech.com/bug-view-325731.html Change-Id: I377caf0def3455191a3189eac734a608443b47e6
deepin pr auto review我来对这个git diff进行代码审查:
// 添加了版本信息的处理
constexpr char kVersion[] { "Version" };优点:
建议:
void DeviceGpu::setGpuInfoByCustom(const QMap<QString, QString> &mapInfo)
{
QMap<QString, QString>::const_iterator it = mapInfo.constBegin();
for (; it != mapInfo.constEnd(); ++it) {
if (it.key() == "Name") {
m_Name = it.value();
} else if (it.key() == "Vendor") {
m_Vendor = it.value();
} // ... 其他字段处理
}
}优点:
建议:
QMap<QString, QStringList> DeviceMonitor::getMonitorResolutionMap(QString rawText, QString key, bool round)优点:
建议:
QtConcurrent::run([=](){
QThread::msleep(700);
emit mp_DeviceWidget->itemClicked(mp_DeviceWidget->currentIndex());
});优点:
建议:
bool DeviceBaseInfo::isValueValid(const QString &value)优点:
建议:
void ThreadExecXrandr::loadXrandrVerboseInfo(QList<QMap<QString, QString>> &lstMap)优点:
建议:
总体建议:
这些改进建议旨在提高代码的质量、性能和可维护性。建议在实施这些改进时,先进行小范围测试,确保不会引入新的问题。 |
lzwind
approved these changes
Dec 1, 2025
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: add-uos, lzwind 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 |
Contributor
Author
|
/forcemerge |
Contributor
|
This pr force merged! (status: unstable) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
pick develop/eagle to master