-
Notifications
You must be signed in to change notification settings - Fork 40
pick develop/eagle to master #567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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)优点:
建议:
总体建议:
这些改进建议旨在提高代码的质量、性能和可维护性。建议在实施这些改进时,先进行小范围测试,确保不会引入新的问题。 |
|
[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 |
|
/forcemerge |
|
This pr force merged! (status: unstable) |
pick develop/eagle to master