diff --git a/src/client/component/updater.cpp b/src/client/component/updater.cpp index 46a88d0..88e157a 100644 --- a/src/client/component/updater.cpp +++ b/src/client/component/updater.cpp @@ -22,7 +22,7 @@ #define APPVEYOR_ARTIFACT_URL(artifact) (APPVEYOR_ARTIFACT_BASE artifact APPVEYOR_ARTIFACT_SUFFIX) -#define APPVEYOR_IW6X_EXE APPVEYOR_ARTIFACT_URL("build/bin/x64/" APPVEYOR_CONFIGURATION "/s1x.exe") +#define APPVEYOR_S1X_EXE APPVEYOR_ARTIFACT_URL("build/bin/x64/" APPVEYOR_CONFIGURATION "/s1x.exe") #define APPVEYOR_VERSION_TXT APPVEYOR_ARTIFACT_URL("build/version.txt") namespace updater @@ -73,7 +73,7 @@ namespace updater void perform_update(const std::string& target) { - const auto binary = download_file_sync(APPVEYOR_IW6X_EXE); + const auto binary = download_file_sync(APPVEYOR_S1X_EXE); utils::io::write_file(target, binary); } diff --git a/src/common/utils/toast.cpp b/src/common/utils/toast.cpp index da00f9b..8d23af2 100644 --- a/src/common/utils/toast.cpp +++ b/src/common/utils/toast.cpp @@ -27,9 +27,9 @@ namespace utils return success; } - instance->setAppName(L"IW6x"); + instance->setAppName(L"S1x"); instance->setAppUserModelId( - WinToastLib::WinToast::configureAUMI(L"X Labs", L"iw6x", L"", L"20201212")); + WinToastLib::WinToast::configureAUMI(L"X Labs", L"s1x", L"", L"20201212")); WinToastLib::WinToast::WinToastError error; success = instance->initialize(&error);