Increment version

This commit is contained in:
vit9696 2018-05-08 21:49:11 +03:00
parent f507d71ead
commit 63e40c058a
4 changed files with 10 additions and 4 deletions

View file

@ -14,8 +14,14 @@ build_script:
deploy:
provider: GitHub
force_update: true
auth_token:
secure: zSJnpSnrKY1NO5RPVBaD/uq7UPyc+GW7ecjPFqEMsLjtnd6H+iNfROdoeuxJgt5T
artifact: /dist\\.*\.zip/
artifact: Binaries
on:
appveyor_repo_tag: true
artifacts:
- path: dist\**\*.zip
name: Binaries

View file

@ -36,7 +36,7 @@ int main(int argc, char *argv[])
result = w.patchFromFile(a.arguments().at(1), patches);
}
else {
std::cout << "UEFIPatch 0.3.14 - UEFI image file patching utility" << std::endl << std::endl <<
std::cout << "UEFIPatch 0.3.15 - UEFI image file patching utility" << std::endl << std::endl <<
"Usage: UEFIPatch image_file [patches.txt]" << std::endl << std::endl <<
"Patches will be read from patches.txt file by default\n";
return ERR_SUCCESS;

View file

@ -28,7 +28,7 @@ int main(int argc, char *argv[])
QStringList args = a.arguments();
if (args.length() < 5) {
std::cout << "UEFIReplace 0.1.2 - UEFI image file replacement utility" << std::endl << std::endl <<
std::cout << "UEFIReplace 0.1.3 - UEFI image file replacement utility" << std::endl << std::endl <<
"Usage: UEFIReplace image_file guid section_type contents_file" << std::endl;
return ERR_SUCCESS;
}

View file

@ -17,7 +17,7 @@
UEFITool::UEFITool(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::UEFITool),
version(tr("0.23.1"))
version(tr("0.24.0"))
{
clipboard = QApplication::clipboard();