- Firmware update device reattachment
- Disconnect/connect with multiple devices
- udev rule extended
This commit is contained in:
Jan Käberich 2020-09-15 14:41:24 +02:00
parent 2d44201de7
commit 44124bc09e
14 changed files with 90 additions and 66 deletions

View file

@ -26,9 +26,9 @@ void DeviceLog::addLine(QString line)
if(line.contains(",CRT]")) {
color = Qt::red;
} else if(line.contains(",ERR]")) {
color = QColor("orange");
color = QColor(255, 94, 0);
} else if(line.contains(",WRN]")) {
color = Qt::darkYellow;
color = QColor(255, 174, 26);
} else if(line.contains(",DBG")) {
color = Qt::gray;
}