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:
Nikolaj Schlej 2014-11-02 11:27:54 +01:00
parent db2ef69901
commit 28b985b1f1
6 changed files with 235 additions and 22 deletions

View file

@ -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: