Skip to content

Commit ba99316

Browse files
committed
1.2.2
1 parent c2e6f72 commit ba99316

File tree

7 files changed

+908
-801
lines changed

7 files changed

+908
-801
lines changed

.clang-format

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
BasedOnStyle: LLVM
1+
BasedOnStyle: Microsoft
22
ColumnLimit: 120
3-
# Don't screw up my includes fucker
3+
# Don't screw up the includes
44
IncludeBlocks: Preserve
55
SortIncludes: Never
6+
# C++ style pointer alignment
7+
PointerAlignment: Left

W11Boost/AppxSupport.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ auto install_appx_support() -> int {
1818
"https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle");
1919

2020
curl_easy_setopt(curl, CURLOPT_USERAGENT,
21-
"Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.6556.192 Safari/537.36");
21+
"Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "
22+
"Chrome/130.0.6556.192 Safari/537.36");
2223

2324
curl_easy_setopt(curl, CURLOPT_USE_SSL, (long)CURLUSESSL_ALL);
2425
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); // Required due to GitHub redirecting

0 commit comments

Comments
 (0)