Skip to content

Commit be64f28

Browse files
authored
v1.4.1.1
1 parent f1fa988 commit be64f28

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

bin/NetWebView2Lib.dll

0 Bytes
Binary file not shown.

bin/RegCleaner.au3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ _GUICtrlListView_SetExtendedListViewStyle($idListView, BitOR($LVS_EX_CHECKBOXES,
1919
_GUICtrlListView_SetColumnWidth($idListView, 0, $iWidth * 0.6)
2020
_GUICtrlListView_SetColumnWidth($idListView, 1, $iWidth * 0.4)
2121
$iHeight += 20
22-
Local $idStatus = GUICtrlCreateLabel("Scanning registry... please wait...", 10, $iHeight, $iWidth - 210 - 10, 20)
22+
Local $idStatus = GUICtrlCreateLabel("Scanning registry... please wait...", 10, $iHeight, $iWidth - 210, 80)
2323
$iHeight += 20
2424
Local $idBtnCancel = GUICtrlCreateButton("Cancel", $iWidth - 100, $iHeight, 100, 40)
2525
Local $idBtnDelete = GUICtrlCreateButton("Delete Selected", $iWidth - 210, $iHeight, 100, 40)

src/WebViewManager.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using Microsoft.Web.WebView2.Core;
1010
using Microsoft.Web.WebView2.WinForms;
1111

12-
// --- Version 1.4.1 ---
12+
// --- Version 1.4.1.1 ---
1313

1414
namespace NetWebView2Lib
1515
{
@@ -1377,13 +1377,13 @@ public async void GetInnerText()
13771377
// Use CleanJsString to handle escape characters and remove surrounding quotes
13781378
string cleanedText = CleanJsString(html);
13791379

1380-
// Send the result to AutoIt with the "Inner_Text|" prefix
1381-
OnMessageReceived?.Invoke("Inner_Text|" + cleanedText);
1380+
// Send the result to AutoIt with the "INNER_TEXT|" prefix
1381+
OnMessageReceived?.Invoke("INNER_TEXT|" + cleanedText);
13821382
}
13831383
catch (Exception ex)
13841384
{
13851385
// Notify AutoIt in case of an execution error
1386-
OnMessageReceived?.Invoke("ERROR|GetInnerText: " + ex.Message);
1386+
OnMessageReceived?.Invoke("ERROR|INNER_TEXT_FAILED: " + ex.Message);
13871387
}
13881388
}
13891389

0 commit comments

Comments
 (0)