This commit is contained in:
Mikael Karlsson
2024-01-24 21:25:53 +11:00
parent 6ac211a2bf
commit 47968b4219
30 changed files with 4643 additions and 2534 deletions

View File

@@ -11,7 +11,7 @@ This module handles the WPF UI
function Get-ModuleVersion
{
'3.9.3'
'3.9.5'
}
function Initialize-Window
@@ -2792,7 +2792,7 @@ function Start-DownloadFile
$proxyURI = Get-ProxyURI
if($proxyURI)
{
$wc.Proxy = $proxyURI
$wc.Proxy = [System.Net.WebProxy]::new($proxyURI)
}
try