mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-26 01:48:23 +08:00
Increment version
This commit is contained in:
parent
55c567b999
commit
8d8f764e01
@ -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
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user