Skip to content

Commit

Permalink
AU: 2 updated - calibre dropbox
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Aug 27, 2021
1 parent dc170e8 commit e6360e3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 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>5.25.0</version>
<version>5.26.0</version>
<authors>Kovid Goyal</authors>
<owners>chocolatey-community, gep13</owners>
<summary>calibre is the one stop solution to all your e-book needs.</summary>
Expand Down
4 changes: 2 additions & 2 deletions automatic/calibre/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ and can be verified by doing the following:

1. Download the following:
32-Bit software: NOT INCLUDED IN PACKAGE
64-Bit software: <https://download.calibre-ebook.com/5.25.0/calibre-64bit-5.25.0.msi>
64-Bit software: <https://download.calibre-ebook.com/5.26.0/calibre-64bit-5.26.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: NOT INCLUDED IN PACKAGE
checksum64: 63926DA460640DABD6B3DF4681BC1649D882F50BB8B2B4AD4C208B0043E9559B
checksum64: CECE1E5722AF59435642A7B072255081581138D8FF3622CA6D5588066E916898

The file 'LICENSE.txt' has been obtained from <https://github.com/kovidgoyal/calibre/blob/89c271759db5c71202251895f6793e4c1ec65ee6/LICENSE>
6 changes: 3 additions & 3 deletions automatic/calibre/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ $toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'MSI'
url = 'https://download.calibre-ebook.com/5.25.0/calibre-5.25.0.msi'
checksum = 'C329104106E12BBEC21B4187E37561038CA7C8BDF1F764A563E435CBF6233087'
url = 'https://download.calibre-ebook.com/5.26.0/calibre-5.26.0.msi'
checksum = '5C73022B22134D79153911EE040417B38E880409899434BB189DD52699ADA28D'
checksumType = 'sha256'
file64 = "$toolsPath\calibre-64bit-5.25.0.msi"
file64 = "$toolsPath\calibre-64bit-5.26.0.msi"
softwareName = 'calibre*'
silentArgs = '/quiet'
validExitCodes = @(0, 3010, 1641)
Expand Down
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "130.3.4948-beta",
"beta": "130.3.4951-beta",
"stable": "129.4.3571"
}
2 changes: 1 addition & 1 deletion automatic/dropbox/dropbox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>dropbox</id>
<version>130.3.4948-beta</version>
<version>130.3.4951-beta</version>
<title>Dropbox</title>
<authors>Dropbox</authors>
<owners>chocolatey-community,ferventcoder,the-running-dev</owners>
Expand Down
6 changes: 3 additions & 3 deletions automatic/dropbox/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (!$PSScriptRoot) {
}
. "$PSScriptRoot\helper.ps1"

$version = '130.3.4948'
$version = '130.3.4951'

if (!(IsVersionAlreadyInstalled $version)) {
$stop_dropbox = if (Get-Process -Name Dropbox -ErrorAction SilentlyContinue) { $false } else { $true }
Expand All @@ -13,8 +13,8 @@ if (!(IsVersionAlreadyInstalled $version)) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = "Dropbox"
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20130.3.4948%20Offline%20Installer.exe'
checksum = 'c9e4d697c816414bf913f11126c8028194ee06ebef098cf9b83c7afc7a92c25c'
url = 'https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20130.3.4951%20Offline%20Installer.exe'
checksum = '4e653f2b8b01c7c4311da35e21d99dbd5543215acfaa2e4ce2825255e78e4a8d'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/s'
Expand Down

0 comments on commit e6360e3

Please sign in to comment.