Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
vit9696 committed May 4, 2018
1 parent d666ca1 commit 0438dbb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion UEFIDump/uefidump_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ int main(int argc, char *argv[])
return (uefidumper.dump(buffer, UString(argv[1])) != U_SUCCESS);
}

std::cout << "UEFIDump 0.1.7" << std::endl << std::endl
std::cout << "UEFIDump 0.1.8" << std::endl << std::endl
<< "Usage: UEFIDump imagefile" << std::endl;
return 0;
}
4 changes: 2 additions & 2 deletions UEFIExtract/uefiextract_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,12 @@ int main(int argc, char *argv[])
}
}
// If parameters are different, show version and usage information
std::cout << "UEFIExtract 0.13.6" << std::endl << std::endl
std::cout << "UEFIExtract 0.13.7" << std::endl << std::endl
<< "Usage: UEFIExtract imagefile - generate report and dump only leaf tree items into .dump folder." << std::endl
<< " UEFIExtract imagefile all - generate report and dump all tree items." << std::endl
<< " UEFIExtract imagefile dump - only generate dump, no report needed." << std::endl
<< " UEFIExtract imagefile report - only generate report, no dump needed." << std::endl
<< " UEFIExtract imagefile GUID_1 GUID_2 ... GUID_31 - dump only FFS file(s) with specific GUID(s), without report." << std::endl
<< "Return value is a bit mask where 0 at position N means that file with GUID_N was found and unpacked, 1 otherwise." << std::endl;
return 1;
}
}
2 changes: 1 addition & 1 deletion UEFIFind/uefifind_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ int main(int argc, char *argv[])
return U_SUCCESS;
}
else {
std::cout << "UEFIFind 0.10.11" << std::endl << std::endl <<
std::cout << "UEFIFind 0.10.12" << std::endl << std::endl <<
"Usage: UEFIFind {header | body | all} {list | count} pattern imagefile" << std::endl <<
" or UEFIFind file patternsfile imagefile" << std::endl;
return U_INVALID_PARAMETER;
Expand Down
2 changes: 1 addition & 1 deletion UEFITool/uefitool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
UEFITool::UEFITool(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::UEFITool),
version(tr("NE alpha 48"))
version(tr("NE alpha 49"))
{
clipboard = QApplication::clipboard();

Expand Down

0 comments on commit 0438dbb

Please sign in to comment.