Skip to content

Commit

Permalink
AU: 2 updated - thunderbird vim
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed May 5, 2021
1 parent 87d1ec3 commit ef674ed
Show file tree
Hide file tree
Showing 6 changed files with 143 additions and 143 deletions.
2 changes: 1 addition & 1 deletion automatic/thunderbird/thunderbird.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>thunderbird</id>
<version>78.10.0</version>
<version>78.10.1</version>
<title>Mozilla Thunderbird</title>
<owners>chocolatey-community</owners>
<authors>Mozilla</authors>
Expand Down
264 changes: 132 additions & 132 deletions automatic/thunderbird/tools/LanguageChecksums.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions automatic/thunderbird/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
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 '78.10.0')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '78.10.1')
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-78.10.0-SSL&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=thunderbird-78.10.1-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-78.10.0-SSL&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=thunderbird-78.10.1-SSL&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down
8 changes: 4 additions & 4 deletions automatic/vim/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ in verifying that this package's contents are trustworthy.
The embedded software have been downloaded from GitHub and can be verified like this:

1. Download the following zips:
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.2831/gvim_8.2.2831_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.2831/gvim_8.2.2831_x64.zip>
32-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.2832/gvim_8.2.2832_x86.zip>
64-Bit: <https://github.com/vim/vim-win32-installer/releases/download/v8.2.2832/gvim_8.2.2832_x64.zip>
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: 942D8DC5665F165EB6FA73394EE66BEA6502EF64D79B60AFD995776457445E3A
checksum64: F3D7531D834BCD274E8BB5FCFEDDE3512D76BFE4919D6409751509101EF80F7C
checksum32: 7D69815D981692D871B9157A471073F4262851D83F7382E991ABB1DCBF284A5A
checksum64: 6F5C6BC728226DCFE18586F79329EB1E0C2DA79F5B7FA147ADAB1FC49477DFA2
4 changes: 2 additions & 2 deletions automatic/vim/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ $installDir = Get-InstallDir
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $installDir
file = "$toolsDir\gvim_8.2.2831_x86.zip"
file64 = "$toolsDir\gvim_8.2.2831_x64.zip"
file = "$toolsDir\gvim_8.2.2832_x86.zip"
file64 = "$toolsDir\gvim_8.2.2832_x64.zip"
}

$installArgs = @{
Expand Down
2 changes: 1 addition & 1 deletion automatic/vim/vim.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>vim</id>
<title>Vim</title>
<version>8.2.2831</version>
<version>8.2.2832</version>
<authors>Bram Moolenaar, Vim Community</authors>
<owners>chocolatey-community, Rob Reynolds, matsuhav</owners>
<summary>Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. It's useful whether you're already using vi or using a different editor.</summary>
Expand Down

0 comments on commit ef674ed

Please sign in to comment.