diff --git a/Sources/Winget-AutoUpdate/Winget-Upgrade.ps1 b/Sources/Winget-AutoUpdate/Winget-Upgrade.ps1 index 8cbb8e4..031a7f0 100644 --- a/Sources/Winget-AutoUpdate/Winget-Upgrade.ps1 +++ b/Sources/Winget-AutoUpdate/Winget-Upgrade.ps1 @@ -13,6 +13,9 @@ $null = cmd /c '' [Console]::OutputEncoding = [System.Text.Encoding]::UTF8 $Script:ProgressPreference = 'SilentlyContinue' +#Set GitHub Repo +$Script:GitHub_Repo = "Winget-AutoUpdate" + #Log initialization $LogFile = "$WorkingDir\logs\updates.log" diff --git a/Sources/Winget-AutoUpdate/functions/Get-WAUAvailableVersion.ps1 b/Sources/Winget-AutoUpdate/functions/Get-WAUAvailableVersion.ps1 index 24b289e..b07eac7 100644 --- a/Sources/Winget-AutoUpdate/functions/Get-WAUAvailableVersion.ps1 +++ b/Sources/Winget-AutoUpdate/functions/Get-WAUAvailableVersion.ps1 @@ -10,12 +10,12 @@ function Get-WAUAvailableVersion { try { #Get latest pre-release info - $WAUurl = 'https://api.github.com/repos/Romanitho/Winget-AutoUpdate/releases' + $WAUurl = "https://api.github.com/repos/Romanitho/$($GitHub_Repo)/releases" $WAUAvailableVersion = ((Invoke-WebRequest $WAUurl -UseBasicParsing | ConvertFrom-Json)[0].tag_name).Replace("v", "") } catch { - $url = "https://github.com/Romanitho/Winget-AutoUpdate/releases" - $link = ((Invoke-WebRequest $url -UseBasicParsing).Links.href -match "/Winget-AutoUpdate/releases/tag/v*")[0] + $url = "https://github.com/Romanitho/$($GitHub_Repo)/releases" + $link = ((Invoke-WebRequest $url -UseBasicParsing).Links.href -match "/$($GitHub_Repo)/releases/tag/v*")[0] $WAUAvailableVersion = $link.Trim().Split("v")[-1] } @@ -24,12 +24,12 @@ function Get-WAUAvailableVersion { try { #Get latest stable info - $WAUurl = 'https://api.github.com/repos/Romanitho/Winget-AutoUpdate/releases/latest' + $WAUurl = "https://api.github.com/repos/Romanitho/$($GitHub_Repo)/releases/latest" $WAUAvailableVersion = ((Invoke-WebRequest $WAUurl -UseBasicParsing | ConvertFrom-Json)[0].tag_name).Replace("v", "") } catch { - $url = "https://github.com/Romanitho/Winget-AutoUpdate/releases/latest" - $link = ((Invoke-WebRequest $url -UseBasicParsing).Links.href -match "/Winget-AutoUpdate/releases/tag/v*")[0] + $url = "https://github.com/Romanitho/$($GitHub_Repo)/releases/latest" + $link = ((Invoke-WebRequest $url -UseBasicParsing).Links.href -match "/$($GitHub_Repo)/releases/tag/v*")[0] $WAUAvailableVersion = $link.Trim().Split("v")[-1] } diff --git a/Sources/Winget-AutoUpdate/functions/Update-WAU.ps1 b/Sources/Winget-AutoUpdate/functions/Update-WAU.ps1 index f294bb9..b91ae3e 100644 --- a/Sources/Winget-AutoUpdate/functions/Update-WAU.ps1 +++ b/Sources/Winget-AutoUpdate/functions/Update-WAU.ps1 @@ -1,6 +1,6 @@ function Update-WAU { - $OnClickAction = "https://github.com/Romanitho/Winget-AutoUpdate/releases" + $OnClickAction = "https://github.com/Romanitho/$($GitHub_Repo)/releases" $Button1Text = $NotifLocale.local.outputs.output[10].message #Send available update notification