23 lines
691 B
PowerShell
23 lines
691 B
PowerShell
# Function to get the latest WAU available version on Github
|
|
|
|
function Get-WAUAvailableVersion
|
|
{
|
|
# Get Github latest version
|
|
if ($WAUConfig.WAU_UpdatePrerelease -eq 1)
|
|
{
|
|
# Log
|
|
Write-ToLog -LogMsg 'WAU AutoUpdate Pre-release versions is Enabled' -LogColor 'Cyan'
|
|
|
|
# Get latest pre-release info
|
|
$WAUurl = 'https://api.github.com/repos/Romanitho/Winget-AutoUpdate/releases'
|
|
}
|
|
else
|
|
{
|
|
# Get latest stable info
|
|
$WAUurl = 'https://api.github.com/repos/Romanitho/Winget-AutoUpdate/releases/latest'
|
|
}
|
|
|
|
# Return version
|
|
return ((Invoke-WebRequest -Uri $WAUurl -UseBasicParsing | ConvertFrom-Json)[0].tag_name).Replace('v', '')
|
|
}
|