diff --git a/automatic/origin/info b/automatic/origin/info index 7b6a54a1d..160cfa9b7 100644 --- a/automatic/origin/info +++ b/automatic/origin/info @@ -1 +1 @@ -"804a8e8282697087e7aa07c5a010001c-28"|10.5.42.27950 \ No newline at end of file +"69cd9ae04da251c2e3d980849ccecb1b-28"|10.5.43.28287 \ No newline at end of file diff --git a/automatic/origin/origin.nuspec b/automatic/origin/origin.nuspec index d3c5e48aa..766e5796a 100644 --- a/automatic/origin/origin.nuspec +++ b/automatic/origin/origin.nuspec @@ -3,7 +3,7 @@ origin - 10.5.42.27950 + 10.5.43.28287 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 97f1254a6..4900b39f4 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 = 'D566CAD4DFC836127A2C0F12D1F454B450F7E53A937CF9B7F3C8709EA2E283F6295C1B61FA375165DF28D1F5F07B719612AEAD71BE256CFBAF46F92239B4A7C3' + checksum = 'EFB6EC1557D4EF29BA99B5241478D18F3CD2E673C0797835EBEB56389E8BD44EA34AA4E2A66E6D6C35400E37D82AA41958717AC2A64410B2426CDEC40283FAE4' 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.42.27950')) + if ([Version]::Parse($InstalledVersion) -ge [Version]::Parse('10.5.43.28287')) { 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.42.27950' + CreateRegistrySettings -installPath $packageArgs['destination'] -autoUpdate $false -version '10.5.43.28287' } else { - CreateRegistrySettings -installPath $packageArgs['destination'] -autoUpdate $true -version '10.5.42.27950' + CreateRegistrySettings -installPath $packageArgs['destination'] -autoUpdate $true -version '10.5.43.28287' } Get-ChocolateyUnzip @packageArgs