diff --git a/.appveyor.yml b/.appveyor.yml index 80d9d67..0324998 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -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 + diff --git a/UEFIPatch/uefipatch_main.cpp b/UEFIPatch/uefipatch_main.cpp index 5e7ed4b..6a7e50f 100644 --- a/UEFIPatch/uefipatch_main.cpp +++ b/UEFIPatch/uefipatch_main.cpp @@ -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; diff --git a/UEFIReplace/uefireplace_main.cpp b/UEFIReplace/uefireplace_main.cpp index 6d53a2b..aae90d7 100644 --- a/UEFIReplace/uefireplace_main.cpp +++ b/UEFIReplace/uefireplace_main.cpp @@ -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; } diff --git a/uefitool.cpp b/uefitool.cpp index c2eac33..9127e87 100644 --- a/uefitool.cpp +++ b/uefitool.cpp @@ -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();