Skip to content

Commit

Permalink
AU: 2 updated - brave thunderbird
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Sep 28, 2021
1 parent 1eb4db5 commit ae54845
Show file tree
Hide file tree
Showing 7 changed files with 141 additions and 141 deletions.
2 changes: 1 addition & 1 deletion automatic/brave/brave.json
@@ -1,4 +1,4 @@
{
"stable": "1.30.84",
"stable": "1.30.86",
"beta": "1.31.59-beta"
}
2 changes: 1 addition & 1 deletion automatic/brave/brave.nuspec
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>brave</id>
<version>1.30.84</version>
<version>1.30.86</version>
<title>Brave Browser</title>
<description><![CDATA[Brave is a free and open-source web browser developed by Brave Software Inc. based on the Chromium web browser. Brave supports Windows, macOS, Linux and Android.
Expand Down
8 changes: 4 additions & 4 deletions automatic/brave/legal/VERIFICATION.txt
Expand Up @@ -6,16 +6,16 @@ The installer have been downloaded from the GitHub mirror and can be verified li

1. Download the following installer(s):

x86: https://github.com/brave/brave-browser/releases/download/v1.30.84/BraveBrowserStandaloneSilentSetup32.exe
x86_64: https://github.com/brave/brave-browser/releases/download/v1.30.84/BraveBrowserStandaloneSilentSetup.exe
x86: https://github.com/brave/brave-browser/releases/download/v1.30.86/BraveBrowserStandaloneSilentSetup32.exe
x86_64: https://github.com/brave/brave-browser/releases/download/v1.30.86/BraveBrowserStandaloneSilentSetup.exe

2. You can use one of the following methods to obtain the checksum(s):
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: 9061A9F09B3A52881620BBBC553697ACA39154B6FDCE15BA80B74EE691EDDB93
checksum64: 801C26BF55EBE20FEFBD18FE62225C5B58079295FE107A4733A1AEF91C881453
checksum32: EF0FDC8DC8AE523F476EDCF6B94B769DE2985FBBF9845AF847945B77E90A109D
checksum64: 7238569B0DCB626C7804C4D2943B3A253EB38A6B1100B60AEA2E7865CB2A6C3D

The included 'LICENSE.txt' file have been obtained from:
https://github.com/brave/brave-browser/blob/master/LICENSE
2 changes: 1 addition & 1 deletion automatic/brave/tools/chocolateyInstall.ps1
Expand Up @@ -7,7 +7,7 @@ $packageArgs = @{
file64 = "$toolsPath\BraveBrowserStandaloneSilentSetup.exe"
}

[version]$softwareVersion = '1.30.84'
[version]$softwareVersion = '1.30.86'

Write-Host "Checking already installed version..."
$installedVersion = Get-InstalledVersion
Expand Down
2 changes: 1 addition & 1 deletion automatic/thunderbird/thunderbird.nuspec
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>thunderbird</id>
<version>91.1.1</version>
<version>91.1.2</version>
<title>Mozilla Thunderbird</title>
<owners>chocolatey-community</owners>
<authors>Mozilla</authors>
Expand Down
260 changes: 130 additions & 130 deletions automatic/thunderbird/tools/LanguageChecksums.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions automatic/thunderbird/tools/chocolateyInstall.ps1
Expand Up @@ -11,7 +11,7 @@ $softwareName = 'Mozilla Thunderbird'

if (Get-32bitOnlyInstalled -product $softwareName) { Write-Host 'Detected the 32-bit version of Thunderbird on a 64-bit system. This package will continue to install the 32-bit version of Thunderbird unless the 32-bit version is uninstalled.' }

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '91.1.1')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '91.1.2')
if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
Write-Host "Thunderbird is already installed. No need to download and re-install."
return
Expand All @@ -35,7 +35,7 @@ $packageArgs = @{

Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download.mozilla.org/?product=thunderbird-91.1.1-SSL&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=thunderbird-91.1.2-SSL&os=win&lang=${locale}"

silentArgs = '-ms'
validExitCodes = @(0)
Expand All @@ -44,7 +44,7 @@ $packageArgs = @{
if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-91.1.1-SSL&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-91.1.2-SSL&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down

0 comments on commit ae54845

Please sign in to comment.