diff --git a/automatic/origin/info b/automatic/origin/info index 961b883ce..393b86462 100644 --- a/automatic/origin/info +++ b/automatic/origin/info @@ -1 +1 @@ -"23d58e4c99cefe5d810f9f96d8fbddcf-14"|10.5.38.26728 \ No newline at end of file +"7401b24a1e9d238a7aaced15a408537a-27"|10.5.39.26720 \ No newline at end of file diff --git a/automatic/origin/origin.nuspec b/automatic/origin/origin.nuspec index e516c78b3..7375989ac 100644 --- a/automatic/origin/origin.nuspec +++ b/automatic/origin/origin.nuspec @@ -3,7 +3,7 @@ origin - 10.5.38.26728 + 10.5.39.26720 https://github.com/AdmiringWorm/chocolatey-packages/tree/master/automatic/origin AdmiringWorm, thaiphan Origin diff --git a/automatic/origin/tools/chocolateyInstall.ps1 b/automatic/origin/tools/chocolateyInstall.ps1 index f8d9a8ccb..2bcfb7bea 100644 --- a/automatic/origin/tools/chocolateyInstall.ps1 +++ b/automatic/origin/tools/chocolateyInstall.ps1 @@ -7,7 +7,7 @@ $packageArgs = @{ packageName = $env:ChocolateyPackageName url = 'https://download.dm.origin.com/origin/live/OriginSetup.exe' softwareName = 'Origin*' # Probably not needed, but we add registry keys so we keep it - checksum = '93E6C60B250D58A53144B46D1C5B79856462F0A02036A53BCA5C7F4841253DE0D47DF2FAF1C5FFD7DB4B258CE7644040EFF42EC42D9FBB700B5338DB1B363DA1' + checksum = '14449782FA5700DE658C8B868F7D95D62917D0418D02ADD4C89D175BEC18C9A9C93750CCA9D26DAD3494F93DC66F6D5CB65C9C899848F45291742CF1AE44A302' checksumType = 'sha512' destination = Get-PackageCacheLocation } @@ -16,7 +16,7 @@ if ($env:ChocolateyForce -ne $true) { try { $InstalledVersion = Get-UninstallRegistryKey $packageArgs['softwareName'] | Select-Object -First 1 -Expand 'DisplayVersion' - if ([Version]::Parse($InstalledVersion) -ge [Version]::Parse('10.5.38.26728')) + if ([Version]::Parse($InstalledVersion) -ge [Version]::Parse('10.5.39.26720')) { Write-Host "Skipping installation because version $InstalledVersion is already installed." return @@ -34,10 +34,10 @@ $packageArgs['file'] = $zipFile $packageArgs['destination'] = GetInstallLocation $pp if ($pp.NoAutoUpdate) { - CreateRegistrySettings -installPath $packageArgs['destination'] -autoUpdate $false -version '10.5.38.26728' + CreateRegistrySettings -installPath $packageArgs['destination'] -autoUpdate $false -version '10.5.39.26720' } else { - CreateRegistrySettings -installPath $packageArgs['destination'] -autoUpdate $true -version '10.5.38.26728' + CreateRegistrySettings -installPath $packageArgs['destination'] -autoUpdate $true -version '10.5.39.26720' } Get-ChocolateyUnzip @packageArgs