Skip to content

Commit

Permalink
AU: 2 updated - calibre chromium
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jul 14, 2017
1 parent e27cf14 commit 827f095
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion automatic/calibre/calibre.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>calibre</id>
<title>Calibre</title>
<version>3.3.0</version>
<version>3.4.0</version>
<authors>Kovid Goyal</authors>
<owners>chocolatey, gep13</owners>
<summary>calibre is the one stop solution to all your e-book needs.</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/calibre/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://download.calibre-ebook.com/3.html>
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://download.calibre-ebook.com/3.3.0/calibre-3.3.0.msi>
64-Bit software: <https://download.calibre-ebook.com/3.3.0/calibre-64bit-3.3.0.msi>
32-Bit software: <https://download.calibre-ebook.com/3.4.0/calibre-3.4.0.msi>
64-Bit software: <https://download.calibre-ebook.com/3.4.0/calibre-64bit-3.4.0.msi>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: D9BF64DF5330F65D0DD2DB40F3D987F33E6661D28E1231852DB4B6EB3477E2AA
checksum64: BE86008AD5A6C8A6CB85F1ED304EA31803EB970B4F1011E82A2B4168440D0102
checksum32: F5C63C7A81CA3DEFB2FB447BF1EF43DCCC10045B81EC4B4E4E4E9019E35FF8D5
checksum64: 1509248CC95BBC796ADF2E12EC5E6FA9CC1D08ABA9B5BFCD71A2553EA1FB0142

The file 'LICENSE.txt' has been obtained from <https://github.com/kovidgoyal/calibre/blob/89c271759db5c71202251895f6793e4c1ec65ee6/LICENSE>
4 changes: 2 additions & 2 deletions automatic/calibre/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ $toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'MSI'
file = "$toolsPath\calibre-3.3.0.msi"
file64 = "$toolsPath\calibre-64bit-3.3.0.msi"
file = "$toolsPath\calibre-3.4.0.msi"
file64 = "$toolsPath\calibre-64bit-3.4.0.msi"
softwareName = 'calibre*'
silentArgs = '/quiet'
validExitCodes = @(0, 3010, 1641)
Expand Down
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>chromium</id>
<version>61.0.3157.0</version>
<version>61.0.3158.0</version>
<title>Chromium snapshots build</title>
<owners>chocolatey</owners>
<authors>The Chromium Authors</authors>
Expand Down
10 changes: 5 additions & 5 deletions automatic/chromium/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$ErrorActionPreference = 'Stop'

$version = '61.0.3157.0'
$version = '61.0.3158.0'

$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$hive = "hkcu"
Expand All @@ -15,14 +15,14 @@ if (Test-Path $Chromium) {
$packageArgs = @{
packageName = 'chromium'
fileType = 'exe'
url = 'https://storage.googleapis.com/chromium-browser-snapshots/Win/486268/mini_installer.exe'
url64bit = 'https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/486263/mini_installer.exe'
url = 'https://storage.googleapis.com/chromium-browser-snapshots/Win/486668/mini_installer.exe'
url64bit = 'https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/486670/mini_installer.exe'
silentArgs = $silentArgs
validExitCodes= @(0)
softwareName = 'Chromium'
checksum = 'd3bd13eeb2cf58dcda049a908dcc52c7'
checksum = 'e941415925712cd4a43c1506073012c8'
checksumType = 'md5'
checksum64 = 'ed68990c09b085e8391c16f48bd7b1ae'
checksum64 = '5b108067c48a287a0e20a3fe8c4ab727'
checksumType64= 'md5'
}

Expand Down

0 comments on commit 827f095

Please sign in to comment.