From a4ea326a62a4e85a47f447746e0c00aa24b96ddc Mon Sep 17 00:00:00 2001 From: daxgames Date: Wed, 19 Apr 2023 13:44:11 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Update=20dependencies?= =?UTF-8?q?=20(git-for-windows=20v2.40.0.windows.1,=20clink=20v1.4.24,=20c?= =?UTF-8?q?link-completions=20v0.4.7)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vendor/sources.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vendor/sources.json b/vendor/sources.json index f4c3c33..00f8378 100644 --- a/vendor/sources.json +++ b/vendor/sources.json @@ -1,13 +1,13 @@ [ { "name": "git-for-windows", - "version": "2.39.0.windows.2", - "url": "https://github.com/git-for-windows/git/releases/download/v2.39.0.windows.2/PortableGit-2.39.0.2-64-bit.7z.exe" + "version": "2.40.0.windows.1", + "url": "https://github.com/git-for-windows/git/releases/download/v2.40.0.windows.1/PortableGit-2.40.0-64-bit.7z.exe" }, { "name": "clink", - "version": "1.4.10", - "url": "https://github.com/chrisant996/clink/releases/download/v1.4.10/clink.1.4.10.45c041.zip" + "version": "1.4.24", + "url": "https://github.com/chrisant996/clink/releases/download/v1.4.24/clink.1.4.24.688975.zip" }, { "name": "conemu-maximus5", @@ -16,7 +16,7 @@ }, { "name": "clink-completions", - "version": "0.4.4", - "url": "https://github.com/vladimir-kotikov/clink-completions/archive/v0.4.4.zip" + "version": "0.4.7", + "url": "https://github.com/vladimir-kotikov/clink-completions/archive/v0.4.7.zip" } ] From 8d916a444676746ccb903ddb144aae3315b44933 Mon Sep 17 00:00:00 2001 From: "Dax T. Games" Date: Thu, 9 Nov 2023 04:58:26 -0800 Subject: [PATCH 2/2] remove env refresh race condition --- launcher/src/CmderLauncher.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/launcher/src/CmderLauncher.cpp b/launcher/src/CmderLauncher.cpp index 9f033c3..3fe20c5 100644 --- a/launcher/src/CmderLauncher.cpp +++ b/launcher/src/CmderLauncher.cpp @@ -469,9 +469,6 @@ void StartCmder(std::wstring path = L"", bool is_single_mode = false, std::wstr MessageBox(NULL, _T("Unable to create the ConEmu process!"), _T("Error"), MB_OK); return; } - - LRESULT lr = SendMessageTimeout(HWND_BROADCAST, WM_SETTINGCHANGE, 0, (LPARAM)"Environment", SMTO_ABORTIFHUNG | SMTO_NOTIMEOUTIFNOTHUNG, 5000, NULL); - lr = SendMessageTimeout(HWND_BROADCAST, WM_SETTINGCHANGE, 0, (LPARAM)L"Environment", SMTO_ABORTIFHUNG | SMTO_NOTIMEOUTIFNOTHUNG, 5000, NULL); // For Windows >= 8 } bool IsUserOnly(std::wstring opt)