mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-12 22:26:13 -04:00
Version 0.18.9
- padding types changed to Empty and NonEmpty - added apriori files detection and parsing - added depex sections parsing
This commit is contained in:
parent
db2ef69901
commit
28b985b1f1
6 changed files with 235 additions and 22 deletions
|
@ -71,11 +71,11 @@ QString itemSubtypeToQString(const UINT8 type, const UINT8 subtype)
|
|||
return QObject::tr("Unknown");
|
||||
case Types::Padding:
|
||||
if (subtype == Subtypes::ZeroPadding)
|
||||
return QObject::tr("0x00s");
|
||||
return QObject::tr("Empty(0)");
|
||||
else if (subtype == Subtypes::OnePadding)
|
||||
return QObject::tr("0xFFs");
|
||||
return QObject::tr("Empty(1)");
|
||||
else if (subtype == Subtypes::DataPadding)
|
||||
return QObject::tr("Non-UEFI data");
|
||||
return QObject::tr("NonEmpty");
|
||||
else
|
||||
return "";
|
||||
case Types::Volume:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue