Public/Get-ShareX.ps1
Function Get-ShareX { <# .SYNOPSIS Returns the available ShareX versions. .DESCRIPTION Returns the available ShareX versions. .NOTES Author: Trond Eirik Haavarstein Twitter: @xenappblog .LINK https://github.com/aaronparker/Evergreen .EXAMPLE Get-ShareX Description: Returns the released ShareX version and download URI. #> [OutputType([System.Management.Automation.PSObject])] [CmdletBinding()] Param() $res = Get-FunctionResource -AppName ("$($MyInvocation.MyCommand)".Split("-"))[1] Write-Verbose -Message $res.Name # Get latest version and download latest release via GitHub API $iwcParams = @{ Uri = $res.Get.Uri ContentType = $res.Get.ContentType } $Content = Invoke-WebContent @iwcParams # Convert the returned release data into a useable object with Version, URI etc. $object = ConvertFrom-GitHubReleasesJson -Content $Content -MatchVersion $res.Get.MatchVersion Write-Output -InputObject $object } |