mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-13 14:44:47 -04:00
Version 0.19.1
- hex numbers are printed uppercase - empty paddings are shown as Empty(0x00) or Empty(0xFF) - volume size is determined by FvLength header field only - spaces are now allowed for hex pattern search - another messages clean-up
This commit is contained in:
parent
262e81720c
commit
a400c2ef8f
6 changed files with 125 additions and 126 deletions
|
@ -17,7 +17,7 @@
|
|||
UEFITool::UEFITool(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
ui(new Ui::UEFITool),
|
||||
version(tr("0.19.0"))
|
||||
version(tr("0.19.1"))
|
||||
{
|
||||
clipboard = QApplication::clipboard();
|
||||
|
||||
|
@ -149,7 +149,7 @@ void UEFITool::search()
|
|||
int index = searchDialog->ui->tabWidget->currentIndex();
|
||||
if (index == 0) { // Hex pattern
|
||||
searchDialog->ui->hexEdit->setFocus();
|
||||
QByteArray pattern = searchDialog->ui->hexEdit->text().toLatin1();
|
||||
QByteArray pattern = searchDialog->ui->hexEdit->text().toLatin1().replace(" ", "");
|
||||
if (pattern.isEmpty())
|
||||
return;
|
||||
UINT8 mode;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue