5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-17 01:19:29 +08:00

[windows] Update webview2 to 91.0.992.28

This commit is contained in:
Lea Anthony 2021-10-22 20:43:35 +11:00
parent 3b1d74cf84
commit 3a8ba96cb3
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
The version of WebView2 used: 1.0.864.35 The version of WebView2 SDK used: 1.0.992.28

View File

@ -7,7 +7,7 @@ set sdk_version=%1
set native_dir="%~dp0\microsoft.web.webview2.%sdk_version%\build\native" set native_dir="%~dp0\microsoft.web.webview2.%sdk_version%\build\native"
copy "%native_dir%\include\*.h" .. >NUL copy "%native_dir%\include\*.h" .. >NUL
copy "%native_dir%\x64\WebView2Loader.dll" "..\x64" >NUL copy "%native_dir%\x64\WebView2Loader.dll" "..\x64" >NUL
@rd /S /Q "microsoft.web.webview2.%sdk_version%" @REM @rd /S /Q "microsoft.web.webview2.%sdk_version%"
del /s version.txt >nul 2>&1 del /s version.txt >nul 2>&1
echo The version of WebView2 SDK used: %sdk_version% > sdkversion.txt echo The version of WebView2 SDK used: %sdk_version% > sdkversion.txt
echo SDK updated to %sdk_version% echo SDK updated to %sdk_version%

View File

@ -5,7 +5,7 @@ import (
"github.com/leaanthony/webview2runtime" "github.com/leaanthony/webview2runtime"
) )
const MinimumRuntimeVersion string = "91.0.864.48" const MinimumRuntimeVersion string = "91.0.992.28"
type installationStatus int type installationStatus int