Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Commit

Permalink
Adjust text and fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
xforce committed May 19, 2019
1 parent a53530d commit f518046
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 0 additions & 2 deletions libs/python35/BUILD
Expand Up @@ -25,8 +25,6 @@ cc_binary(
"//libs/external-file-loader:external-file-loader",
"//third_party:python",
"//third_party:ksignals",
# "@openssl//:ssl",
# "@openssl//:crypto",
] + select({
":internal": [
"//libs/internal/debuggable:debuggable",
Expand Down
7 changes: 4 additions & 3 deletions libs/python35/src/main.cc
Expand Up @@ -120,10 +120,11 @@ BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserv

if (std::lexicographical_compare(current_version, current_version + 3,
latest_version, latest_version + 3)) {
std::string msg =
"A new version (" + version_str + ") is available for download.\n\n";
std::string msg = "Verion " + version_str + " of "
+ VER_FILE_DESCRIPTION_STR
+ " is available for download.\n\n";
msg.append("Do you want to go to the release page on GitHub?\n(THIS IS "
"HIGHLY RECOMMENDED!!");
"HIGHLY RECOMMENDED!!!)");

if (MessageBoxA(NULL, msg.c_str(), VER_FILE_DESCRIPTION_STR,
MB_ICONQUESTION | MB_YESNO | MB_SYSTEMMODAL)
Expand Down
9 changes: 9 additions & 0 deletions third_party/BUILD
Expand Up @@ -33,3 +33,12 @@ cc_library(
],
visibility = ["//visibility:public"],
)

cc_library(
name = "json",
hdrs = glob(["json/single_include/json.hpp"]),
includes = [
"json/single_include",
],
visibility = ["//visibility:public"],
)

0 comments on commit f518046

Please sign in to comment.