mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-13 06:34:42 -04:00
Version 0.18.8
- messages windows scrolls to bottom after showMessages() call - hexadecimal numbers have 0x prefix - error messages are more human-friendly - added various checks for data inside paddings and volume free space - flash chip IDs from VSCC table of descriptor region showed in information window
This commit is contained in:
parent
af63fe9852
commit
aa8f912c4f
6 changed files with 127 additions and 79 deletions
|
@ -70,7 +70,14 @@ QString itemSubtypeToQString(const UINT8 type, const UINT8 subtype)
|
|||
else
|
||||
return QObject::tr("Unknown");
|
||||
case Types::Padding:
|
||||
return "";
|
||||
if (subtype == Subtypes::ZeroPadding)
|
||||
return QObject::tr("0x00s");
|
||||
else if (subtype == Subtypes::OnePadding)
|
||||
return QObject::tr("0xFFs");
|
||||
else if (subtype == Subtypes::DataPadding)
|
||||
return QObject::tr("Non-UEFI data");
|
||||
else
|
||||
return "";
|
||||
case Types::Volume:
|
||||
if (subtype == Subtypes::BootVolume)
|
||||
return QObject::tr("Boot");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue